DeskTop.js 660 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. ];
  1402. //stia
  1403. U.MD.D.I.stiaStudentDeskIcon = [
  1404. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1405. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1406. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgTeacherDeskIcon = [
  1411. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1412. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. ];
  1414. //szdjg
  1415. U.MD.D.I.szdjgStudentDeskIcon = [
  1416. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1420. ];
  1421. //010607
  1422. U.MD.D.I.x010607TeacherDeskIcon = [
  1423. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1424. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1426. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1427. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1428. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1429. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1432. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1433. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1434. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1435. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1436. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1437. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1438. ];
  1439. //010607
  1440. U.MD.D.I.x010607StudentDeskIcon = [
  1441. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1445. ];
  1446. //010608
  1447. U.MD.D.I.x010608TeacherDeskIcon = [
  1448. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1449. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1451. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1452. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1453. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1454. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1455. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1456. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1458. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1459. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1460. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1461. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.x010608StudentDeskIcon = [
  1465. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1466. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1469. ];
  1470. //xhly
  1471. U.MD.D.I.xhlyTeacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. ];
  1474. //010608
  1475. U.MD.D.I.xhlyStudentDeskIcon = [
  1476. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. ];
  1478. //北师大
  1479. U.MD.D.I.BSDNSteacherDeskIcon = [
  1480. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1481. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1482. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1483. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1484. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1487. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1490. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1491. ];
  1492. //北师大
  1493. U.MD.D.I.BSDNSstudentDeskIcon = [
  1494. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1498. ];
  1499. //CUHK_EDU
  1500. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1501. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1502. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1504. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1507. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1509. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1510. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1511. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1512. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1513. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1514. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1515. ];
  1516. //CUHK_EDU
  1517. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1518. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1519. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1520. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1522. ];
  1523. //010503
  1524. U.MD.D.I.x010503TeacherDeskIcon = [
  1525. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1526. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1527. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1528. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1529. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. ];
  1535. //010503
  1536. U.MD.D.I.x010503StudentDeskIcon = [
  1537. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //SPROUT Lab
  1543. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1547. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1548. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1549. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1550. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1553. ];
  1554. //SPROUT Lab
  1555. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1556. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. ];
  1560. //010204
  1561. U.MD.D.I.x010204TeacherDeskIcon = [
  1562. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1563. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. ];
  1565. //010204
  1566. U.MD.D.I.x010204StudentDeskIcon = [
  1567. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1568. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1569. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1571. ];
  1572. //trail
  1573. U.MD.D.I.trailTeacherDeskIcon = [
  1574. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1575. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. ];
  1577. //trail
  1578. U.MD.D.I.trailStudentDeskIcon = [
  1579. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010504
  1585. U.MD.D.I.x010504TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1589. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1590. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1595. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1596. ];
  1597. //010504
  1598. U.MD.D.I.x010504StudentDeskIcon = [
  1599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. ];
  1604. //SCNUET
  1605. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1611. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1612. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1614. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1615. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1617. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1618. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1619. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1620. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1621. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1623. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1624. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1625. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1626. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1629. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1630. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1631. ];
  1632. //SCNUET
  1633. U.MD.D.I.SCNUETAdminDeskIcon = [
  1634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1639. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1640. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1641. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1642. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1643. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1644. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1646. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1647. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1648. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1652. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1653. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1654. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1655. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1656. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1657. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1658. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1659. ];
  1660. //SCNUET
  1661. U.MD.D.I.SCNUETStudentDeskIcon = [
  1662. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1663. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1666. ];
  1667. //x020201
  1668. U.MD.D.I.x020201TeacherDeskIcon = [
  1669. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1670. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1673. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1676. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1677. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1678. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1679. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1680. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1681. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1682. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1683. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1684. ];
  1685. //x020201
  1686. U.MD.D.I.x020201AdminDeskIcon = [
  1687. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1688. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1693. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1694. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1695. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1698. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1699. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1700. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1701. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1702. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1703. ];
  1704. //020201
  1705. U.MD.D.I.x020201StudentDeskIcon = [
  1706. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. ];
  1711. //010611
  1712. U.MD.D.I.x010611TeacherDeskIcon = [
  1713. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1714. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1715. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1716. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1717. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1720. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1721. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1722. ];
  1723. //010611
  1724. U.MD.D.I.x010611StudentDeskIcon = [
  1725. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1726. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1727. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1729. ];
  1730. //tianyuan
  1731. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1732. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1733. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1736. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1741. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1742. ];
  1743. //010611
  1744. U.MD.D.I.tianyuanStudentDeskIcon = [
  1745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1747. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1749. ];
  1750. //#region 桌面初始化a
  1751. /**
  1752. * 初始化桌面的起始函数
  1753. *
  1754. */
  1755. U.MD.D.I.init = function () {
  1756. if ($("#U_MD_D_K")[0]) {
  1757. //初始化桌面图标
  1758. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1759. // var clickUrl = ':12588/requestIp.php';
  1760. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1761. // U.MD.D.I.Ip = data;
  1762. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1763. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1764. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1765. // })
  1766. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1767. // })
  1768. }
  1769. }
  1770. /**
  1771. * 模式切换
  1772. *
  1773. */
  1774. U.MD.D.I.ModeCheck = function (type) {
  1775. if (US.Config.type == type) {
  1776. return
  1777. }
  1778. US.Config.type = type
  1779. $('.U_PBL_Check .active')[0].className = ''
  1780. if (type == 1) {
  1781. $('.U_PBL_Check div')[0].className = 'active'
  1782. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1783. } else {
  1784. $('.U_PBL_Check div')[1].className = 'active'
  1785. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1786. }
  1787. //初始化桌面图标
  1788. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1789. if (type == 2) {
  1790. U.MD.D.I.openApplication("project")
  1791. }
  1792. }
  1793. /**
  1794. * 隐藏任务栏
  1795. *
  1796. * @param {element} 桌面元素
  1797. */
  1798. U.MD.D.I.hiddenTaskbar = function (el) {
  1799. //任务栏位置变小
  1800. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1801. //桌面的位置变大
  1802. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1803. }
  1804. /**
  1805. * 隐藏任务栏
  1806. *
  1807. * @param {element} 桌面元素
  1808. */
  1809. U.MD.D.I.hiddenTaskbarout = function (el) {
  1810. //任务栏位置变小
  1811. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1812. //任务栏位置变化
  1813. U.selectEl(el).css({ "bottom": "-60px" });
  1814. //桌面的位置变大
  1815. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1816. }
  1817. }
  1818. /**
  1819. * 初始化打印桌面图标
  1820. *
  1821. * @param {element} 桌面元素
  1822. */
  1823. U.MD.D.I.initDesktopIcons = function (el, type) {
  1824. var i, //用于循环
  1825. _content, //桌面图标元素
  1826. _iconcontent, //桌面图标元素
  1827. _frag = $$("frag"), //定义一个碎片元素
  1828. _type = US.userInfo.type,
  1829. _org = US.userInfo.org,
  1830. _oid = US.userInfo.organizeid,
  1831. _role = US.userInfo.role,
  1832. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1833. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1834. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1835. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1836. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1837. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1838. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1839. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1840. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1841. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1842. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1843. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1844. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1845. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1846. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1847. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1848. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1849. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1850. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1851. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1852. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1853. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1854. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1855. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1856. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1857. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1858. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1859. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1860. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1861. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1862. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1863. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1864. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1865. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1866. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1867. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1868. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1869. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1870. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1871. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1872. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1873. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1874. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1875. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1876. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1877. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1878. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1879. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1880. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1881. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1882. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1883. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1884. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1885. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1886. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1887. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1888. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1889. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1890. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1891. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1892. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1893. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1894. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1895. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1896. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1897. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1898. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1899. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1900. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1901. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1902. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1903. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1904. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1905. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1906. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1907. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1908. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1909. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1910. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1911. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1912. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1913. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1914. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1915. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1916. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1917. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1918. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1919. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1920. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1921. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1922. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1923. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1924. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1925. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1926. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1927. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1928. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1929. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1930. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1931. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1932. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1933. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1934. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1935. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1936. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1937. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1938. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1939. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1940. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1941. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1942. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1943. 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'];
  1944. 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'];
  1945. //清楚桌面图标
  1946. el.innerHTML = "";
  1947. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1948. _teacherDesktopIconInfo.push(
  1949. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1950. { "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)" } },
  1951. )
  1952. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1953. }
  1954. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1955. _teacherDesktopIconInfo.push(
  1956. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1957. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1958. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1959. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1960. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1961. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1962. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1963. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1964. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1966. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1968. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1969. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1970. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1971. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1972. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1973. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1974. )
  1975. }
  1976. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1977. _teacherDesktopIconInfo.push(
  1978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1979. )
  1980. }
  1981. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1982. // _teacherDesktopIconInfo.push(
  1983. // )
  1984. // }
  1985. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1986. _teacherDesktopIconInfo.push(
  1987. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1989. )
  1990. }
  1991. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1992. _teacherDesktopIconInfo.push(
  1993. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1994. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1995. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1997. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1998. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1999. )
  2000. _studentDesktopIconInfo.push(
  2001. )
  2002. }
  2003. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2004. _teacherDesktopIconInfo.push(
  2005. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2006. )
  2007. _studentDesktopIconInfo.push(
  2008. )
  2009. }
  2010. //010606 组织
  2011. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2012. _teacherDesktopIconInfo.push(
  2013. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2014. )
  2015. _studentDesktopIconInfo.push(
  2016. )
  2017. }
  2018. //麒麟二中 和 民新小学
  2019. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2020. _teacherDesktopIconInfo.push(
  2021. )
  2022. }
  2023. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2024. _teacherDesktopIconInfo.push(
  2025. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2026. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2027. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2028. )
  2029. }
  2030. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2031. _hkTeacherDeskIconInfo.push(
  2032. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2033. )
  2034. }
  2035. //北师大附中(010601)
  2036. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2037. // _teacherDesktopIconInfo.push(
  2038. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. // )
  2040. // _studentDesktopIconInfo.push(
  2041. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. // )
  2043. // }
  2044. //樂善堂余近卿中學
  2045. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. )
  2049. }
  2050. // Education Artificial Intelligence
  2051. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2054. )
  2055. }
  2056. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2057. _teacherDesktopIconInfo.push(
  2058. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2059. )
  2060. }
  2061. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2062. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2063. _teacherDesktopIconInfo.push(
  2064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2066. )
  2067. }
  2068. //麒麟二中
  2069. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2070. _studentDesktopIconInfo.push(
  2071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2073. )
  2074. }
  2075. //万科双语
  2076. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2077. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2078. if (el.Name == '项目管理') {
  2079. el.Name = 'PBL项目'
  2080. }
  2081. return el
  2082. })
  2083. _studentDesktopIconInfo3.push(
  2084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2085. )
  2086. }
  2087. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2088. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2089. return el.Name != '魔盒识字' && el.Name != '24点'
  2090. })
  2091. }
  2092. 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) {
  2093. _studentDesktopIconInfo.push(
  2094. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2095. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2096. )
  2097. }
  2098. //循环创建桌面图标
  2099. if (type == 1) {
  2100. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2101. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2102. _content = $$("div", {
  2103. className: "U_MD_D_KO",
  2104. "onmousedown": U.UF.C.closure(function (obj) {
  2105. //防止拖动图标即打开了桌面应用
  2106. U.MD.D.click(this, obj);
  2107. }, [_studentDesktopIconInfo[i]]),
  2108. "onclick": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_studentDesktopIconInfo[i]])
  2112. }, _frag); //
  2113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2116. }
  2117. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2118. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2119. _content = $$("div", {
  2120. className: "U_MD_D_KO",
  2121. "onmousedown": U.UF.C.closure(function (obj) {
  2122. //防止拖动图标即打开了桌面应用
  2123. U.MD.D.click(this, obj);
  2124. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2125. "onclick": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_hkZJLSStudentDeskIconInfo[i]])
  2129. }, _frag); //
  2130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2133. } //
  2134. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2135. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2136. _content = $$("div", {
  2137. className: "U_MD_D_KO",
  2138. "onmousedown": U.UF.C.closure(function (obj) {
  2139. //防止拖动图标即打开了桌面应用
  2140. U.MD.D.click(this, obj);
  2141. }, [_ytyStudentDeskIconInfo[i]]),
  2142. "onclick": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_ytyStudentDeskIconInfo[i]])
  2146. }, _frag); //
  2147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2150. } //
  2151. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2152. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2153. _content = $$("div", {
  2154. className: "U_MD_D_KO",
  2155. "onmousedown": U.UF.C.closure(function (obj) {
  2156. //防止拖动图标即打开了桌面应用
  2157. U.MD.D.click(this, obj);
  2158. }, [_jccssylStudentDeskIconInfo[i]]),
  2159. "onclick": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_jccssylStudentDeskIconInfo[i]])
  2163. }, _frag); //
  2164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2167. }
  2168. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2169. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2170. _content = $$("div", {
  2171. className: "U_MD_D_KO",
  2172. "onmousedown": U.UF.C.closure(function (obj) {
  2173. //防止拖动图标即打开了桌面应用
  2174. U.MD.D.click(this, obj);
  2175. }, [_scnuaiStudentDeskIconInfo[i]]),
  2176. "onclick": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_scnuaiStudentDeskIconInfo[i]])
  2180. }, _frag); //
  2181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2184. }
  2185. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2186. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2187. _content = $$("div", {
  2188. className: "U_MD_D_KO",
  2189. "onmousedown": U.UF.C.closure(function (obj) {
  2190. //防止拖动图标即打开了桌面应用
  2191. U.MD.D.click(this, obj);
  2192. }, [_caleStudentDeskIconInfo[i]]),
  2193. "onclick": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_caleStudentDeskIconInfo[i]])
  2197. }, _frag); //
  2198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2201. }
  2202. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2203. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2204. _content = $$("div", {
  2205. className: "U_MD_D_KO",
  2206. "onmousedown": U.UF.C.closure(function (obj) {
  2207. //防止拖动图标即打开了桌面应用
  2208. U.MD.D.click(this, obj);
  2209. }, [_thuioeStudentDeskIconInfo[i]]),
  2210. "onclick": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_thuioeStudentDeskIconInfo[i]])
  2214. }, _frag); //
  2215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2218. }
  2219. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2220. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2221. _content = $$("div", {
  2222. className: "U_MD_D_KO",
  2223. "onmousedown": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_tpcStudentDeskIconInfo[i]]),
  2227. "onclick": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_tpcStudentDeskIconInfo[i]])
  2231. }, _frag); //
  2232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2235. } //
  2236. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2237. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2238. _content = $$("div", {
  2239. className: "U_MD_D_KO",
  2240. "onmousedown": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_chjyjStudentDeskIconInfo[i]]),
  2244. "onclick": U.UF.C.closure(function (obj) {
  2245. //防止拖动图标即打开了桌面应用
  2246. U.MD.D.click(this, obj);
  2247. }, [_chjyjStudentDeskIconInfo[i]])
  2248. }, _frag); //
  2249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2252. }
  2253. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2254. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2255. _content = $$("div", {
  2256. className: "U_MD_D_KO",
  2257. "onmousedown": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_szjkyStudentDeskIconInfo[i]]),
  2261. "onclick": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_szjkyStudentDeskIconInfo[i]])
  2265. }, _frag); //
  2266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2269. }
  2270. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2271. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2272. _content = $$("div", {
  2273. className: "U_MD_D_KO",
  2274. "onmousedown": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_x020201StudentDeskIconInfo[i]]),
  2278. "onclick": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_x020201StudentDeskIconInfo[i]])
  2282. }, _frag); //
  2283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2286. }
  2287. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2288. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2289. _content = $$("div", {
  2290. className: "U_MD_D_KO",
  2291. "onmousedown": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_SCNUETStudentDeskIconInfo[i]]),
  2295. "onclick": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_SCNUETStudentDeskIconInfo[i]])
  2299. }, _frag); //
  2300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2303. }
  2304. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2305. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2306. _content = $$("div", {
  2307. className: "U_MD_D_KO",
  2308. "onmousedown": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_dseiStudentDeskIconInfo[i]]),
  2312. "onclick": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_dseiStudentDeskIconInfo[i]])
  2316. }, _frag); //
  2317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2320. }
  2321. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2322. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2323. _content = $$("div", {
  2324. className: "U_MD_D_KO",
  2325. "onmousedown": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2329. "onclick": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2333. }, _frag); //
  2334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2337. }
  2338. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2339. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_nsfxStudentDeskIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_nsfxStudentDeskIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2356. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_stiaStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_stiaStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. }
  2372. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2373. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_szdjgStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_szdjgStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. }
  2389. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2390. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_x010607StudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_x010607StudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2407. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_xhlyStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_xhlyStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2424. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2441. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_x010503StudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_x010503StudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2458. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_x010504StudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_x010504StudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2473. }
  2474. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2475. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_x010204StudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_x010204StudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2492. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_trailStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_trailStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2509. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2526. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_x010608StudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_x010608StudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2543. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_x010611StudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_x010611StudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2560. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_tianyuantudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_tianyuantudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2577. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_siesStudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_siesStudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2594. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_guzmsStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_guzmsStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2611. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_hkStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_hkStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2628. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_hkaceStudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_hkaceStudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2645. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_BSDNSstudentDesktopIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2662. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_cocobizStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_cocobizStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2679. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_xxzjkyStudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2696. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_studentDesktopIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_studentDesktopIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2713. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_tcStudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_tcStudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2730. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_szscStudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_szscStudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2747. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_studentDesktopIconInfo3[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_studentDesktopIconInfo3[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2764. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_studentDesktopIconInfo2[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_studentDesktopIconInfo2[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2779. }
  2780. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2781. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2782. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2783. continue
  2784. }
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_wanketeacherDesktopIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_wanketeacherDesktopIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2801. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_wankeAdminDesktopIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_wankeAdminDesktopIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2818. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2819. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2820. continue
  2821. }
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_scnuaiTeacherDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2838. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2839. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2840. continue
  2841. }
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_BSDNSteacherDesktopIconInfo[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2856. }
  2857. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2858. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2859. _content = $$("div", {
  2860. className: "U_MD_D_KO",
  2861. "onmousedown": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_scnuaiAdminDeskIconInfo[i]]),
  2865. "onclick": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_scnuaiAdminDeskIconInfo[i]])
  2869. }, _frag); //
  2870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2873. }
  2874. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2875. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2876. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2877. continue
  2878. }
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_jccssylTeacherDeskIconInfo[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_jccssylTeacherDeskIconInfo[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2893. }
  2894. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2895. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2896. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2897. continue
  2898. }
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_caleTeacherDeskIconInfo[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_caleTeacherDeskIconInfo[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2913. }
  2914. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2915. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_tpcOrganizerDeskIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_tpcOrganizerDeskIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2932. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2933. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2934. continue
  2935. }
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_tpcTeacherDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_tpcTeacherDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2952. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2953. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2954. continue
  2955. }
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_teacherDesktopIconInfo2[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_teacherDesktopIconInfo2[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2970. }
  2971. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2972. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2973. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2974. continue
  2975. }
  2976. _content = $$("div", {
  2977. className: "U_MD_D_KO",
  2978. "onmousedown": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_thuioeTeacherDeskIconInfo[i]]),
  2982. "onclick": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_thuioeTeacherDeskIconInfo[i]])
  2986. }, _frag); //
  2987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2990. }
  2991. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2992. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2993. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2994. continue
  2995. }
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_lotechTeacherDeskIconInfo[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_lotechTeacherDeskIconInfo[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3010. }//
  3011. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3012. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3013. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3032. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3033. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3034. continue
  3035. }
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_siesTeacherDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_siesTeacherDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3052. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3053. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3054. continue
  3055. }
  3056. _content = $$("div", {
  3057. className: "U_MD_D_KO",
  3058. "onmousedown": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_guzmsTeacherDeskIconInfo[i]]),
  3062. "onclick": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_guzmsTeacherDeskIconInfo[i]])
  3066. }, _frag); //
  3067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3070. }
  3071. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3072. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3073. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3074. continue
  3075. }
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_longhuaTeacherDeskIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_longhuaTeacherDeskIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3090. }
  3091. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3092. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_ytyTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_ytyTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3112. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3113. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3114. continue
  3115. }
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_yunhaiTeacherDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3130. } //_hkStudentDeskIconInfo
  3131. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3132. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3133. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3134. continue
  3135. }
  3136. _content = $$("div", {
  3137. className: "U_MD_D_KO",
  3138. "onmousedown": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3142. "onclick": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3146. }, _frag); //
  3147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3150. }
  3151. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3152. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3153. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3154. continue
  3155. }
  3156. _content = $$("div", {
  3157. className: "U_MD_D_KO",
  3158. "onmousedown": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_hkTeacherDeskIconInfo[i]]),
  3162. "onclick": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_hkTeacherDeskIconInfo[i]])
  3166. }, _frag); //
  3167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3170. }
  3171. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3172. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3173. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3174. continue
  3175. }
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_hkaceTeacherDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_hkaceTeacherDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3192. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3193. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3194. continue
  3195. }
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_cocobizTeacherDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_cocobizTeacherDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3210. }
  3211. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3212. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3213. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3214. continue
  3215. }
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3232. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3233. _content = $$("div", {
  3234. className: "U_MD_D_KO",
  3235. "onmousedown": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_gdjgAdminDeskIconInfo[i]]),
  3239. "onclick": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_gdjgAdminDeskIconInfo[i]])
  3243. }, _frag); //
  3244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3247. }
  3248. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3249. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3250. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3251. continue
  3252. }
  3253. _content = $$("div", {
  3254. className: "U_MD_D_KO",
  3255. "onmousedown": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_gdjgTeacherDeskIconInfo[i]]),
  3259. "onclick": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_gdjgTeacherDeskIconInfo[i]])
  3263. }, _frag); //
  3264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3267. }
  3268. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3269. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3270. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3271. continue
  3272. }
  3273. _content = $$("div", {
  3274. className: "U_MD_D_KO",
  3275. "onmousedown": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_szherTeacherDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_szherTeacherDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3289. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3290. _content = $$("div", {
  3291. className: "U_MD_D_KO",
  3292. "onmousedown": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_heyuannAdminDeskIconInfo[i]]),
  3296. "onclick": U.UF.C.closure(function (obj) {
  3297. //防止拖动图标即打开了桌面应用
  3298. U.MD.D.click(this, obj);
  3299. }, [_heyuannAdminDeskIconInfo[i]])
  3300. }, _frag); //
  3301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3304. }
  3305. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3306. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3307. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3308. continue
  3309. }
  3310. _content = $$("div", {
  3311. className: "U_MD_D_KO",
  3312. "onmousedown": U.UF.C.closure(function (obj) {
  3313. //防止拖动图标即打开了桌面应用
  3314. U.MD.D.click(this, obj);
  3315. }, [_heyuanTeacherDeskIconInfo[i]]),
  3316. "onclick": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_heyuanTeacherDeskIconInfo[i]])
  3320. }, _frag); //
  3321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3324. } //
  3325. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3326. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_dseiAdminDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_dseiAdminDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3343. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_dseiTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_dseiTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. } //
  3362. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3363. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_chjyjAdminDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_chjyjAdminDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3378. }//
  3379. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3380. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3381. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3382. continue
  3383. }
  3384. _content = $$("div", {
  3385. className: "U_MD_D_KO",
  3386. "onmousedown": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_chjyjTeacherDeskIconInfo[i]]),
  3390. "onclick": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_chjyjTeacherDeskIconInfo[i]])
  3394. }, _frag); //
  3395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3398. }
  3399. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3400. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3401. _content = $$("div", {
  3402. className: "U_MD_D_KO",
  3403. "onmousedown": U.UF.C.closure(function (obj) {
  3404. //防止拖动图标即打开了桌面应用
  3405. U.MD.D.click(this, obj);
  3406. }, [_szjkyAdminDeskIconInfo[i]]),
  3407. "onclick": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_szjkyAdminDeskIconInfo[i]])
  3411. }, _frag); //
  3412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3415. }//
  3416. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3417. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3418. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3419. continue
  3420. }
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_szjkyTeacherDeskIconInfo[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_szjkyTeacherDeskIconInfo[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3437. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3438. _content = $$("div", {
  3439. className: "U_MD_D_KO",
  3440. "onmousedown": U.UF.C.closure(function (obj) {
  3441. //防止拖动图标即打开了桌面应用
  3442. U.MD.D.click(this, obj);
  3443. }, [_x020201AdminDeskIconInfo[i]]),
  3444. "onclick": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_x020201AdminDeskIconInfo[i]])
  3448. }, _frag); //
  3449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3452. }//
  3453. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3454. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3455. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3456. continue
  3457. }
  3458. _content = $$("div", {
  3459. className: "U_MD_D_KO",
  3460. "onmousedown": U.UF.C.closure(function (obj) {
  3461. //防止拖动图标即打开了桌面应用
  3462. U.MD.D.click(this, obj);
  3463. }, [_x020201TeacherDeskIconInfo[i]]),
  3464. "onclick": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_x020201TeacherDeskIconInfo[i]])
  3468. }, _frag); //
  3469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3472. }
  3473. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3474. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3475. _content = $$("div", {
  3476. className: "U_MD_D_KO",
  3477. "onmousedown": U.UF.C.closure(function (obj) {
  3478. //防止拖动图标即打开了桌面应用
  3479. U.MD.D.click(this, obj);
  3480. }, [_SCNUETAdminDeskIconInfo[i]]),
  3481. "onclick": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_SCNUETAdminDeskIconInfo[i]])
  3485. }, _frag); //
  3486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3489. }//
  3490. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3491. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3492. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3493. continue
  3494. }
  3495. _content = $$("div", {
  3496. className: "U_MD_D_KO",
  3497. "onmousedown": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3501. "onclick": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_SCNUETTeacherDeskIconInfo[i]])
  3505. }, _frag); //
  3506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3509. }
  3510. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3511. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_futianAdminDeskIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_futianAdminDeskIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3528. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3529. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_futianTeacherDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_futianTeacherDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3548. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3549. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_MingdeTeacherDeskIcon[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_MingdeTeacherDeskIcon[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3568. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_lhsAdminDesktopIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_lhsAdminDesktopIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3583. }
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3585. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3586. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_lhsteacherDesktopIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_lhsteacherDesktopIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3605. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3606. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_zhoujiateacherDesktopIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3625. for (i = 0; i < _hanDeskIcon.length; i++) {
  3626. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_hanDeskIcon[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_hanDeskIcon[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3645. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3646. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_orgStemDeskIcon[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_orgStemDeskIcon[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3665. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3666. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_szulsDeskIcon[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szulsDeskIcon[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3685. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3686. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_orgDesktopIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_orgDesktopIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3705. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3706. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_schoolDesktopIconInfo[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_schoolDesktopIconInfo[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3725. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3726. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_GMteacherDesktopIconInfo[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_GMteacherDesktopIconInfo[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3745. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3746. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_SONGteacherDesktopIconInfo[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_SONGteacherDesktopIconInfo[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3763. }
  3764. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3765. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3766. _content = $$("div", {
  3767. className: "U_MD_D_KO",
  3768. "onmousedown": U.UF.C.closure(function (obj) {
  3769. //防止拖动图标即打开了桌面应用
  3770. U.MD.D.click(this, obj);
  3771. }, [_GMstudentDesktopIconInfo[i]]),
  3772. "onclick": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_GMstudentDesktopIconInfo[i]])
  3776. }, _frag); //
  3777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3780. }
  3781. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3782. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3783. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3784. continue
  3785. }
  3786. _content = $$("div", {
  3787. className: "U_MD_D_KO",
  3788. "onmousedown": U.UF.C.closure(function (obj) {
  3789. //防止拖动图标即打开了桌面应用
  3790. U.MD.D.click(this, obj);
  3791. }, [_tcTeacherDeskIconInfo[i]]),
  3792. "onclick": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_tcTeacherDeskIconInfo[i]])
  3796. }, _frag); //
  3797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3800. }
  3801. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3802. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3803. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3804. continue
  3805. }
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_tcOrganizerDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_tcOrganizerDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3822. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3823. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_szscTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_szscTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3842. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3843. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3844. continue
  3845. }
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_szscOrganizerDeskIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_szscOrganizerDeskIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3862. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3863. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3864. continue
  3865. }
  3866. _content = $$("div", {
  3867. className: "U_MD_D_KO",
  3868. "onmousedown": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_nsfxTeacherDeskIconInfo[i]]),
  3872. "onclick": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_nsfxTeacherDeskIconInfo[i]])
  3876. }, _frag); //
  3877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3880. }
  3881. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3882. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3883. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3884. continue
  3885. }
  3886. _content = $$("div", {
  3887. className: "U_MD_D_KO",
  3888. "onmousedown": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_stiaTeacherDeskIconInfo[i]]),
  3892. "onclick": U.UF.C.closure(function (obj) {
  3893. //防止拖动图标即打开了桌面应用
  3894. U.MD.D.click(this, obj);
  3895. }, [_stiaTeacherDeskIconInfo[i]])
  3896. }, _frag); //
  3897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3900. }
  3901. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3902. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3903. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3904. continue
  3905. }
  3906. _content = $$("div", {
  3907. className: "U_MD_D_KO",
  3908. "onmousedown": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szdjgTeacherDeskIconInfo[i]]),
  3912. "onclick": U.UF.C.closure(function (obj) {
  3913. //防止拖动图标即打开了桌面应用
  3914. U.MD.D.click(this, obj);
  3915. }, [_szdjgTeacherDeskIconInfo[i]])
  3916. }, _frag); //
  3917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3920. }
  3921. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3922. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3923. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3924. continue
  3925. }
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. "onmousedown": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_x010607TeacherDeskIconInfo[i]]),
  3932. "onclick": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_x010607TeacherDeskIconInfo[i]])
  3936. }, _frag); //
  3937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3940. }
  3941. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3942. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3943. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3944. continue
  3945. }
  3946. _content = $$("div", {
  3947. className: "U_MD_D_KO",
  3948. "onmousedown": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_xhlyTeacherDeskIconInfo[i]]),
  3952. "onclick": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_xhlyTeacherDeskIconInfo[i]])
  3956. }, _frag); //
  3957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3960. }
  3961. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3962. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3963. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3964. continue
  3965. }
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3982. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3983. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_x010503TeacherDeskIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_x010503TeacherDeskIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4002. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4003. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_x010504TeacherDeskIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_x010504TeacherDeskIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4022. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4023. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_x010204TeacherDeskIconInfo[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_x010204TeacherDeskIconInfo[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4042. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4043. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_trailTeacherDeskIconInfo[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_trailTeacherDeskIconInfo[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4062. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4063. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4082. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4083. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_x010608TeacherDeskIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_x010608TeacherDeskIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4102. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4103. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_x010611TeacherDeskIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_x010611TeacherDeskIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4122. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4123. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_tianyuanTeacherDeskIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else {
  4142. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4143. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_teacherDesktopIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_teacherDesktopIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. }
  4162. } else {
  4163. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4164. _content = $$("div", {
  4165. className: "U_MD_D_KO",
  4166. style: { 'width': '124px', 'height': '145px' },
  4167. "onmousedown": U.UF.C.closure(function (obj) {
  4168. //防止拖动图标即打开了桌面应用
  4169. U.MD.D.click(this, obj);
  4170. }, [_easyDesktopIconInfo[i]]),
  4171. "onclick": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_easyDesktopIconInfo[i]])
  4175. }, _frag); //
  4176. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4179. }
  4180. }
  4181. if (type == 1) {
  4182. //加载好后给图标定位
  4183. U.MD.D.iconPostion($(_frag).Child());
  4184. } else {
  4185. //加载好后给图标定位
  4186. U.MD.D.iconPostion2($(_frag).Child());
  4187. }
  4188. //把图标加载到页面
  4189. el.appendChild(_frag);
  4190. }
  4191. /**
  4192. * 显示任务栏
  4193. *
  4194. * @param {element} 桌面元素
  4195. */
  4196. U.MD.D.I.displayTaskbar = function (el) {
  4197. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4198. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4199. //任务栏位置变化
  4200. U.selectEl(el).css({ "bottom": "0px" });
  4201. //桌面位置变话
  4202. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4203. }
  4204. }
  4205. //#region 桌面图标拖动逻辑
  4206. /**
  4207. * 桌面排列图标
  4208. *
  4209. * @param {element} 桌面元素
  4210. * @param {object} 上下相距的距离
  4211. * @param {object} 左右相距的距离
  4212. * @return {object} 命名空间
  4213. */
  4214. U.MD.D.iconPostion = function (childs, top, left) {
  4215. var i; //用于循环处理
  4216. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4217. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4218. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4219. for (i = 0; i < childs.length; i++) {
  4220. //如果竖排top超过了范围处理
  4221. if (top + 95 > US.height - 10) {
  4222. //left超过了页面范围处理,则向上重叠打印处理
  4223. if ((left + 180) > US.width) {
  4224. top -= 110;
  4225. left -= 90;
  4226. }
  4227. //没有超过范围,那么left+90添加到下一个竖排打印
  4228. else {
  4229. left += 90;
  4230. top = 15;
  4231. };
  4232. }
  4233. //给图标的位置赋值
  4234. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4235. if (i < childs.length - 1) {
  4236. //页面图标每次向下加95
  4237. top += 95;
  4238. }
  4239. }
  4240. //返回最后调用的图标的位置
  4241. return [top, left];
  4242. }
  4243. /**
  4244. * 桌面排列图标
  4245. *
  4246. * @param {element} 桌面元素
  4247. * @param {object} 上下相距的距离
  4248. * @param {object} 左右相距的距离
  4249. * @return {object} 命名空间
  4250. */
  4251. U.MD.D.iconPostion2 = function (childs, top, left) {
  4252. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4253. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4254. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4255. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4256. for (i = 0; i < childs.length; i++) {
  4257. //如果竖排top超过了范围处理
  4258. if (left + 150 > US.width - 10) {
  4259. //left超过了页面范围处理,则向上重叠打印处理
  4260. if ((top + 180) > US.Height) {
  4261. top -= 150;
  4262. left -= 150;
  4263. }
  4264. //没有超过范围,那么left+90添加到下一个竖排打印
  4265. else {
  4266. top += 150;
  4267. left = ol;
  4268. };
  4269. }
  4270. //给图标的位置赋值
  4271. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4272. if (i < childs.length - 1) {
  4273. //页面图标每次向下加95
  4274. left += 150;
  4275. }
  4276. }
  4277. //返回最后调用的图标的位置
  4278. return [top, left];
  4279. }
  4280. /**
  4281. * 桌面点击事件逻辑
  4282. *
  4283. * @param {element} 桌面元素
  4284. * @param {object} 上下相距的距离
  4285. * @param {object} 左右相距的距离
  4286. * @return {object} 命名空间
  4287. */
  4288. U.MD.D.click = function (el, obj) {
  4289. var _buttonnumber = event.button; //点击的按钮的事件值
  4290. var _userinfo = US.userInfo;
  4291. U.UF.EV.stopBubble(); //阻止向上冒泡
  4292. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4293. if (_buttonnumber < 2) {
  4294. //如果是click事件的处理
  4295. if (event.type == "click") {
  4296. //如果元素在mousemove事件中没有移动则出发click事件
  4297. if (!U.MD.D.I.IsDrag) {
  4298. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4299. U.alert("请先登录您的账号!");
  4300. setTimeout(() => {
  4301. U.MD.U.L.login();
  4302. }, 2000);
  4303. } else {
  4304. //打开应用处理
  4305. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4306. }
  4307. }
  4308. }
  4309. //如果是mouse事件的处理
  4310. else {
  4311. if (US.Config.type == '1') {
  4312. //拖动处理,添加拖动和拖动结束事件
  4313. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4314. }
  4315. }
  4316. U.MD.D.I.IsDrag = false;
  4317. }
  4318. }
  4319. /**
  4320. * 拖动的处理
  4321. *
  4322. */
  4323. U.MD.D.iconMove = function () {
  4324. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4325. U.MD.D.I.IsDrag = true;
  4326. }
  4327. /**
  4328. * 拖动结束后,这里是定位处理,以网状的形式定位
  4329. *
  4330. * @param {element} 拖动的元素
  4331. * @return {object} 命名空间
  4332. */
  4333. U.MD.D.iconUp = function (el) {
  4334. var _top = 15,
  4335. _left = 20,
  4336. _margin,
  4337. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4338. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4339. if (_positioninfo["OT"] > 15) {
  4340. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4341. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4342. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4343. }
  4344. if (_positioninfo["OL"] > 20) {
  4345. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4346. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4347. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4348. }
  4349. //while循环判断么一个重叠的元素
  4350. do {
  4351. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4352. _top = _positioninfo[0] + 95; //得到定位后的top
  4353. _left = _positioninfo[1]; //得到定位后的left
  4354. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4355. }
  4356. /**
  4357. * 判断拖动后图标是否重叠
  4358. *
  4359. * @param {element} 拖动的元素
  4360. * @param {element} 桌面所有的元素
  4361. * @param {array} 拖动元素的位置
  4362. ----------[0] 上 top
  4363. ----------[1] 左 left
  4364. * @return {object} 命名空间
  4365. */
  4366. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4367. //循环所有的图标
  4368. for (var i = 0; i < childs.length; i++) {
  4369. //判断有没有和该图标诶子重叠的元素
  4370. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4371. return childs[i]; //如果有返回
  4372. }
  4373. }
  4374. }
  4375. //#endregion
  4376. //#endregion
  4377. //#region 桌面应用
  4378. /**
  4379. * 打开应用
  4380. *
  4381. * @param {string} 类型
  4382. -----------------Disk 网盘系统
  4383. -----------------PDisk 学习系统网盘
  4384. -----------------Poto 图片
  4385. -----------------Video 视频
  4386. -----------------Music 音乐
  4387. -----------------Word word
  4388. -----------------Excel excel
  4389. -----------------Txt 记事本
  4390. -----------------PB 学习系统
  4391. -----------------Blog 朋友圈系统
  4392. -----------------FTP ftp系统
  4393. -----------------Group 好友群
  4394. -----------------SY 首页系统
  4395. -----------------Set 个人设置
  4396. -----------------XSet 系统设置
  4397. -----------------App 我们所有的app
  4398. -----------------BC c.1473.cn 平台
  4399. -----------------CWeb d.1473.cn 变成平台
  4400. -----------------其他的外联系统 我们统一用iframe打开
  4401. * @param {array} 类型
  4402. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4403. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4404. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4405. 如果第一个参数为其他,则无第二个参数
  4406. * @returns {array}
  4407. */
  4408. window.addEventListener('message', function (e) { // 监听 message 事件
  4409. // alert(e.data.type);
  4410. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4411. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部阶段 2学生 1老师 4专家
  4413. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4415. //3是展示全部阶段 2学生 1老师 4专家
  4416. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4418. //3是展示全部阶段 2学生 1老师 4专家
  4419. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4421. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4422. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4423. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4425. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4427. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4428. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4431. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4433. //3是展示全部阶段 2学生 1老师 4专家
  4434. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4435. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4436. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4437. U.MD.D.I.selectUser();
  4438. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4439. var _formel = document.getElementById("study");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4442. var _formel = document.getElementById("studyDetail");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4445. var _formel = document.getElementById("studyDetail");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4448. var _formel = document.getElementById("studentStudy");
  4449. U.UF.F.windowZooming(_formel);
  4450. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4451. // var _formel = document.getElementById("study");
  4452. //如果最大化了,那么就把他缩小
  4453. // if (_formel.ismaximize) {
  4454. // return;
  4455. // }
  4456. // U.UF.F.windowZooming(_formel);
  4457. // U.UF.F.topWindow(_formel);
  4458. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4459. // var _formel = document.getElementById("studyDetail");
  4460. //如果最大化了,那么就把他缩小
  4461. // if (_formel.ismaximize) {
  4462. // return;
  4463. // }
  4464. // U.UF.F.windowZooming(_formel);
  4465. // U.UF.F.topWindow(_formel);
  4466. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4467. // var _formel = document.getElementById("studentStudy");
  4468. // if (_formel.ismaximize) {
  4469. // return;
  4470. // }
  4471. // U.UF.F.windowZooming(_formel);
  4472. // U.UF.F.topWindow(_formel);
  4473. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4474. var _formel = document.getElementById("study");
  4475. // if (_formel.ismaximize) {
  4476. // return;
  4477. // }
  4478. // U.UF.F.windowZooming(_formel);
  4479. U.UF.F.topWindow(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4481. var _formel = document.getElementById("studentIndex");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4484. var _formel = document.getElementById("studyDetailS");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4487. var _formel = document.getElementById("studioIndex");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4490. var _formel = document.getElementById("studyDetailStudio");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4493. var _formel = document.getElementById("studyDetailStudio");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4496. var _formel = document.getElementById("studyDetailNT");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4499. var _formel = document.getElementById("studyDetailS");
  4500. U.UF.F.windowZooming(_formel);
  4501. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4502. var _formel = document.getElementById("studyDetailS");
  4503. U.UF.F.topWindow(_formel);
  4504. } else if (e.data.tools && e.data.tools == "1") {
  4505. // U.MD.D.I.openApplication("whiteboard")
  4506. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "2") {
  4508. U.MD.D.I.openApplication("note")
  4509. } else if (e.data.tools && e.data.tools == "3") {
  4510. // U.MD.D.I.openApplication("mind")
  4511. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "4") {
  4513. U.MD.D.I.openApplication("investigation")
  4514. } else if (e.data.tools && e.data.tools == "6") {
  4515. // U.MD.D.I.openApplication("doc")
  4516. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "7") {
  4518. // U.MD.D.I.openApplication("mindNetwork")
  4519. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4520. } else if (e.data.tools && e.data.tools == "8") {
  4521. U.MD.D.I.openApplication("library")
  4522. } else if (e.data.tools && e.data.tools == "17") {
  4523. U.MD.D.I.openApplication("stuLibrary")
  4524. } else if (e.data.tools && e.data.tools == "18") {
  4525. U.MD.D.I.openApplication("train")
  4526. } else if (e.data.tools && e.data.tools == "21") {
  4527. U.MD.D.I.openApplication("program")
  4528. } else if (e.data.tools && e.data.tools == "22") {
  4529. U.MD.D.I.openApplication("AIprogram2")
  4530. } else if (e.data.tools && e.data.tools == "23") {
  4531. U.MD.D.I.openApplication("Pythonprogram")
  4532. } else if (e.data.tools && e.data.tools == "24") {
  4533. U.MD.D.I.openApplication("AIprogram")
  4534. } else if (e.data.tools && e.data.tools == "25") {
  4535. U.MD.D.I.openApplication("sys")
  4536. } else if (e.data.tools && e.data.tools == "26") {
  4537. // U.MD.D.I.openApplication("courseDesign")
  4538. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4539. } else if (e.data.tools && e.data.tools == "31") {
  4540. U.MD.D.I.openApplication("netWorkPanel")
  4541. } else if (e.data.tools && e.data.tools == "32") {
  4542. U.MD.D.I.openApplication("codeEdit")
  4543. } else if (e.data.tools && e.data.tools == "57") {
  4544. U.MD.D.I.openApplication("CocoPi")
  4545. } else if (e.data.tools && e.data.tools == "63") {
  4546. U.MD.D.I.openApplication("Wood")
  4547. } else if (e.data.tools && e.data.tools == "58") {
  4548. U.MD.D.I.openApplication("car")
  4549. } else if (e.data.tools && e.data.tools == "59") {
  4550. U.MD.D.I.openApplication("lineSearch")
  4551. } else if (e.data.tools && e.data.tools == "60") {
  4552. U.MD.D.I.openApplication("deepLearning")
  4553. } else if (e.data.tools && e.data.tools == "61") {
  4554. U.MD.D.I.openApplication("allHistory")
  4555. } else if (e.data.tools && e.data.tools == "28") {
  4556. U.MD.D.I.openApplication("translation")
  4557. } else if (e.data.tools && e.data.tools == "37") {
  4558. U.MD.D.I.openApplication("mohe")
  4559. } else if (e.data.tools && e.data.tools == "38") {
  4560. U.MD.D.I.openApplication("24game")
  4561. } else if (e.data.tools && e.data.tools == "39") {
  4562. U.MD.D.I.openApplication("GeoGebra")
  4563. } else if (e.data.tools && e.data.tools == "43") {
  4564. U.MD.D.I.openApplication("studentEvaluate")
  4565. } else if (e.data.tools && e.data.tools == "44") {
  4566. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4567. } else if (e.data.tools && e.data.tools == "46") {
  4568. U.MD.D.I.openApplication("project")
  4569. } else if (e.data.tools && e.data.tools == "71") {
  4570. U.MD.D.I.openApplication("aigptCourse")
  4571. } else if (e.data.tools && e.data.tools == "1s") {
  4572. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "3s") {
  4574. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "6s") {
  4576. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "1studio") {
  4578. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "3studio") {
  4580. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "6studio") {
  4582. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "3y") {
  4584. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "1y") {
  4586. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4588. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4589. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4590. U.MD.D.I.openApplication("AIAnalyse")
  4591. } else if (e.data.tools && e.data.tools == "1teacher") {
  4592. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4593. } else if (e.data.tools && e.data.tools == "3teacher") {
  4594. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4595. } else if (e.data.tools && e.data.tools == "7teacher") {
  4596. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4597. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4598. U.MD.D.I.openApplicationJieTeacherE("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 == "3teacherE") {
  4600. U.MD.D.I.openApplicationJieTeacherE("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 == "1E") {
  4602. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4603. } else if (e.data.tools && e.data.tools == "3E") {
  4604. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4605. } else if (e.data.tools && e.data.tools == "57y") {
  4606. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4607. } else if (e.data.tools && e.data.tools == "57u") {
  4608. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "57teacher") {
  4610. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4611. } else if (e.data.tools && e.data.tools == "64") {
  4612. U.MD.D.I.openApplication("AIChat")
  4613. } else if (e.data.tools && e.data.tools == "66") {
  4614. U.MD.D.I.openApplication("formulaEdi")
  4615. } else if (e.data.tools && e.data.tools == "67") {
  4616. U.MD.D.I.openApplication("molStr")
  4617. } else if (e.data.tools && e.data.tools == "68") {
  4618. U.MD.D.I.openApplication("timeAxis")
  4619. } else if (e.data.tools && e.data.tools == "openCourse") {
  4620. let _data = {
  4621. typea: e.data.typea || '',
  4622. typeb: e.data.typeb || '',
  4623. typed: e.data.typed || '',
  4624. }
  4625. U.MD.D.I.openInApplication("index", _data)
  4626. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4627. let _data = {
  4628. classid: e.data.classid || '',
  4629. }
  4630. U.MD.D.I.openInApplication("dataClass", _data)
  4631. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4632. let _data = {
  4633. cid: e.data.cid || '',
  4634. gid: e.data.gid || '',
  4635. }
  4636. U.MD.D.I.openInApplication("opencCscl", _data)
  4637. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4638. U.MD.D.I.openApplication("dataBoardTest")
  4639. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4640. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4641. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4642. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4643. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4644. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4645. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4646. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4647. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4648. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4650. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "loginSz") {
  4652. U.MD.D.I.openInApplication("loginSz")
  4653. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4654. if($('#classroom_observation_board')[0]){
  4655. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4656. }
  4657. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4658. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4659. if($('#classroom_observation_ob_comment')[0]){
  4660. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4661. }
  4662. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4663. }else if (e.data.tools && e.data.tools == "logout"){
  4664. U.MD.U.LO.logoutSystem()
  4665. }else if (e.data.tools && e.data.tools == "getLogin"){
  4666. let _iframe = $('#UI_Login')[0];
  4667. if (_iframe) {
  4668. var userInfo = US.userInfo;
  4669. var type = 2
  4670. if(userInfo && userInfo.userid){
  4671. type = 1
  4672. }
  4673. _contentWindow = _iframe.contentWindow;
  4674. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4675. }
  4676. }
  4677. });
  4678. U.MD.D.I.selectUser = function () {
  4679. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4680. if (res.value[0].length > 0) {
  4681. US.userInfo = res.value[0][0];
  4682. $(".userName")[0].innerHTML = US.userInfo.username;
  4683. }
  4684. }, [], { "type": "GET", "withCredentials": true });
  4685. }
  4686. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4687. var _userinfo = US.userInfo, //登录用户信息
  4688. _userid = US.userInfo.userid, //登录用户id
  4689. _oid = _userinfo.organizeid,
  4690. _type = US.userInfo.type,
  4691. _org = US.userInfo.org,
  4692. _role = US.userInfo.role,
  4693. _classId = US.userInfo.classid;
  4694. if (_type == 4) {
  4695. tType = 4
  4696. }
  4697. switch (str) {
  4698. case "studyDetailNT": //无终端模式
  4699. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4700. setTimeout(() => {
  4701. U.MD.U.L.login();
  4702. }, 2000);
  4703. } else {
  4704. _formdiv = new U.UF.UI.form(
  4705. "课程详情",
  4706. $$("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 }), {
  4707. "id": "studyDetailNT",
  4708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4709. "onresize": function () { }
  4710. }, {
  4711. closecallback: function () { }
  4712. }, { "style": { "height": "36px" } }).form; //创建窗体
  4713. _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); } }
  4714. break;
  4715. }
  4716. case "studyDetail":
  4717. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4718. setTimeout(() => {
  4719. U.MD.U.L.login();
  4720. }, 2000);
  4721. } else {
  4722. _formdiv = new U.UF.UI.form(
  4723. "课程详情",
  4724. $$("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 }), {
  4725. "id": "studyDetail",
  4726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4727. "onresize": function () { }
  4728. }, {
  4729. closecallback: function () { }
  4730. }, { "style": { "height": "36px" } }).form; //创建窗体
  4731. _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); } }
  4732. break;
  4733. }
  4734. case "studyDetailTrain":
  4735. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4736. setTimeout(() => {
  4737. U.MD.U.L.login();
  4738. }, 2000);
  4739. } else {
  4740. _formdiv = new U.UF.UI.form(
  4741. "培训详情",
  4742. $$("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 }), {
  4743. "id": "studyDetailTrain",
  4744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4745. "onresize": function () { }
  4746. }, {
  4747. closecallback: function () { }
  4748. }, { "style": { "height": "36px" } }).form; //创建窗体
  4749. _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); } }
  4750. break;
  4751. }
  4752. case "studyDetailS":
  4753. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4754. setTimeout(() => {
  4755. U.MD.U.L.login();
  4756. }, 2000);
  4757. } else {
  4758. _formdiv = new U.UF.UI.form(
  4759. "项目详情",
  4760. $$("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 }), {
  4761. "id": "studyDetailS",
  4762. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. _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); } }
  4768. break;
  4769. }
  4770. case "studyDetailStudio":
  4771. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4772. setTimeout(() => {
  4773. U.MD.U.L.login();
  4774. }, 2000);
  4775. } else {
  4776. _formdiv = new U.UF.UI.form(
  4777. "工作详情",
  4778. $$("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 }), {
  4779. "id": "studyDetailStudio",
  4780. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4781. "onresize": function () { }
  4782. }, {
  4783. closecallback: function () { }
  4784. }, { "style": { "height": "36px" } }).form; //创建窗体
  4785. _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); } }
  4786. break;
  4787. }
  4788. case "studyDetailS5":
  4789. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4790. setTimeout(() => {
  4791. U.MD.U.L.login();
  4792. }, 2000);
  4793. } else {
  4794. _formdiv = new U.UF.UI.form(
  4795. "项目详情",
  4796. $$("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 }), {
  4797. "id": "studyDetailS",
  4798. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _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); } }
  4804. break;
  4805. }
  4806. case "studyDetailGM":
  4807. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4808. setTimeout(() => {
  4809. U.MD.U.L.login();
  4810. }, 2000);
  4811. } else {
  4812. _formdiv = new U.UF.UI.form(
  4813. "课程详情",
  4814. $$("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 }), {
  4815. "id": "studyDetail",
  4816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4817. "onresize": function () { }
  4818. }, {
  4819. closecallback: function () { }
  4820. }, { "style": { "height": "36px" } }).form; //创建窗体
  4821. _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); } }
  4822. break;
  4823. }
  4824. case "hanUrl":
  4825. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4826. setTimeout(() => {
  4827. U.MD.U.L.login();
  4828. }, 2000);
  4829. } else {
  4830. _formdiv = new U.UF.UI.form(
  4831. "汉字宫",
  4832. $$("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" }), {
  4833. "id": "hanUrl",
  4834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _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); } }
  4840. break;
  4841. }
  4842. case "index":
  4843. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4844. setTimeout(() => {
  4845. U.MD.U.L.login();
  4846. }, 2000);
  4847. } else {
  4848. _formdiv = new U.UF.UI.form(
  4849. "课程中心",
  4850. $$("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 }), {
  4851. "id": "study",
  4852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _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); } }
  4858. break;
  4859. }
  4860. case "dataClass":
  4861. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4862. setTimeout(() => {
  4863. U.MD.U.L.login();
  4864. }, 2000);
  4865. } else {
  4866. _formdiv = new U.UF.UI.form(
  4867. "数据报告",
  4868. $$("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 }), {
  4869. "id": "dataClass",
  4870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _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); } }
  4876. break;
  4877. }
  4878. case "opencCscl":
  4879. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4880. setTimeout(() => {
  4881. U.MD.U.L.login();
  4882. }, 2000);
  4883. } else {
  4884. _formdiv = new U.UF.UI.form(
  4885. "协同建构",
  4886. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4887. "id": "futureClass",
  4888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _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); } }
  4894. break;
  4895. }
  4896. case "openCourseUpdate":
  4897. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4898. setTimeout(() => {
  4899. U.MD.U.L.login();
  4900. }, 2000);
  4901. } else {
  4902. _formdiv = new U.UF.UI.form(
  4903. "课程管理",
  4904. $$("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 }), {
  4905. "id": "openCourseUpdate",
  4906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. break;
  4912. }
  4913. case "openNewCourseUpdate":
  4914. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4915. setTimeout(() => {
  4916. U.MD.U.L.login();
  4917. }, 2000);
  4918. } else {
  4919. _formdiv = new U.UF.UI.form(
  4920. "课程管理",
  4921. $$("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 }), {
  4922. "id": "openCourseUpdate",
  4923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4924. "onresize": function () { }
  4925. }, {
  4926. closecallback: function () { }
  4927. }, { "style": { "height": "36px" } }).form; //创建窗体
  4928. break;
  4929. }
  4930. case "openCourseEUpdate":
  4931. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4932. setTimeout(() => {
  4933. U.MD.U.L.login();
  4934. }, 2000);
  4935. } else {
  4936. _formdiv = new U.UF.UI.form(
  4937. "课程管理",
  4938. $$("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 }), {
  4939. "id": "openCourseUpdate",
  4940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4941. "onresize": function () { }
  4942. }, {
  4943. closecallback: function () { }
  4944. }, { "style": { "height": "36px" } }).form; //创建窗体
  4945. break;
  4946. }
  4947. case "openCourseAiUpdate":
  4948. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4949. setTimeout(() => {
  4950. U.MD.U.L.login();
  4951. }, 2000);
  4952. } else {
  4953. _formdiv = new U.UF.UI.form(
  4954. "课程管理",
  4955. $$("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 }), {
  4956. "id": "openCourseUpdate",
  4957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4958. "onresize": function () { }
  4959. }, {
  4960. closecallback: function () { }
  4961. }, { "style": { "height": "36px" } }).form; //创建窗体
  4962. break;
  4963. }
  4964. case "openCourseAiUpdate2":
  4965. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4966. setTimeout(() => {
  4967. U.MD.U.L.login();
  4968. }, 2000);
  4969. } else {
  4970. _formdiv = new U.UF.UI.form(
  4971. "课程管理",
  4972. $$("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 }), {
  4973. "id": "openCourseUpdate",
  4974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4975. "onresize": function () { }
  4976. }, {
  4977. closecallback: function () { }
  4978. }, { "style": { "height": "36px" } }).form; //创建窗体
  4979. break;
  4980. }
  4981. case "openCourseNewUpdate":
  4982. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4983. setTimeout(() => {
  4984. U.MD.U.L.login();
  4985. }, 2000);
  4986. } else {
  4987. _formdiv = new U.UF.UI.form(
  4988. "课程管理",
  4989. $$("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 }), {
  4990. "id": "openCourseUpdate",
  4991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. break;
  4997. }
  4998. case "inviteLoginSz":
  4999. _formdiv = new U.UF.UI.form(
  5000. "随机码登录",
  5001. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5002. "id": "loginSz",
  5003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. break;
  5009. case "loginSz":
  5010. _formdiv = new U.UF.UI.form(
  5011. "教师登录",
  5012. $$("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" }), {
  5013. "id": "loginSz",
  5014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. break;
  5020. case "teacher":
  5021. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5022. setTimeout(() => {
  5023. U.MD.U.L.login();
  5024. }, 2000);
  5025. } else {
  5026. _formdiv = new U.UF.UI.form(
  5027. "教师管理",
  5028. $$("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 }), {
  5029. "id": "teacher",
  5030. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5031. "onresize": function () { }
  5032. }, {
  5033. closecallback: function () { }
  5034. }, { "style": { "height": "36px" } }).form; //创建窗体
  5035. break;
  5036. }
  5037. case "dataBoardSZArea":
  5038. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5039. setTimeout(() => {
  5040. U.MD.U.L.login();
  5041. }, 2000);
  5042. } else {
  5043. _formdiv = new U.UF.UI.form(
  5044. "综合数据看板",
  5045. $$("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 }), {
  5046. "id": "dataBoardSZArea",
  5047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. break;
  5053. }
  5054. case "dataBoardSZCity":
  5055. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5056. setTimeout(() => {
  5057. U.MD.U.L.login();
  5058. }, 2000);
  5059. } else {
  5060. _formdiv = new U.UF.UI.form(
  5061. "综合数据看板",
  5062. $$("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 }), {
  5063. "id": "dataBoardSZCity",
  5064. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. break;
  5070. }
  5071. case "classroom_observation_board":
  5072. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5073. setTimeout(() => {
  5074. U.MD.U.L.login();
  5075. }, 2000);
  5076. } else {
  5077. _formdiv = new U.UF.UI.form(
  5078. "课堂观察",
  5079. $$("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 }), {
  5080. "id": "classroom_observation_board",
  5081. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5082. "onresize": function () { }
  5083. }, {
  5084. closecallback: function () { }
  5085. }, { "style": { "height": "36px" } }).form; //创建窗体
  5086. break;
  5087. }
  5088. case "classroom_observation_ob_comment":
  5089. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5090. setTimeout(() => {
  5091. U.MD.U.L.login();
  5092. }, 2000);
  5093. } else {
  5094. _formdiv = new U.UF.UI.form(
  5095. "课堂审核",
  5096. $$("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 }), {
  5097. "id": "classroom_observation_ob_comment",
  5098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5099. "onresize": function () { }
  5100. }, {
  5101. closecallback: function () { }
  5102. }, { "style": { "height": "36px" } }).form; //创建窗体
  5103. break;
  5104. }
  5105. }
  5106. }
  5107. U.MD.D.I.openApplication = function (str, obj, info) {
  5108. obj = obj || {};
  5109. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5110. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5111. _userinfo = US.userInfo, //登录用户信息
  5112. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5113. _oid = obj.organizeid || _userinfo.organizeid,
  5114. _type = US.userInfo.type,
  5115. _org = US.userInfo.org,
  5116. _role = US.userInfo.role,
  5117. _classId = US.userInfo.classid,
  5118. _TscreenType = 1
  5119. _screenType = 2,
  5120. _SscreenType = 3;
  5121. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5122. return;
  5123. }
  5124. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5125. switch (str) {
  5126. case "studnetProject": //好友打开
  5127. _formdiv = new U.UF.UI.form(
  5128. "我的项目",
  5129. $$("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 }), {
  5130. "id": "studnetProject",
  5131. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _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); } }
  5137. break;
  5138. case "studentEvaluate": //好友打开
  5139. _formdiv = new U.UF.UI.form(
  5140. "我的评价",
  5141. $$("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 }), {
  5142. "id": "studentEvaluate",
  5143. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _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); } }
  5149. break;
  5150. case "my":
  5151. _formdiv = new U.UF.UI.form(
  5152. "我的资料",
  5153. $$("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 }), {
  5154. "id": "my",
  5155. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. break;
  5162. case "program":
  5163. _formdiv = new U.UF.UI.form(
  5164. "编程平台",
  5165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5166. "id": "program",
  5167. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _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); } }
  5173. break;
  5174. case "library":
  5175. _formdiv = new U.UF.UI.form(
  5176. "素材库",
  5177. $$("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 }), {
  5178. "id": "library",
  5179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _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); } }
  5185. break;
  5186. case "whiteboard":
  5187. _formdiv = new U.UF.UI.form(
  5188. "电子白板",
  5189. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5190. "id": "whiteboard",
  5191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _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); } }
  5197. break;
  5198. case "investigation":
  5199. _formdiv = new U.UF.UI.form(
  5200. "问卷调查",
  5201. $$("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 }), {
  5202. "id": "investigation",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. _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); } }
  5209. break;
  5210. case "note":
  5211. _formdiv = new U.UF.UI.form(
  5212. "便签分类",
  5213. $$("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 }), {
  5214. "id": "note",
  5215. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _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); } }
  5221. break;
  5222. // case "score":
  5223. // _formdiv = new U.UF.UI.form(
  5224. // "量规评分",
  5225. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5226. // "id": "score",
  5227. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5228. // "onresize": function() {}
  5229. // }, {
  5230. // closecallback: function() {}
  5231. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. // _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); } }
  5233. // break;
  5234. case "mind":
  5235. _formdiv = new U.UF.UI.form(
  5236. "思维导图",
  5237. $$("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"
  5238. "id": "mind",
  5239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "doc":
  5247. // U.MD.D.I.isRoom();
  5248. _formdiv = new U.UF.UI.form(
  5249. "协同文档",
  5250. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5251. "id": "doc",
  5252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5258. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5259. // })
  5260. _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); } }
  5261. break;
  5262. case "studentStudy":
  5263. _formdiv = new U.UF.UI.form(
  5264. "课程中心",
  5265. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5266. "id": "studentStudy",
  5267. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5273. break;
  5274. case "train": //好友打开
  5275. _formdiv = new U.UF.UI.form(
  5276. "训练平台",
  5277. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5278. "id": "train",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "mindNetwork": //好友打开
  5287. _formdiv = new U.UF.UI.form(
  5288. "思维网格",
  5289. $$("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 }), {
  5290. "id": "mindNetwork",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "studentClassRoom": //好友打开
  5299. _formdiv = new U.UF.UI.form(
  5300. "实时课堂",
  5301. $$("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 }), {
  5302. "id": "studentClassRoom",
  5303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5309. setTimeout(() => {
  5310. U.UF.F.windowZooming(_formdiv)
  5311. }, 0);
  5312. break;
  5313. }
  5314. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5315. switch (str) {
  5316. case "studnetProject": //好友打开
  5317. _formdiv = new U.UF.UI.form(
  5318. "我的项目",
  5319. $$("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 }), {
  5320. "id": "studnetProject",
  5321. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5327. break;
  5328. case "studentEvaluate": //好友打开
  5329. _formdiv = new U.UF.UI.form(
  5330. "我的评价",
  5331. $$("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 }), {
  5332. "id": "studentEvaluate",
  5333. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. _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); } }
  5339. break;
  5340. case "my":
  5341. _formdiv = new U.UF.UI.form(
  5342. "我的资料",
  5343. $$("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 }), {
  5344. "id": "my",
  5345. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _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); } }
  5351. break;
  5352. case "program":
  5353. _formdiv = new U.UF.UI.form(
  5354. "编程平台",
  5355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5356. "id": "program",
  5357. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5363. break;
  5364. case "library":
  5365. _formdiv = new U.UF.UI.form(
  5366. "素材库",
  5367. $$("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 }), {
  5368. "id": "library",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. _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); } }
  5375. break;
  5376. case "whiteboard":
  5377. _formdiv = new U.UF.UI.form(
  5378. "电子白板",
  5379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5380. "id": "whiteboard",
  5381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //创建窗体
  5386. _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); } }
  5387. break;
  5388. case "investigation":
  5389. _formdiv = new U.UF.UI.form(
  5390. "问卷调查",
  5391. $$("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 }), {
  5392. "id": "investigation",
  5393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5399. break;
  5400. case "note":
  5401. _formdiv = new U.UF.UI.form(
  5402. "便签分类",
  5403. $$("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 }), {
  5404. "id": "note",
  5405. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. break;
  5412. // case "score":
  5413. // _formdiv = new U.UF.UI.form(
  5414. // "量规评分",
  5415. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5416. // "id": "score",
  5417. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. // "onresize": function() {}
  5419. // }, {
  5420. // closecallback: function() {}
  5421. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. // _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); } }
  5423. // break;
  5424. case "mind":
  5425. _formdiv = new U.UF.UI.form(
  5426. "思维导图",
  5427. $$("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"
  5428. "id": "mind",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "doc":
  5437. // U.MD.D.I.isRoom();
  5438. _formdiv = new U.UF.UI.form(
  5439. "协同文档",
  5440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5441. "id": "doc",
  5442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5448. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5449. })
  5450. _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); } }
  5451. break;
  5452. case "train": //好友打开
  5453. _formdiv = new U.UF.UI.form(
  5454. "训练平台",
  5455. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5456. "id": "train",
  5457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. _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); } }
  5463. break;
  5464. case "studentStudy":
  5465. _formdiv = new U.UF.UI.form(
  5466. "课程中心",
  5467. $$("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
  5468. "id": "studentStudy",
  5469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. _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); } }
  5475. break;
  5476. case "mindNetwork": //好友打开
  5477. _formdiv = new U.UF.UI.form(
  5478. "思维网格",
  5479. $$("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 }), {
  5480. "id": "mindNetwork",
  5481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. _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); } }
  5487. break;
  5488. case "studentClassRoom": //好友打开
  5489. _formdiv = new U.UF.UI.form(
  5490. "实时课堂",
  5491. $$("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 }), {
  5492. "id": "studentClassRoom",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. _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); } }
  5499. setTimeout(() => {
  5500. U.UF.F.windowZooming(_formdiv)
  5501. }, 0);
  5502. break;
  5503. }
  5504. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5505. //选择应用处理
  5506. switch (str) {
  5507. case "project": //好友打开
  5508. _formdiv = new U.UF.UI.form(
  5509. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5510. $$("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 }), {
  5511. "id": "project",
  5512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5513. "onresize": function () { }
  5514. }, {
  5515. closecallback: function () { }
  5516. }, { "style": { "height": "36px" } }).form; //创建窗体
  5517. _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); } }
  5518. break;
  5519. case "student":
  5520. _formdiv = new U.UF.UI.form(
  5521. "学生管理",
  5522. $$("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 }), {
  5523. "id": "student",
  5524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _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); } }
  5530. break;
  5531. case "evaluate":
  5532. _formdiv = new U.UF.UI.form(
  5533. "学生评价",
  5534. $$("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 }), {
  5535. "id": "evaluate",
  5536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5537. "onresize": function () { }
  5538. }, {
  5539. closecallback: function () { }
  5540. }, { "style": { "height": "36px" } }).form; //创建窗体
  5541. _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); } }
  5542. break;
  5543. case "sys":
  5544. _formdiv = new U.UF.UI.form(
  5545. "目标管理",
  5546. $$("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 }), {
  5547. "id": "sys",
  5548. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //创建窗体
  5553. _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); } }
  5554. break;
  5555. case "courseDesign":
  5556. _formdiv = new U.UF.UI.form(
  5557. "项目设计",
  5558. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5559. "id": "courseDesign",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. case "program":
  5568. _formdiv = new U.UF.UI.form(
  5569. "编程平台",
  5570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5571. "id": "program",
  5572. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5573. "onresize": function () { }
  5574. }, {
  5575. closecallback: function () { }
  5576. }, { "style": { "height": "36px" } }).form; //创建窗体
  5577. _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); } }
  5578. break;
  5579. case "class":
  5580. _formdiv = new U.UF.UI.form(
  5581. "班级管理",
  5582. $$("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 }), {
  5583. "id": "class",
  5584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5585. "onresize": function () { }
  5586. }, {
  5587. closecallback: function () { }
  5588. }, { "style": { "height": "36px" } }).form; //创建窗体
  5589. _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); } }
  5590. break;
  5591. case "Grade":
  5592. _formdiv = new U.UF.UI.form(
  5593. "年级管理",
  5594. $$("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 }), {
  5595. "id": "Grade",
  5596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. break;
  5603. case "teacherOffice":
  5604. _formdiv = new U.UF.UI.form(
  5605. "教研室",
  5606. $$("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 }), {
  5607. "id": "teacherOffice",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. _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); } }
  5614. break;
  5615. case "my":
  5616. _formdiv = new U.UF.UI.form(
  5617. "我的资料",
  5618. $$("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 }), {
  5619. "id": "my",
  5620. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5621. "onresize": function () { }
  5622. }, {
  5623. closecallback: function () { }
  5624. }, { "style": { "height": "36px" } }).form; //创建窗体
  5625. _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); } }
  5626. break;
  5627. case "notice":
  5628. _formdiv = new U.UF.UI.form(
  5629. "通知公告",
  5630. $$("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 }), {
  5631. "id": "notice",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _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); } }
  5638. break;
  5639. case "library":
  5640. _formdiv = new U.UF.UI.form(
  5641. "素材库",
  5642. $$("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 }), {
  5643. "id": "library",
  5644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _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); } }
  5650. break;
  5651. case "whiteboard":
  5652. _formdiv = new U.UF.UI.form(
  5653. "电子白板",
  5654. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5655. "id": "whiteboard",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _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); } }
  5662. break;
  5663. case "investigation":
  5664. _formdiv = new U.UF.UI.form(
  5665. "问卷调查",
  5666. $$("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 }), {
  5667. "id": "investigation",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _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); } }
  5674. break;
  5675. case "note":
  5676. _formdiv = new U.UF.UI.form(
  5677. "便签分类",
  5678. $$("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 }), {
  5679. "id": "note",
  5680. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. // case "score":
  5688. // _formdiv = new U.UF.UI.form(
  5689. // "量规评分",
  5690. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5691. // "id": "score",
  5692. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5693. // "onresize": function() {}
  5694. // }, {
  5695. // closecallback: function() {}
  5696. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. // _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); } }
  5698. // break;
  5699. case "mind":
  5700. _formdiv = new U.UF.UI.form(
  5701. "思维导图",
  5702. $$("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"
  5703. "id": "mind",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _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); } }
  5710. break;
  5711. case "doc":
  5712. // U.MD.D.I.isRoom();
  5713. _formdiv = new U.UF.UI.form(
  5714. "协同文档",
  5715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5716. "id": "doc",
  5717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5723. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5724. })
  5725. _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); } }
  5726. break;
  5727. case "study":
  5728. _formdiv = new U.UF.UI.form(
  5729. "课程中心",
  5730. $$("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
  5731. "id": "study",
  5732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _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); } }
  5738. break;
  5739. case "mindNetwork": //好友打开
  5740. _formdiv = new U.UF.UI.form(
  5741. "思维网格",
  5742. $$("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 }), {
  5743. "id": "mindNetwork",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _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); } }
  5750. break;
  5751. case "train": //好友打开
  5752. _formdiv = new U.UF.UI.form(
  5753. "训练平台",
  5754. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5755. "id": "mindNetwork",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _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); } }
  5762. break;
  5763. case "teacherClassRoom": //好友打开
  5764. _formdiv = new U.UF.UI.form(
  5765. "实时课堂",
  5766. $$("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 }), {
  5767. "id": "teacherClassRoom",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5774. setTimeout(() => {
  5775. U.UF.F.windowZooming(_formdiv)
  5776. }, 0);
  5777. break;
  5778. }
  5779. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5780. switch (str) {
  5781. case "project": //好友打开
  5782. _formdiv = new U.UF.UI.form(
  5783. "课程管理",
  5784. $$("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 }), {
  5785. "id": "project",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. case "evaluate":
  5794. _formdiv = new U.UF.UI.form(
  5795. "学生评价",
  5796. $$("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 }), {
  5797. "id": "evaluate",
  5798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5799. "onresize": function () { }
  5800. }, {
  5801. closecallback: function () { }
  5802. }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. _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); } }
  5804. break;
  5805. case "notice":
  5806. _formdiv = new U.UF.UI.form(
  5807. "通知公告",
  5808. $$("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 }), {
  5809. "id": "notice",
  5810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "stuLibrary":
  5818. _formdiv = new U.UF.UI.form(
  5819. "学习资料",
  5820. $$("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 }), {
  5821. "id": "stuLibrary",
  5822. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. case "program":
  5830. _formdiv = new U.UF.UI.form(
  5831. "编程平台",
  5832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5833. "id": "program",
  5834. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. _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); } }
  5840. break;
  5841. case "whiteboard":
  5842. _formdiv = new U.UF.UI.form(
  5843. "电子白板",
  5844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5845. "id": "whiteboard",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. _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); } }
  5852. break;
  5853. case "investigation":
  5854. _formdiv = new U.UF.UI.form(
  5855. "问卷调查",
  5856. $$("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 }), {
  5857. "id": "investigation",
  5858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. _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); } }
  5864. break;
  5865. case "mind":
  5866. _formdiv = new U.UF.UI.form(
  5867. "思维导图",
  5868. $$("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"
  5869. "id": "mind",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. break;
  5877. case "doc":
  5878. // U.MD.D.I.isRoom();
  5879. _formdiv = new U.UF.UI.form(
  5880. "协同文档",
  5881. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5882. "id": "doc",
  5883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5889. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5890. })
  5891. _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); } }
  5892. break;
  5893. case "study":
  5894. _formdiv = new U.UF.UI.form(
  5895. "课程中心",
  5896. $$("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
  5897. "id": "study",
  5898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _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); } }
  5904. break;
  5905. case "mindNetwork": //好友打开
  5906. _formdiv = new U.UF.UI.form(
  5907. "思维网格",
  5908. $$("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 }), {
  5909. "id": "mindNetwork",
  5910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5911. "onresize": function () { }
  5912. }, {
  5913. closecallback: function () { }
  5914. }, { "style": { "height": "36px" } }).form; //创建窗体
  5915. _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); } }
  5916. break;
  5917. case "train": //好友打开
  5918. _formdiv = new U.UF.UI.form(
  5919. "训练平台",
  5920. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5921. "id": "train",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "sys":
  5930. _formdiv = new U.UF.UI.form(
  5931. "目标管理",
  5932. $$("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 }), {
  5933. "id": "sys",
  5934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "courseDesign":
  5942. _formdiv = new U.UF.UI.form(
  5943. "项目设计",
  5944. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5945. "id": "courseDesign",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. }
  5954. } else if (!_type) {
  5955. switch (str) {
  5956. case "my":
  5957. _formdiv = new U.UF.UI.form(
  5958. "我的资料",
  5959. $$("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 }), {
  5960. "id": "my",
  5961. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. }
  5969. }
  5970. switch (str) {
  5971. // AIprogram2 AI体验 aihub.cocorobo.cn
  5972. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5973. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5974. case "formulaEdi": //公式编辑
  5975. _formdiv = new U.UF.UI.form(
  5976. "公式编辑",
  5977. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5978. "id": "formulaEdi",
  5979. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5985. break;
  5986. case "molStr": //分子结构
  5987. _formdiv = new U.UF.UI.form(
  5988. "分子结构",
  5989. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5990. "id": "molStr",
  5991. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5997. break;
  5998. case "timeAxis": //时间轴
  5999. _formdiv = new U.UF.UI.form(
  6000. "时间轴",
  6001. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6002. "id": "timeAxis",
  6003. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6009. break;
  6010. case "AIprogram2": //AI体验
  6011. _formdiv = new U.UF.UI.form(
  6012. "AI体验",
  6013. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6014. "id": "AIprogram2",
  6015. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. case "Pythonprogram": //python编程
  6023. _formdiv = new U.UF.UI.form(
  6024. "Python编程",
  6025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6026. "id": "Pythonprogram",
  6027. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _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); } }
  6033. break;
  6034. case "AIprogram": //ai编程
  6035. _formdiv = new U.UF.UI.form(
  6036. "AI编程平台",
  6037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6038. "id": "AIprogram",
  6039. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "CocoPi": //CocoPi
  6047. _formdiv = new U.UF.UI.form(
  6048. "CocoPi",
  6049. $$("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" }), {
  6050. "id": "CocoPi",
  6051. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _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); } }
  6057. break;
  6058. case "Wood": //Wood
  6059. _formdiv = new U.UF.UI.form(
  6060. "海龟编程",
  6061. $$("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/" }), {
  6062. "id": "Wood",
  6063. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _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); } }
  6069. break;
  6070. case "car": //模拟驾驶
  6071. _formdiv = new U.UF.UI.form(
  6072. "模拟驾驶",
  6073. $$("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/" }), {
  6074. "id": "car",
  6075. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "lineSearch": //路径搜索
  6083. _formdiv = new U.UF.UI.form(
  6084. "路径搜索",
  6085. $$("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/" }), {
  6086. "id": "lineSearch",
  6087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "deepLearning": //深度学习
  6095. _formdiv = new U.UF.UI.form(
  6096. "深度学习",
  6097. $$("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/#" }), {
  6098. "id": "deepLearning",
  6099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "allHistory": //深度学习
  6107. _formdiv = new U.UF.UI.form(
  6108. "全历史",
  6109. $$("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/" }), {
  6110. "id": "allHistory",
  6111. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "chatPDF": //ai编程
  6119. _formdiv = new U.UF.UI.form(
  6120. "chatPDF",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6122. "id": "chatPDF",
  6123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. case "resources": //国家教育
  6131. _formdiv = new U.UF.UI.form(
  6132. "国家教育",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6134. "id": "resources",
  6135. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "codeEdit": //源码编辑
  6143. _formdiv = new U.UF.UI.form(
  6144. "源码编辑",
  6145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6146. "id": "codeEdit",
  6147. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break; //
  6154. case "MindMap": //MindMap
  6155. _formdiv = new U.UF.UI.form(
  6156. "MindMap",
  6157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6158. "id": "MindMap",
  6159. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. case "netWorkPanel": //netWorkPanel
  6167. _formdiv = new U.UF.UI.form(
  6168. "netWorkPanel",
  6169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6170. "id": "netWorkPanel",
  6171. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "GeoGebra": //GeoGebra
  6179. _formdiv = new U.UF.UI.form(
  6180. "GeoGebra",
  6181. $$("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" }), {
  6182. "id": "GeoGebra",
  6183. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. case "translation": //翻译
  6191. _formdiv = new U.UF.UI.form(
  6192. "翻译",
  6193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6194. "id": "translation",
  6195. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _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); } }
  6201. break;
  6202. case "mohe": //魔盒
  6203. _formdiv = new U.UF.UI.form(
  6204. "魔盒识字",
  6205. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6206. "id": "mohe",
  6207. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _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); } }
  6213. break;
  6214. case "24game": //24点
  6215. _formdiv = new U.UF.UI.form(
  6216. "24点",
  6217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6218. "id": "24game",
  6219. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _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); } }
  6225. break;
  6226. case "case":
  6227. _formdiv = new U.UF.UI.form(
  6228. "课程进展",
  6229. $$("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 }), {
  6230. "id": "case",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _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); } }
  6237. break;
  6238. case "snf":
  6239. _formdiv = new U.UF.UI.form(
  6240. "赛诺梵",
  6241. $$("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" }), {
  6242. "id": "snf",
  6243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _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); } }
  6249. break;
  6250. case "hanFamily":
  6251. _formdiv = new U.UF.UI.form(
  6252. "汉字家族",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6254. "id": "hanFamily",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _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); } }
  6261. break;
  6262. case "hanClassics":
  6263. _formdiv = new U.UF.UI.form(
  6264. "国学经典",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6266. "id": "hanClassics",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _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); } }
  6273. break;
  6274. case "hanTraining":
  6275. _formdiv = new U.UF.UI.form(
  6276. "笔画训练",
  6277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6278. "id": "hanTraining",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _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); } }
  6285. break;
  6286. case "hanClass":
  6287. _formdiv = new U.UF.UI.form(
  6288. "书法课堂",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6290. "id": "hanClass",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "han":
  6299. _formdiv = new U.UF.UI.form(
  6300. "汉字宫",
  6301. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6302. "id": "han",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "projectGM": //课程管理
  6311. _formdiv = new U.UF.UI.form(
  6312. "课程管理",
  6313. $$("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 }), {
  6314. "id": "projectGM",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. break;
  6322. case "studyGM": //课程中心
  6323. _formdiv = new U.UF.UI.form(
  6324. "课程中心",
  6325. $$("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
  6326. "id": "study",
  6327. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _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); } }
  6333. break;
  6334. // studentGM
  6335. case "studentGM": //学生管理
  6336. _formdiv = new U.UF.UI.form(
  6337. "学生管理",
  6338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6339. "id": "studentGM",
  6340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6346. break;
  6347. case "evaluateGM": //学生评价
  6348. _formdiv = new U.UF.UI.form(
  6349. "学生评价",
  6350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6351. "id": "evaluateGM",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6358. break;
  6359. // classGM
  6360. case "classGM": //班级管理
  6361. _formdiv = new U.UF.UI.form(
  6362. "班级管理",
  6363. $$("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 }), {
  6364. "id": "classGM",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _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); } }
  6371. break;
  6372. // dataGM
  6373. case "dataGM":
  6374. _formdiv = new U.UF.UI.form(
  6375. "我的资料",
  6376. $$("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 }), {
  6377. "id": "dataGM",
  6378. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. // caseGM
  6386. case "caseGM": //课程进展
  6387. _formdiv = new U.UF.UI.form(
  6388. "课程进展",
  6389. $$("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 }), {
  6390. "id": "caseGM",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. // meterialGM
  6399. case "meterialGM": //素材库
  6400. _formdiv = new U.UF.UI.form(
  6401. "素材库",
  6402. $$("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 }), {
  6403. "id": "meterialGM",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _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); } }
  6410. break;
  6411. // evaluateSGM
  6412. case "evaluateSGM": //我的评价
  6413. _formdiv = new U.UF.UI.form(
  6414. "我的评价",
  6415. $$("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 }), {
  6416. "id": "evaluateSGM",
  6417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "jupyter": //jupyter
  6425. _formdiv = new U.UF.UI.form(
  6426. "jupyter",
  6427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6428. "id": "jupyter",
  6429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. case "number": //数字实验室
  6437. _formdiv = new U.UF.UI.form(
  6438. "数字实验室",
  6439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6440. "id": "number",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _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); } }
  6447. break;
  6448. case "studentCourse": //项目管理 学生
  6449. _formdiv = new U.UF.UI.form(
  6450. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6451. $$("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 }), {
  6452. "id": "studentCourse",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _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); } }
  6459. break;
  6460. case "studentCourseS": //项目管理 老师
  6461. _formdiv = new U.UF.UI.form(
  6462. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6463. $$("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 }), {
  6464. "id": "studentCourseS",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. break;
  6472. case "studentIndex": //项目中心
  6473. _formdiv = new U.UF.UI.form(
  6474. "项目中心",
  6475. $$("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 }), {
  6476. "id": "studentIndex",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. break;
  6484. case "CaseDesignS":
  6485. _formdiv = new U.UF.UI.form(
  6486. "项目进展",
  6487. $$("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 }), {
  6488. "id": "case",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _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); } }
  6495. break;
  6496. case "tcStudent": //腾讯学生管理
  6497. _formdiv = new U.UF.UI.form(
  6498. "学生管理",
  6499. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6500. "id": "tcStudent",
  6501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6507. break;
  6508. case "tcSchool": //腾讯学校管理
  6509. _formdiv = new U.UF.UI.form(
  6510. "学校管理",
  6511. $$("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 }), {
  6512. "id": "tcSchool",
  6513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _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); } }
  6519. break;
  6520. case "tcTeacher": //腾讯学校管理
  6521. _formdiv = new U.UF.UI.form(
  6522. "教师管理",
  6523. $$("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 }), {
  6524. "id": "tcTeacher",
  6525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "teacher":
  6533. _formdiv = new U.UF.UI.form(
  6534. "教师管理",
  6535. $$("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 }), {
  6536. "id": "teacher",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _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); } }
  6543. break;
  6544. case "tcData": //腾讯我的资料
  6545. _formdiv = new U.UF.UI.form(
  6546. "我的资料",
  6547. $$("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 }), {
  6548. "id": "tcData",
  6549. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _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); } }
  6555. break;
  6556. case "tcNotice": //腾讯消息通知
  6557. _formdiv = new U.UF.UI.form(
  6558. "消息通知",
  6559. $$("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 }), {
  6560. "id": "tcNotice",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "myReport": //好友打开
  6569. _formdiv = new U.UF.UI.form(
  6570. "我的评价",
  6571. $$("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 }), {
  6572. "id": "myReport",
  6573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "learnAna": //好友打开
  6581. _formdiv = new U.UF.UI.form(
  6582. "学习分析",
  6583. $$("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 }), {
  6584. "id": "learnAna",
  6585. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "AIChat": //AI共创
  6593. _formdiv = new U.UF.UI.form(
  6594. "AI共创",
  6595. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6596. "id": "AIChat",
  6597. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. istop: true,
  6601. closecallback: function () { $("#aichat_icon").remove(); },
  6602. narrowcallback: function () {
  6603. if (!$("#aichat_icon")[0]) {
  6604. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6605. }
  6606. },
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "ainew": //AI共创
  6611. _formdiv = new U.UF.UI.form(
  6612. "AI协同",
  6613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6614. "id": "ainew",
  6615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. case "gpt4": //gpt4
  6623. _formdiv = new U.UF.UI.form(
  6624. "AI助手",
  6625. $$("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 }), {
  6626. "id": "gpt4",
  6627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "aigpt": //gpt4
  6635. _formdiv = new U.UF.UI.form(
  6636. "AI助手+",
  6637. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6638. "id": "aigpt",
  6639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () {
  6643. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6644. }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6648. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6649. })
  6650. break;
  6651. case "aiKnowledge": //aiKnowledge
  6652. _formdiv = new U.UF.UI.form(
  6653. "知识建构",
  6654. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6655. "id": "aiKnowledge",
  6656. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //创建窗体
  6661. _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); } }
  6662. break;
  6663. case "futureClass": //AI共创
  6664. _formdiv = new U.UF.UI.form(
  6665. "协同建构",
  6666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6667. "id": "synergyCourse",
  6668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () {
  6672. $("iframe", _formdiv)[0].contentWindow.loginout();
  6673. }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. break;
  6677. case "aiagent": //ai agent
  6678. _formdiv = new U.UF.UI.form(
  6679. "AI Agent",
  6680. $$("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" }), {
  6681. "id": "AIAgent",
  6682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6688. break;
  6689. case "dataBoard": //数据看板
  6690. _formdiv = new U.UF.UI.form(
  6691. "数据看板",
  6692. $$("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 }), {
  6693. "id": "dataBoard",
  6694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //创建窗体
  6699. _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); } }
  6700. break;
  6701. case "dataBoardSies": //数据融合
  6702. _formdiv = new U.UF.UI.form(
  6703. "数据融合",
  6704. $$("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 }), {
  6705. "id": "dataBoardSies",
  6706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _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); } }
  6712. break;
  6713. case "dataBoardNew": //数据看板
  6714. _formdiv = new U.UF.UI.form(
  6715. "综合看板",
  6716. $$("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 }), {
  6717. "id": "dataBoardNew",
  6718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _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); } }
  6724. break;
  6725. case "dataBoardTest": //数据看板
  6726. _formdiv = new U.UF.UI.form(
  6727. "评测看板",
  6728. $$("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 }), {
  6729. "id": "dataBoardTest",
  6730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //创建窗体
  6735. _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); } }
  6736. break;
  6737. case "AIAnalyse": //AI共创
  6738. _formdiv = new U.UF.UI.form(
  6739. "AI分析",
  6740. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6741. "id": "AIAnalyse",
  6742. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () { }
  6746. }, { "style": { "height": "36px" } }).form; //创建窗体
  6747. _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); } }
  6748. break;
  6749. case "studioCourse": //AI共创
  6750. _formdiv = new U.UF.UI.form(
  6751. "工作管理",
  6752. $$("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 }), {
  6753. "id": "studioCourse",
  6754. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6755. "onresize": function () { }
  6756. }, {
  6757. closecallback: function () { }
  6758. }, { "style": { "height": "36px" } }).form; //创建窗体
  6759. _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); } }
  6760. break;
  6761. case "studioIndex": //AI共创
  6762. _formdiv = new U.UF.UI.form(
  6763. "工作中心",
  6764. $$("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 }), {
  6765. "id": "studioIndex",
  6766. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _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); } }
  6772. break;
  6773. case "source":
  6774. _formdiv = new U.UF.UI.form(
  6775. "教学资源",
  6776. $$("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 }), {
  6777. "id": "source",
  6778. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. case "testTeacher":
  6786. _formdiv = new U.UF.UI.form(
  6787. "智能表单",
  6788. $$("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 }), {
  6789. "id": "testTeacher",
  6790. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _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); } }
  6796. break;
  6797. case "testStudent":
  6798. _formdiv = new U.UF.UI.form(
  6799. "教师中心",
  6800. $$("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 }), {
  6801. "id": "testStudent",
  6802. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _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); } }
  6808. break;
  6809. case "testTeacherSies":
  6810. _formdiv = new U.UF.UI.form(
  6811. "教师管理",
  6812. $$("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 }), {
  6813. "id": "testTeacherSies",
  6814. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. case "testStudentSies":
  6822. _formdiv = new U.UF.UI.form(
  6823. "教师中心",
  6824. $$("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 }), {
  6825. "id": "testStudentSies",
  6826. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _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); } }
  6832. break;
  6833. case "ytpbl": //消息通知
  6834. _formdiv = new U.UF.UI.form(
  6835. "案例征集",
  6836. $$("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 }), {
  6837. "id": "ytpbl",
  6838. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _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); } }
  6844. // 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");
  6845. break;
  6846. case "aiCourseResource": //人工智能窗体
  6847. _formdiv = new U.UF.UI.form(
  6848. false,
  6849. $$("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 }), {
  6850. "id": "aiCourseResource",
  6851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6852. "onresize": function () { },
  6853. "isdrag": false,
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //创建窗体
  6857. _taskbar = ''
  6858. break;
  6859. case "szdjgCocooroboX": //图形化编程
  6860. _formdiv = new U.UF.UI.form(
  6861. "图形化编程",
  6862. $$("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" }), {
  6863. "id": "szdjgCocooroboX",
  6864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //创建窗体
  6869. _taskbar = ''
  6870. break;
  6871. case "szdjgPython": //python编程
  6872. _formdiv = new U.UF.UI.form(
  6873. "Python编程",
  6874. $$("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" }), {
  6875. "id": "szdjgPython",
  6876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, { "style": { "height": "36px" } }).form; //创建窗体
  6881. _taskbar = ''
  6882. break;
  6883. case "Record":
  6884. _formdiv = new U.UF.UI.form(
  6885. "观察记录",
  6886. $$("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 }), {
  6887. "id": "Record",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _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); } }
  6894. break;
  6895. case "aigptCourse":
  6896. _formdiv = new U.UF.UI.form(
  6897. "AI智能体",
  6898. $$("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' }), {
  6899. "id": "aigptCourse",
  6900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _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); } }
  6906. break;
  6907. case "classroomObservation":
  6908. _formdiv = new U.UF.UI.form(
  6909. "课堂观察",
  6910. $$("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 }), {
  6911. "id": "classroomObservation",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _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); } }
  6918. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6919. break;
  6920. case "pblCourse":
  6921. _formdiv = new U.UF.UI.form(
  6922. "学生PBL",
  6923. $$("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 }), {
  6924. "id": "pblCourse",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "appStore":
  6933. _formdiv = new U.UF.UI.form(
  6934. "CocoFlow",
  6935. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6936. "id": "pblCourse",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "userExamine":
  6945. _formdiv = new U.UF.UI.form(
  6946. "账号申请",
  6947. $$("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" }), {
  6948. "id": "userExamine",
  6949. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. break;
  6955. }
  6956. //U.MD.D.I.openClick(str);
  6957. //如果有任务栏信息
  6958. if (_taskbar) {
  6959. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6960. }
  6961. }
  6962. // U.MD.D.I.openClick = function(str){
  6963. // var click = '';
  6964. // switch(str){
  6965. // case 'friend':
  6966. // click = '我的好友';
  6967. // break;
  6968. // case 'domain':
  6969. // click = '域名管理';
  6970. // break;
  6971. // case 'disk':
  6972. // click = '我的云盘';
  6973. // break;
  6974. // case 'word':
  6975. // click = 'Word';
  6976. // break;
  6977. // case 'excel':
  6978. // click = 'Execl';
  6979. // break;
  6980. // case 'txt':
  6981. // click = '文本文件';
  6982. // break;
  6983. // case 'lookupFriend':
  6984. // click = '查找好友';
  6985. // break;
  6986. // case 'ftp':
  6987. // click = 'FTP';
  6988. // break;
  6989. // case 'group':
  6990. // click = '群组';
  6991. // break;
  6992. // case 'set':
  6993. // click = '我的设置';
  6994. // break;
  6995. // case 'systemSet':
  6996. // click = '系统设置';
  6997. // break;
  6998. // case 'boomYun':
  6999. // click = '互联办公';
  7000. // break;
  7001. // case 'xz':
  7002. // click = '云端下载';
  7003. // break;
  7004. // case 'client':
  7005. // click = '有思浏览器';
  7006. // break;
  7007. // case 'backEndProgramming':
  7008. // click = '在线后台编程';
  7009. // break;
  7010. // case 'frontEndProgramming':
  7011. // click = '在线前端编程';
  7012. // break;
  7013. // default: break;
  7014. // }
  7015. // if(U.MD.D.I.Ip && click){
  7016. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7017. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7018. // })
  7019. // }
  7020. // }
  7021. /**
  7022. *函数作用:ajax简易函数,使用post格式
  7023. *@param url {data} 后台地址
  7024. *@param data {data} 参数json
  7025. *@param fn {data} 回调函数
  7026. *
  7027. */
  7028. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7029. // var xhr = new XMLHttpRequest();
  7030. // xhr.open("GET",url,true);
  7031. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7032. // xhr.onreadystatechange = function(){
  7033. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7034. // fn.call(this,xhr.responseText);
  7035. // }
  7036. // };
  7037. // xhr.send();
  7038. // }
  7039. /*判断是否是内网IP*/
  7040. // U.MD.D.I.isInnerIPFn = function(str){
  7041. // var curPageUrl = str;
  7042. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7043. // curPageUrl =curPageUrl.replace(reg1,'');
  7044. // // console.log('curPageUrl-1 '+curPageUrl);
  7045. // var reg2 = /\:+/g;//替换冒号为一点
  7046. // curPageUrl =curPageUrl.replace(reg2,'.');
  7047. // // console.log('curPageUrl-2 '+curPageUrl);
  7048. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7049. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7050. // if(curPageUrl[2] != '16'){
  7051. // return ipAddress;
  7052. // }else{
  7053. // return false;
  7054. // }
  7055. // }
  7056. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7057. // //compatibility for firefox and chrome
  7058. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7059. // var pc = new myPeerConnection({
  7060. // iceServers: []
  7061. // }),
  7062. // noop = function() {},
  7063. // localIPs = {},
  7064. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7065. // key;
  7066. // function iterateIP(ip) {
  7067. // if (!localIPs[ip]) onNewIP(ip);
  7068. // localIPs[ip] = true;
  7069. // }
  7070. // //create a bogus data channel
  7071. // pc.createDataChannel("");
  7072. // // create offer and set local description
  7073. // pc.createOffer().then(function(sdp) {
  7074. // sdp.sdp.split('\n').forEach(function(line) {
  7075. // if (line.indexOf('candidate') < 0) return;
  7076. // line.match(ipRegex).forEach(iterateIP);
  7077. // });
  7078. // pc.setLocalDescription(sdp, noop, noop);
  7079. // }).catch(function(reason) {
  7080. // // An error occurred, so handle the failure to connect
  7081. // });
  7082. // //sten for candidate events
  7083. // pc.onicecandidate = function(ice) {
  7084. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7085. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7086. // };
  7087. // }
  7088. // U.MD.D.I.getUserIpBool = function(callback){
  7089. // U.MD.D.I.getUserIP(function(ip){
  7090. // alert("Got IP! :" + ip);
  7091. // });
  7092. //}
  7093. //#endregion
  7094. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7095. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7096. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7097. _userinfo = US.userInfo, //登录用户信息
  7098. _userid = US.userInfo.userid //登录用户id
  7099. let _iframe;
  7100. let _cid = cid,
  7101. _stage = stage,
  7102. _task = task,
  7103. _tool = tool;
  7104. var _jie = $$("div", {
  7105. "style": {
  7106. "position": "absolute",
  7107. "bottom": "50px",
  7108. "right": "50px",
  7109. "zIndex": "9999",
  7110. "backgroundColor": "#2268bc",
  7111. "color": "#fff",
  7112. "padding": "12px 20px",
  7113. "cursor": "pointer",
  7114. "borderRadius": "4px",
  7115. },
  7116. "innerHTML": "提交作业"
  7117. })
  7118. let aTool = ''
  7119. let _loading = document.createElement('div')
  7120. _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;"
  7121. // _loading.id = "";
  7122. let _lchild = document.createElement('div')
  7123. let _limg = document.createElement('img')
  7124. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7125. _limg.style = "width: 26px;margin-right: 10px;"
  7126. _lchild.appendChild(_limg)
  7127. let _lspan = document.createElement('span')
  7128. _lspan.innerHTML = "上传中..."
  7129. _lchild.appendChild(_lspan)
  7130. _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%);"
  7131. _loading.appendChild(_lchild)
  7132. var _box = $$('div', {
  7133. "style": {
  7134. "position": "relative",
  7135. "width": "100%",
  7136. "height": "100%",
  7137. },
  7138. })
  7139. _box.appendChild(_loading)
  7140. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7141. switch (str) {
  7142. case "whiteboard":
  7143. aTool = 1;
  7144. _iframe = $$("iframe", {
  7145. "frameborder": "no",
  7146. "border": "0",
  7147. "scrolling ": "no",
  7148. "style": {
  7149. "cssText": "border:0;width:100%;height:100%"
  7150. },
  7151. "src": "https://beta.iwb.cocorobo.cn/"
  7152. })
  7153. _box.appendChild(_iframe);
  7154. _box.appendChild(_jie);
  7155. _formdiv = new U.UF.UI.form(
  7156. "电子白板",
  7157. _box, {
  7158. "id": "whiteboard" + cid + stage + task + tool,
  7159. "style": {
  7160. "width": "90%",
  7161. "height": "90%",
  7162. "overflow": 'hidden'
  7163. },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, {
  7168. "style": {
  7169. "height": "36px"
  7170. }
  7171. }).form; //创建窗体
  7172. _taskbar = {
  7173. "id": str + _formdiv.id,
  7174. "style": {
  7175. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7176. },
  7177. "name": "电子白板",
  7178. "forms": _formdiv,
  7179. "click": function () {
  7180. U.MD.D.I.openApplication(str, obj, info);
  7181. }
  7182. }
  7183. break;
  7184. case "mind":
  7185. aTool = 3;
  7186. _iframe = $$("iframe", {
  7187. "frameborder": "no",
  7188. "border": "0",
  7189. "scrolling ": "no",
  7190. "style": {
  7191. "cssText": "border:0;width:100%;height:100%"
  7192. },
  7193. "src": "/kityminder-editor/dist/index.html"
  7194. })
  7195. _box.appendChild(_iframe);
  7196. _box.appendChild(_jie);
  7197. _formdiv = new U.UF.UI.form(
  7198. "思维导图",
  7199. _box, { //"/jsmind/example/demo.html"
  7200. "id": "mind" + cid + stage + task + tool,
  7201. "style": {
  7202. "width": "90%",
  7203. "height": "90%",
  7204. "overflow": 'hidden'
  7205. },
  7206. "onresize": function () { }
  7207. }, {
  7208. closecallback: function () { }
  7209. }, {
  7210. "style": {
  7211. "height": "36px"
  7212. }
  7213. }).form; //创建窗体
  7214. _taskbar = {
  7215. "id": str + _formdiv.id,
  7216. "style": {
  7217. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7218. },
  7219. "name": "思维导图",
  7220. "forms": _formdiv,
  7221. "click": function () {
  7222. U.MD.D.I.openApplication(str, obj, info);
  7223. }
  7224. }
  7225. break;
  7226. case "MindMap":
  7227. aTool = 3;
  7228. _iframe = $$("iframe", {
  7229. "frameborder": "no",
  7230. "border": "0",
  7231. "scrolling ": "no",
  7232. "style": {
  7233. "cssText": "border:0;width:100%;height:100%"
  7234. },
  7235. "src": "//cloud.cocorobo.cn/mind/"
  7236. })
  7237. _box.appendChild(_iframe);
  7238. _box.appendChild(_jie);
  7239. _formdiv = new U.UF.UI.form(
  7240. "思维导图",
  7241. _box, { //"/jsmind/example/demo.html"
  7242. "id": "mind" + cid + stage + task + tool,
  7243. "style": {
  7244. "width": "90%",
  7245. "height": "90%",
  7246. "overflow": 'hidden'
  7247. },
  7248. "onresize": function () { }
  7249. }, {
  7250. closecallback: function () { }
  7251. }, {
  7252. "style": {
  7253. "height": "36px"
  7254. }
  7255. }).form; //创建窗体
  7256. _taskbar = {
  7257. "id": str + _formdiv.id,
  7258. "style": {
  7259. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7260. },
  7261. "name": "思维导图",
  7262. "forms": _formdiv,
  7263. "click": function () {
  7264. U.MD.D.I.openApplication(str, obj, info);
  7265. }
  7266. }
  7267. break;
  7268. case "doc":
  7269. aTool = 6;
  7270. _iframe = $$("iframe", {
  7271. "frameborder": "no",
  7272. "border": "0",
  7273. "scrolling ": "no",
  7274. "style": {
  7275. "cssText": "border:0;width:100%;height:100%"
  7276. },
  7277. "src": "/Office/Word/WordEditArea.htm"
  7278. })
  7279. _box.appendChild(_iframe);
  7280. _box.appendChild(_jie);
  7281. _formdiv = new U.UF.UI.form(
  7282. "协同文档",
  7283. _box, {
  7284. "id": "doc" + cid + stage + task + tool,
  7285. "style": {
  7286. "width": "90%",
  7287. "height": "90%",
  7288. "overflow": 'hidden'
  7289. },
  7290. "onresize": function () { }
  7291. }, {
  7292. closecallback: function () { }
  7293. }, {
  7294. "style": {
  7295. "height": "36px"
  7296. }
  7297. }).form; //创建窗体
  7298. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7299. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7300. })
  7301. _taskbar = {
  7302. "id": str + _formdiv.id,
  7303. "style": {
  7304. "backgroundImage": "url(/img/icon/doc.png)"
  7305. },
  7306. "name": "协同文档",
  7307. "forms": _formdiv,
  7308. "click": function () {
  7309. U.MD.D.I.openApplication(str, obj, info);
  7310. }
  7311. }
  7312. break;
  7313. case "mindNetwork": //好友打开
  7314. aTool = 7;
  7315. _iframe = $$("iframe", {
  7316. "webkitallowfullscreen": "",
  7317. "mozallowfullscreen": "",
  7318. "allowfullscreen": "",
  7319. "frameborder": "no",
  7320. "border": "0",
  7321. "scrolling ": "no",
  7322. "style": {
  7323. "cssText": "border:0; width:100%; height:100%;"
  7324. },
  7325. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7326. })
  7327. _box.appendChild(_iframe);
  7328. _box.appendChild(_jie);
  7329. _formdiv = new U.UF.UI.form(
  7330. "思维网格",
  7331. _box, {
  7332. "id": "mindNetwork" + cid + stage + task + tool,
  7333. "style": {
  7334. "width": "90%",
  7335. "height": "90%",
  7336. "overflow": 'hidden'
  7337. },
  7338. "onresize": function () { }
  7339. }, {
  7340. closecallback: function () { }
  7341. }, {
  7342. "style": {
  7343. "height": "36px"
  7344. }
  7345. }).form; //创建窗体
  7346. _taskbar = {
  7347. "id": str + _formdiv.id,
  7348. "style": {
  7349. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7350. },
  7351. "name": "思维网格",
  7352. "forms": _formdiv,
  7353. "click": function () {
  7354. U.MD.D.I.openApplication(str, obj, info);
  7355. }
  7356. }
  7357. break;
  7358. case "courseDesign":
  7359. _iframe = $$("iframe", {
  7360. "webkitallowfullscreen": "",
  7361. "mozallowfullscreen": "",
  7362. "allowfullscreen": "",
  7363. "frameborder": "no",
  7364. "border": "0",
  7365. "scrolling ": "no",
  7366. "style": {
  7367. "cssText": "border:0; width:100%; height:100%;"
  7368. },
  7369. "src": "/course-design-vue"
  7370. })
  7371. _box.appendChild(_iframe);
  7372. _box.appendChild(_jie);
  7373. _formdiv = new U.UF.UI.form(
  7374. "项目设计",
  7375. _box, {
  7376. "id": "courseDesign" + cid + stage + task + tool,
  7377. "style": {
  7378. "width": "90%",
  7379. "height": "90%",
  7380. "overflow": 'hidden'
  7381. },
  7382. "onresize": function () { }
  7383. }, {
  7384. closecallback: function () { }
  7385. }, {
  7386. "style": {
  7387. "height": "36px"
  7388. }
  7389. }).form; //创建窗体
  7390. _taskbar = {
  7391. "id": str + _formdiv.id,
  7392. "style": {
  7393. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7394. },
  7395. "name": "项目设计",
  7396. "forms": _formdiv,
  7397. "click": function () {
  7398. U.MD.D.I.openApplication(str, obj, info);
  7399. }
  7400. }
  7401. break;
  7402. }
  7403. const script1 = document.createElement("script");
  7404. script1.type = "text/javascript";
  7405. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7406. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7407. const script2 = document.createElement("script");
  7408. script2.type = "text/javascript";
  7409. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7410. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7411. const script3 = document.createElement("script");
  7412. script3.type = "text/javascript";
  7413. script3.charset = "UTF-8";
  7414. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7415. const script4 = document.createElement("script");
  7416. script4.type = "text/javascript";
  7417. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7418. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7419. if (_iframe) {
  7420. if (str == 'doc') {
  7421. _iframe = _formdiv.querySelector('iframe')
  7422. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7423. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7424. _iframe.contentWindow.document.body.appendChild(script1);
  7425. _iframe.contentWindow.document.body.appendChild(script2);
  7426. // _iframe.contentWindow.document.body.appendChild(script3);
  7427. _iframe.contentWindow.document.body.appendChild(script4);
  7428. })
  7429. if (onloadListener) {
  7430. _iframe.contentDocument.location.reload()
  7431. } else {
  7432. _iframe.contentDocument.location.reload()
  7433. }
  7434. } else if (str == 'courseDesign') {
  7435. U.UF.DL.iframeLoad(_iframe, function () {
  7436. // _iframe.contentWindow.U.MD.O.W.load();
  7437. // _iframe.contentWindow.document.body.appendChild(script1);
  7438. _iframe.contentWindow.document.body.appendChild(script2);
  7439. _iframe.contentWindow.document.body.appendChild(script4);
  7440. })
  7441. } else if (str == 'mind') {
  7442. _iframe = _formdiv.querySelector('iframe')
  7443. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7444. //
  7445. _iframe.contentWindow.document.body.appendChild(script1);
  7446. _iframe.contentWindow.document.body.appendChild(script2);
  7447. _iframe.contentWindow.document.body.appendChild(script4);
  7448. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7449. })
  7450. if (onloadListener) {
  7451. _iframe.contentDocument.location.reload()
  7452. } else {
  7453. _iframe.contentDocument.location.reload()
  7454. }
  7455. } else if (str == 'whiteboard') {
  7456. _iframe = _formdiv.querySelector('iframe')
  7457. let onloadListener = _iframe.onload = () => {
  7458. _iframe.contentWindow.document.body.appendChild(script1);
  7459. _iframe.contentWindow.document.body.appendChild(script2);
  7460. _iframe.contentWindow.document.body.appendChild(script4);
  7461. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7462. };
  7463. // if (onloadListener) {
  7464. // try {
  7465. // _iframe.src += "?cocorobo="+new Date().getTime()
  7466. // _iframe.contentWindow.document.location.reload()
  7467. // } catch (error) {
  7468. // }
  7469. // } else {
  7470. // _iframe.contentDocument.location.reload()
  7471. // }
  7472. } else {
  7473. _iframe.onload = () => {
  7474. _iframe.contentWindow.document.body.appendChild(script1);
  7475. _iframe.contentWindow.document.body.appendChild(script2);
  7476. // _iframe.contentWindow.document.body.appendChild(script3);
  7477. _iframe.contentWindow.document.body.appendChild(script4);
  7478. };
  7479. }
  7480. _jie.onclick = async () => {
  7481. let text = ''
  7482. if (aTool == 1) {
  7483. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7484. } else if (aTool == 6) {
  7485. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7486. } else if (aTool == 3) {
  7487. text = await U.MD.D.I.getEditorContent(_iframe);
  7488. }
  7489. _loading.style.display = 'flex'
  7490. console.log(_loading);
  7491. var _ajs = _iframe.contentWindow.document.createElement("script");
  7492. _ajs.type = "text/javascript";
  7493. _ajs.innerHTML =
  7494. // 'console.log(' + _loading + ');\n' +
  7495. 'var _js = document.createElement("script");\n' +
  7496. '_js.type="text/javascript";\n' +
  7497. '_js.charset="UTF-8";\n' +
  7498. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7499. "_js.onload = function(){\n" +
  7500. ' var a = document.getElementsByTagName("img")\n' +
  7501. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7502. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7503. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7504. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7505. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7506. "beforeUpload_shishi(file," +
  7507. "'" +
  7508. _userid +
  7509. "'" +
  7510. ", " +
  7511. "'" +
  7512. _cid +
  7513. "'" +
  7514. ", " +
  7515. "'" +
  7516. _stage +
  7517. "'" +
  7518. ", " +
  7519. "'" +
  7520. _task +
  7521. "'" +
  7522. ", " +
  7523. "'" +
  7524. _tool +
  7525. "'" +
  7526. ", " +
  7527. "'" +
  7528. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7529. "'" +
  7530. ", " +
  7531. "'" +
  7532. aTool +
  7533. "'" +
  7534. ", " +
  7535. "`" +
  7536. text +
  7537. "`" +
  7538. ")\n" +
  7539. " });\n" +
  7540. "}\n" +
  7541. "document.head.appendChild(_js);\n";
  7542. _iframe.contentWindow.document.head.appendChild(_ajs);
  7543. }
  7544. }
  7545. //U.MD.D.I.openClick(str);
  7546. //如果有任务栏信息
  7547. // if (_taskbar) {
  7548. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7549. // }
  7550. }
  7551. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7552. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7553. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7554. _userinfo = US.userInfo, //登录用户信息
  7555. _userid = US.userInfo.userid //登录用户id
  7556. let _iframe;
  7557. let _cid = cid,
  7558. _stage = stage,
  7559. _task = task,
  7560. _tool = tool;
  7561. var _jie = $$("div", {
  7562. "style": {
  7563. "position": "absolute",
  7564. "bottom": "50px",
  7565. "right": "50px",
  7566. "zIndex": "9999",
  7567. "backgroundColor": "#2268bc",
  7568. "color": "#fff",
  7569. "padding": "12px 20px",
  7570. "cursor": "pointer",
  7571. "borderRadius": "4px",
  7572. },
  7573. "innerHTML": "提交作业"
  7574. })
  7575. let aTool = ''
  7576. let _loading = document.createElement('div')
  7577. _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;"
  7578. // _loading.id = "";
  7579. let _lchild = document.createElement('div')
  7580. let _limg = document.createElement('img')
  7581. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7582. _limg.style = "width: 26px;margin-right: 10px;"
  7583. _lchild.appendChild(_limg)
  7584. let _lspan = document.createElement('span')
  7585. _lspan.innerHTML = "上传中..."
  7586. _lchild.appendChild(_lspan)
  7587. _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%);"
  7588. _loading.appendChild(_lchild)
  7589. let _box = $$('div', {
  7590. "style": {
  7591. "position": "relative",
  7592. "width": "100%",
  7593. "height": "100%",
  7594. },
  7595. })
  7596. _box.appendChild(_loading)
  7597. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7598. switch (str) {
  7599. case "whiteboard":
  7600. aTool = 1;
  7601. _iframe = $$("iframe", {
  7602. "frameborder": "no",
  7603. "border": "0",
  7604. "scrolling ": "no",
  7605. "style": {
  7606. "cssText": "border:0;width:100%;height:100%"
  7607. },
  7608. "src": "https://beta.iwb.cocorobo.cn/"
  7609. })
  7610. _box.appendChild(_iframe);
  7611. _box.appendChild(_jie);
  7612. _formdiv = new U.UF.UI.form(
  7613. "电子白板",
  7614. _box, {
  7615. "id": "whiteboard" + cid + stage + task + tool,
  7616. "style": {
  7617. "width": "90%",
  7618. "height": "90%",
  7619. "overflow": 'hidden'
  7620. },
  7621. "onresize": function () { }
  7622. }, {
  7623. closecallback: function () { }
  7624. }, {
  7625. "style": {
  7626. "height": "36px"
  7627. }
  7628. }).form; //创建窗体
  7629. _taskbar = {
  7630. "id": str + _formdiv.id,
  7631. "style": {
  7632. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7633. },
  7634. "name": "电子白板",
  7635. "forms": _formdiv,
  7636. "click": function () {
  7637. U.MD.D.I.openApplication(str, obj, info);
  7638. }
  7639. }
  7640. break;
  7641. case "mind":
  7642. aTool = 3;
  7643. _iframe = $$("iframe", {
  7644. "frameborder": "no",
  7645. "border": "0",
  7646. "scrolling ": "no",
  7647. "style": {
  7648. "cssText": "border:0;width:100%;height:100%"
  7649. },
  7650. "src": "/kityminder-editor/dist/index.html"
  7651. })
  7652. _box.appendChild(_iframe);
  7653. _box.appendChild(_jie);
  7654. _formdiv = new U.UF.UI.form(
  7655. "思维导图",
  7656. _box, { //"/jsmind/example/demo.html"
  7657. "id": "mind" + cid + stage + task + tool,
  7658. "style": {
  7659. "width": "90%",
  7660. "height": "90%",
  7661. "overflow": 'hidden'
  7662. },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, {
  7667. "style": {
  7668. "height": "36px"
  7669. }
  7670. }).form; //创建窗体
  7671. _taskbar = {
  7672. "id": str + _formdiv.id,
  7673. "style": {
  7674. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7675. },
  7676. "name": "思维导图",
  7677. "forms": _formdiv,
  7678. "click": function () {
  7679. U.MD.D.I.openApplication(str, obj, info);
  7680. }
  7681. }
  7682. break;
  7683. case "MindMap":
  7684. aTool = 3;
  7685. _iframe = $$("iframe", {
  7686. "frameborder": "no",
  7687. "border": "0",
  7688. "scrolling ": "no",
  7689. "style": {
  7690. "cssText": "border:0;width:100%;height:100%"
  7691. },
  7692. "src": "//cloud.cocorobo.cn/mind/"
  7693. })
  7694. _box.appendChild(_iframe);
  7695. _box.appendChild(_jie);
  7696. _formdiv = new U.UF.UI.form(
  7697. "思维导图",
  7698. _box, { //"/jsmind/example/demo.html"
  7699. "id": "mind" + cid + stage + task + tool,
  7700. "style": {
  7701. "width": "90%",
  7702. "height": "90%",
  7703. "overflow": 'hidden'
  7704. },
  7705. "onresize": function () { }
  7706. }, {
  7707. closecallback: function () { }
  7708. }, {
  7709. "style": {
  7710. "height": "36px"
  7711. }
  7712. }).form; //创建窗体
  7713. _taskbar = {
  7714. "id": str + _formdiv.id,
  7715. "style": {
  7716. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7717. },
  7718. "name": "思维导图",
  7719. "forms": _formdiv,
  7720. "click": function () {
  7721. U.MD.D.I.openApplication(str, obj, info);
  7722. }
  7723. }
  7724. break;
  7725. case "doc":
  7726. aTool = 6;
  7727. _iframe = $$("iframe", {
  7728. "frameborder": "no",
  7729. "border": "0",
  7730. "scrolling ": "no",
  7731. "style": {
  7732. "cssText": "border:0;width:100%;height:100%"
  7733. },
  7734. "src": "/Office/Word/WordEditArea.htm"
  7735. })
  7736. _box.appendChild(_iframe);
  7737. _box.appendChild(_jie);
  7738. _formdiv = new U.UF.UI.form(
  7739. "协同文档",
  7740. _box, {
  7741. "id": "doc" + cid + stage + task + tool,
  7742. "style": {
  7743. "width": "90%",
  7744. "height": "90%",
  7745. "overflow": 'hidden'
  7746. },
  7747. "onresize": function () { }
  7748. }, {
  7749. closecallback: function () { }
  7750. }, {
  7751. "style": {
  7752. "height": "36px"
  7753. }
  7754. }).form; //创建窗体
  7755. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7756. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7757. })
  7758. _taskbar = {
  7759. "id": str + _formdiv.id,
  7760. "style": {
  7761. "backgroundImage": "url(/img/icon/doc.png)"
  7762. },
  7763. "name": "协同文档",
  7764. "forms": _formdiv,
  7765. "click": function () {
  7766. U.MD.D.I.openApplication(str, obj, info);
  7767. }
  7768. }
  7769. break;
  7770. case "mindNetwork": //好友打开
  7771. aTool = 7;
  7772. _iframe = $$("iframe", {
  7773. "webkitallowfullscreen": "",
  7774. "mozallowfullscreen": "",
  7775. "allowfullscreen": "",
  7776. "frameborder": "no",
  7777. "border": "0",
  7778. "scrolling ": "no",
  7779. "style": {
  7780. "cssText": "border:0; width:100%; height:100%;"
  7781. },
  7782. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7783. })
  7784. _box.appendChild(_iframe);
  7785. _box.appendChild(_jie);
  7786. _formdiv = new U.UF.UI.form(
  7787. "思维网格",
  7788. _box, {
  7789. "id": "mindNetwork" + cid + stage + task + tool,
  7790. "style": {
  7791. "width": "90%",
  7792. "height": "90%",
  7793. "overflow": 'hidden'
  7794. },
  7795. "onresize": function () { }
  7796. }, {
  7797. closecallback: function () { }
  7798. }, {
  7799. "style": {
  7800. "height": "36px"
  7801. }
  7802. }).form; //创建窗体
  7803. _taskbar = {
  7804. "id": str + _formdiv.id,
  7805. "style": {
  7806. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7807. },
  7808. "name": "思维网格",
  7809. "forms": _formdiv,
  7810. "click": function () {
  7811. U.MD.D.I.openApplication(str, obj, info);
  7812. }
  7813. }
  7814. break;
  7815. case "courseDesign":
  7816. _iframe = $$("iframe", {
  7817. "webkitallowfullscreen": "",
  7818. "mozallowfullscreen": "",
  7819. "allowfullscreen": "",
  7820. "frameborder": "no",
  7821. "border": "0",
  7822. "scrolling ": "no",
  7823. "style": {
  7824. "cssText": "border:0; width:100%; height:100%;"
  7825. },
  7826. "src": "/course-design-vue"
  7827. })
  7828. _box.appendChild(_iframe);
  7829. _box.appendChild(_jie);
  7830. _formdiv = new U.UF.UI.form(
  7831. "项目设计",
  7832. _box, {
  7833. "id": "courseDesign" + cid + stage + task + tool,
  7834. "style": {
  7835. "width": "90%",
  7836. "height": "90%",
  7837. "overflow": 'hidden'
  7838. },
  7839. "onresize": function () { }
  7840. }, {
  7841. closecallback: function () { }
  7842. }, {
  7843. "style": {
  7844. "height": "36px"
  7845. }
  7846. }).form; //创建窗体
  7847. _taskbar = {
  7848. "id": str + _formdiv.id,
  7849. "style": {
  7850. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7851. },
  7852. "name": "项目设计",
  7853. "forms": _formdiv,
  7854. "click": function () {
  7855. U.MD.D.I.openApplication(str, obj, info);
  7856. }
  7857. }
  7858. break;
  7859. }
  7860. const script1 = document.createElement("script");
  7861. script1.type = "text/javascript";
  7862. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7863. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7864. const script2 = document.createElement("script");
  7865. script2.type = "text/javascript";
  7866. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7867. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7868. const script3 = document.createElement("script");
  7869. script3.type = "text/javascript";
  7870. script3.charset = "UTF-8";
  7871. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7872. const script4 = document.createElement("script");
  7873. script4.type = "text/javascript";
  7874. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7875. script4.src = window.origin + "/js/Common/jietu2E.js";
  7876. if (_iframe) {
  7877. if (str == 'doc') {
  7878. _iframe = _formdiv.querySelector('iframe')
  7879. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7880. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7881. _iframe.contentWindow.document.body.appendChild(script1);
  7882. _iframe.contentWindow.document.body.appendChild(script2);
  7883. // _iframe.contentWindow.document.body.appendChild(script3);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. })
  7886. if (onloadListener) {
  7887. _iframe.contentDocument.location.reload()
  7888. } else {
  7889. _iframe.contentDocument.location.reload()
  7890. }
  7891. } else if (str == 'courseDesign') {
  7892. U.UF.DL.iframeLoad(_iframe, function () {
  7893. // _iframe.contentWindow.U.MD.O.W.load();
  7894. // _iframe.contentWindow.document.body.appendChild(script1);
  7895. _iframe.contentWindow.document.body.appendChild(script2);
  7896. _iframe.contentWindow.document.body.appendChild(script4);
  7897. })
  7898. } else if (str == 'mind') {
  7899. _iframe = _formdiv.querySelector('iframe')
  7900. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7901. //
  7902. _iframe.contentWindow.document.body.appendChild(script1);
  7903. _iframe.contentWindow.document.body.appendChild(script2);
  7904. _iframe.contentWindow.document.body.appendChild(script4);
  7905. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7906. })
  7907. if (onloadListener) {
  7908. _iframe.contentDocument.location.reload()
  7909. } else {
  7910. _iframe.contentDocument.location.reload()
  7911. }
  7912. } else if (str == 'whiteboard') {
  7913. _iframe = _formdiv.querySelector('iframe')
  7914. let onloadListener = _iframe.onload = () => {
  7915. _iframe.contentWindow.document.body.appendChild(script1);
  7916. _iframe.contentWindow.document.body.appendChild(script2);
  7917. _iframe.contentWindow.document.body.appendChild(script4);
  7918. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7919. };
  7920. // if (onloadListener) {
  7921. // try {
  7922. // _iframe.src += "?cocorobo="+new Date().getTime()
  7923. // _iframe.contentWindow.document.location.reload()
  7924. // } catch (error) {
  7925. // }
  7926. // } else {
  7927. // _iframe.contentDocument.location.reload()
  7928. // }
  7929. } else {
  7930. _iframe.onload = () => {
  7931. _iframe.contentWindow.document.body.appendChild(script1);
  7932. _iframe.contentWindow.document.body.appendChild(script2);
  7933. // _iframe.contentWindow.document.body.appendChild(script3);
  7934. _iframe.contentWindow.document.body.appendChild(script4);
  7935. };
  7936. }
  7937. _jie.onclick = async () => {
  7938. let text = ''
  7939. if (aTool == 1) {
  7940. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7941. } else if (aTool == 6) {
  7942. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7943. } else if (aTool == 3) {
  7944. text = await U.MD.D.I.getEditorContent(_iframe);
  7945. }
  7946. _loading.style.display = 'flex'
  7947. console.log(_loading);
  7948. var _ajs = _iframe.contentWindow.document.createElement("script");
  7949. _ajs.type = "text/javascript";
  7950. _ajs.innerHTML =
  7951. // 'console.log(' + _loading + ');\n' +
  7952. 'var _js = document.createElement("script");\n' +
  7953. '_js.type="text/javascript";\n' +
  7954. '_js.charset="UTF-8";\n' +
  7955. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7956. "_js.onload = function(){\n" +
  7957. ' var a = document.getElementsByTagName("img")\n' +
  7958. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7959. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7960. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7961. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7962. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7963. "beforeUpload_shishi(file," +
  7964. "'" +
  7965. _userid +
  7966. "'" +
  7967. ", " +
  7968. "'" +
  7969. _cid +
  7970. "'" +
  7971. ", " +
  7972. "'" +
  7973. _stage +
  7974. "'" +
  7975. ", " +
  7976. "'" +
  7977. _task +
  7978. "'" +
  7979. ", " +
  7980. "'" +
  7981. _tool +
  7982. "'" +
  7983. ", " +
  7984. "'" +
  7985. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7986. "'" +
  7987. ", " +
  7988. "'" +
  7989. aTool +
  7990. "'" +
  7991. ", " +
  7992. "`" +
  7993. text +
  7994. "`" +
  7995. ")\n" +
  7996. " });\n" +
  7997. "}\n" +
  7998. "document.head.appendChild(_js);\n";
  7999. _iframe.contentWindow.document.head.appendChild(_ajs);
  8000. }
  8001. }
  8002. //U.MD.D.I.openClick(str);
  8003. //如果有任务栏信息
  8004. // if (_taskbar) {
  8005. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8006. // }
  8007. }
  8008. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8009. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8010. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8011. _userid = student.userid, //登录用户id
  8012. _username = student.student //用户名字
  8013. let _iframe;
  8014. let _cid = cid,
  8015. _stage = stage,
  8016. _task = task,
  8017. _tool = tool;
  8018. var _jie = $$("div", {
  8019. "style": {
  8020. "position": "absolute",
  8021. "bottom": "50px",
  8022. "right": "50px",
  8023. "zIndex": "9999",
  8024. "backgroundColor": "#2268bc",
  8025. "color": "#fff",
  8026. "padding": "12px 20px",
  8027. "cursor": "pointer",
  8028. "borderRadius": "4px",
  8029. },
  8030. "innerHTML": "提交作业"
  8031. })
  8032. let aTool = ''
  8033. let _loading = document.createElement('div')
  8034. _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;"
  8035. // _loading.id = "";
  8036. let _lchild = document.createElement('div')
  8037. let _limg = document.createElement('img')
  8038. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8039. _limg.style = "width: 26px;margin-right: 10px;"
  8040. _lchild.appendChild(_limg)
  8041. let _lspan = document.createElement('span')
  8042. _lspan.innerHTML = "上传中..."
  8043. _lchild.appendChild(_lspan)
  8044. _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%);"
  8045. _loading.appendChild(_lchild)
  8046. var _box = $$('div', {
  8047. "style": {
  8048. "position": "relative",
  8049. "width": "100%",
  8050. "height": "100%",
  8051. },
  8052. })
  8053. _box.appendChild(_loading)
  8054. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8055. switch (str) {
  8056. case "whiteboard":
  8057. aTool = 1;
  8058. _iframe = $$("iframe", {
  8059. "frameborder": "no",
  8060. "border": "0",
  8061. "scrolling ": "no",
  8062. "style": {
  8063. "cssText": "border:0;width:100%;height:100%"
  8064. },
  8065. "src": "https://beta.iwb.cocorobo.cn/"
  8066. })
  8067. _box.appendChild(_iframe);
  8068. _box.appendChild(_jie);
  8069. _formdiv = new U.UF.UI.form(
  8070. "电子白板-" + _username,
  8071. _box, {
  8072. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8073. "style": {
  8074. "width": "90%",
  8075. "height": "90%",
  8076. "overflow": 'hidden'
  8077. },
  8078. "onresize": function () { }
  8079. }, {
  8080. closecallback: function () { }
  8081. }, {
  8082. "style": {
  8083. "height": "36px"
  8084. }
  8085. }).form; //创建窗体
  8086. _taskbar = {
  8087. "id": str + _formdiv.id,
  8088. "style": {
  8089. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8090. },
  8091. "name": "电子白板",
  8092. "forms": _formdiv,
  8093. "click": function () {
  8094. U.MD.D.I.openApplication(str, obj, info);
  8095. }
  8096. }
  8097. break;
  8098. case "mind":
  8099. aTool = 3;
  8100. _iframe = $$("iframe", {
  8101. "frameborder": "no",
  8102. "border": "0",
  8103. "scrolling ": "no",
  8104. "style": {
  8105. "cssText": "border:0;width:100%;height:100%"
  8106. },
  8107. "src": "/kityminder-editor/dist/index.html"
  8108. })
  8109. _box.appendChild(_iframe);
  8110. _box.appendChild(_jie);
  8111. _formdiv = new U.UF.UI.form(
  8112. "思维导图-" + _username,
  8113. _box, { //"/jsmind/example/demo.html"
  8114. "id": "mind" + cid + stage + task + tool + _userid,
  8115. "style": {
  8116. "width": "90%",
  8117. "height": "90%",
  8118. "overflow": 'hidden'
  8119. },
  8120. "onresize": function () { }
  8121. }, {
  8122. closecallback: function () { }
  8123. }, {
  8124. "style": {
  8125. "height": "36px"
  8126. }
  8127. }).form; //创建窗体
  8128. _taskbar = {
  8129. "id": str + _formdiv.id,
  8130. "style": {
  8131. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8132. },
  8133. "name": "思维导图",
  8134. "forms": _formdiv,
  8135. "click": function () {
  8136. U.MD.D.I.openApplication(str, obj, info);
  8137. }
  8138. }
  8139. break;
  8140. case "MindMap":
  8141. aTool = 3;
  8142. _iframe = $$("iframe", {
  8143. "frameborder": "no",
  8144. "border": "0",
  8145. "scrolling ": "no",
  8146. "style": {
  8147. "cssText": "border:0;width:100%;height:100%"
  8148. },
  8149. "src": "//cloud.cocorobo.cn/mind/"
  8150. })
  8151. _box.appendChild(_iframe);
  8152. _box.appendChild(_jie);
  8153. _formdiv = new U.UF.UI.form(
  8154. "思维导图-" + _username,
  8155. _box, { //"/jsmind/example/demo.html"
  8156. "id": "mind" + cid + stage + task + tool + _userid,
  8157. "style": {
  8158. "width": "90%",
  8159. "height": "90%",
  8160. "overflow": 'hidden'
  8161. },
  8162. "onresize": function () { }
  8163. }, {
  8164. closecallback: function () { }
  8165. }, {
  8166. "style": {
  8167. "height": "36px"
  8168. }
  8169. }).form; //创建窗体
  8170. _taskbar = {
  8171. "id": str + _formdiv.id,
  8172. "style": {
  8173. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8174. },
  8175. "name": "思维导图",
  8176. "forms": _formdiv,
  8177. "click": function () {
  8178. U.MD.D.I.openApplication(str, obj, info);
  8179. }
  8180. }
  8181. break;
  8182. case "doc":
  8183. aTool = 6;
  8184. _iframe = $$("iframe", {
  8185. "frameborder": "no",
  8186. "border": "0",
  8187. "scrolling ": "no",
  8188. "style": {
  8189. "cssText": "border:0;width:100%;height:100%"
  8190. },
  8191. "src": "/Office/Word/WordEditArea.htm"
  8192. })
  8193. _box.appendChild(_iframe);
  8194. _box.appendChild(_jie);
  8195. _formdiv = new U.UF.UI.form(
  8196. "协同文档-" + _username,
  8197. _box, {
  8198. "id": "doc" + cid + stage + task + tool + _userid,
  8199. "style": {
  8200. "width": "90%",
  8201. "height": "90%",
  8202. "overflow": 'hidden'
  8203. },
  8204. "onresize": function () { }
  8205. }, {
  8206. closecallback: function () { }
  8207. }, {
  8208. "style": {
  8209. "height": "36px"
  8210. }
  8211. }).form; //创建窗体
  8212. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8213. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8214. })
  8215. _taskbar = {
  8216. "id": str + _formdiv.id,
  8217. "style": {
  8218. "backgroundImage": "url(/img/icon/doc.png)"
  8219. },
  8220. "name": "协同文档",
  8221. "forms": _formdiv,
  8222. "click": function () {
  8223. U.MD.D.I.openApplication(str, obj, info);
  8224. }
  8225. }
  8226. break;
  8227. case "mindNetwork": //好友打开
  8228. aTool = 7;
  8229. _iframe = $$("iframe", {
  8230. "webkitallowfullscreen": "",
  8231. "mozallowfullscreen": "",
  8232. "allowfullscreen": "",
  8233. "frameborder": "no",
  8234. "border": "0",
  8235. "scrolling ": "no",
  8236. "style": {
  8237. "cssText": "border:0; width:100%; height:100%;"
  8238. },
  8239. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8240. })
  8241. _box.appendChild(_iframe);
  8242. _box.appendChild(_jie);
  8243. _formdiv = new U.UF.UI.form(
  8244. "思维网格-" + _username,
  8245. _box, {
  8246. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8247. "style": {
  8248. "width": "90%",
  8249. "height": "90%",
  8250. "overflow": 'hidden'
  8251. },
  8252. "onresize": function () { }
  8253. }, {
  8254. closecallback: function () { }
  8255. }, {
  8256. "style": {
  8257. "height": "36px"
  8258. }
  8259. }).form; //创建窗体
  8260. _taskbar = {
  8261. "id": str + _formdiv.id,
  8262. "style": {
  8263. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8264. },
  8265. "name": "思维网格",
  8266. "forms": _formdiv,
  8267. "click": function () {
  8268. U.MD.D.I.openApplication(str, obj, info);
  8269. }
  8270. }
  8271. break;
  8272. case "courseDesign":
  8273. _iframe = $$("iframe", {
  8274. "webkitallowfullscreen": "",
  8275. "mozallowfullscreen": "",
  8276. "allowfullscreen": "",
  8277. "frameborder": "no",
  8278. "border": "0",
  8279. "scrolling ": "no",
  8280. "style": {
  8281. "cssText": "border:0; width:100%; height:100%;"
  8282. },
  8283. "src": "/course-design-vue"
  8284. })
  8285. _box.appendChild(_iframe);
  8286. _box.appendChild(_jie);
  8287. _formdiv = new U.UF.UI.form(
  8288. "项目设计-" + _username,
  8289. _box, {
  8290. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8291. "style": {
  8292. "width": "90%",
  8293. "height": "90%",
  8294. "overflow": 'hidden'
  8295. },
  8296. "onresize": function () { }
  8297. }, {
  8298. closecallback: function () { }
  8299. }, {
  8300. "style": {
  8301. "height": "36px"
  8302. }
  8303. }).form; //创建窗体
  8304. _taskbar = {
  8305. "id": str + _formdiv.id,
  8306. "style": {
  8307. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8308. },
  8309. "name": "项目设计",
  8310. "forms": _formdiv,
  8311. "click": function () {
  8312. U.MD.D.I.openApplication(str, obj, info);
  8313. }
  8314. }
  8315. break;
  8316. }
  8317. const script1 = document.createElement("script");
  8318. script1.type = "text/javascript";
  8319. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8320. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8321. const script2 = document.createElement("script");
  8322. script2.type = "text/javascript";
  8323. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8324. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8325. const script3 = document.createElement("script");
  8326. script3.type = "text/javascript";
  8327. script3.charset = "UTF-8";
  8328. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8329. const script4 = document.createElement("script");
  8330. script4.type = "text/javascript";
  8331. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8332. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8333. if (_iframe) {
  8334. if (str == 'doc') {
  8335. _iframe = _formdiv.querySelector('iframe')
  8336. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8337. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8338. _iframe.contentWindow.document.body.appendChild(script1);
  8339. _iframe.contentWindow.document.body.appendChild(script2);
  8340. // _iframe.contentWindow.document.body.appendChild(script3);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. })
  8343. if (onloadListener) {
  8344. _iframe.contentDocument.location.reload()
  8345. } else {
  8346. _iframe.contentDocument.location.reload()
  8347. }
  8348. } else if (str == 'courseDesign') {
  8349. U.UF.DL.iframeLoad(_iframe, function () {
  8350. // _iframe.contentWindow.U.MD.O.W.load();
  8351. // _iframe.contentWindow.document.body.appendChild(script1);
  8352. _iframe.contentWindow.document.body.appendChild(script2);
  8353. _iframe.contentWindow.document.body.appendChild(script4);
  8354. })
  8355. } else if (str == 'mind') {
  8356. _iframe = _formdiv.querySelector('iframe')
  8357. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8358. //
  8359. _iframe.contentWindow.document.body.appendChild(script1);
  8360. _iframe.contentWindow.document.body.appendChild(script2);
  8361. _iframe.contentWindow.document.body.appendChild(script4);
  8362. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8363. })
  8364. if (onloadListener) {
  8365. _iframe.contentDocument.location.reload()
  8366. } else {
  8367. _iframe.contentDocument.location.reload()
  8368. }
  8369. } else if (str == 'whiteboard') {
  8370. _iframe = _formdiv.querySelector('iframe')
  8371. let onloadListener = _iframe.onload = () => {
  8372. _iframe.contentWindow.document.body.appendChild(script1);
  8373. _iframe.contentWindow.document.body.appendChild(script2);
  8374. _iframe.contentWindow.document.body.appendChild(script4);
  8375. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8376. };
  8377. // if (onloadListener) {
  8378. // try {
  8379. // _iframe.src += "?cocorobo="+new Date().getTime()
  8380. // _iframe.contentWindow.document.location.reload()
  8381. // } catch (error) {
  8382. // }
  8383. // } else {
  8384. // _iframe.contentDocument.location.reload()
  8385. // }
  8386. } else {
  8387. _iframe.onload = () => {
  8388. _iframe.contentWindow.document.body.appendChild(script1);
  8389. _iframe.contentWindow.document.body.appendChild(script2);
  8390. // _iframe.contentWindow.document.body.appendChild(script3);
  8391. _iframe.contentWindow.document.body.appendChild(script4);
  8392. };
  8393. }
  8394. _jie.onclick = async () => {
  8395. let text = ''
  8396. if (aTool == 1) {
  8397. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8398. } else if (aTool == 6) {
  8399. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8400. } else if (aTool == 3) {
  8401. text = await U.MD.D.I.getEditorContent(_iframe);
  8402. }
  8403. _loading.style.display = 'flex'
  8404. console.log(_loading);
  8405. var _ajs = _iframe.contentWindow.document.createElement("script");
  8406. _ajs.type = "text/javascript";
  8407. _ajs.innerHTML =
  8408. // 'console.log(' + _loading + ');\n' +
  8409. 'var _js = document.createElement("script");\n' +
  8410. '_js.type="text/javascript";\n' +
  8411. '_js.charset="UTF-8";\n' +
  8412. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8413. "_js.onload = function(){\n" +
  8414. ' var a = document.getElementsByTagName("img")\n' +
  8415. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8416. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8417. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8418. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8419. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8420. "beforeUpload_shishi(file," +
  8421. "'" +
  8422. _userid +
  8423. "'" +
  8424. ", " +
  8425. "'" +
  8426. _cid +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. _stage +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. _task +
  8435. "'" +
  8436. ", " +
  8437. "'" +
  8438. _tool +
  8439. "'" +
  8440. ", " +
  8441. "'" +
  8442. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. aTool +
  8447. "'" +
  8448. ", " +
  8449. "`" +
  8450. text +
  8451. "`" +
  8452. ")\n" +
  8453. " });\n" +
  8454. "}\n" +
  8455. "document.head.appendChild(_js);\n";
  8456. _iframe.contentWindow.document.head.appendChild(_ajs);
  8457. }
  8458. }
  8459. }
  8460. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8461. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8462. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8463. _userid = student.userid, //登录用户id
  8464. _username = student.student //用户名字
  8465. let _iframe;
  8466. let _cid = cid,
  8467. _stage = stage,
  8468. _task = task,
  8469. _tool = tool;
  8470. var _jie = $$("div", {
  8471. "style": {
  8472. "position": "absolute",
  8473. "bottom": "50px",
  8474. "right": "50px",
  8475. "zIndex": "9999",
  8476. "backgroundColor": "#2268bc",
  8477. "color": "#fff",
  8478. "padding": "12px 20px",
  8479. "cursor": "pointer",
  8480. "borderRadius": "4px",
  8481. },
  8482. "innerHTML": "提交作业"
  8483. })
  8484. let aTool = ''
  8485. let _loading = document.createElement('div')
  8486. _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;"
  8487. // _loading.id = "";
  8488. let _lchild = document.createElement('div')
  8489. let _limg = document.createElement('img')
  8490. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8491. _limg.style = "width: 26px;margin-right: 10px;"
  8492. _lchild.appendChild(_limg)
  8493. let _lspan = document.createElement('span')
  8494. _lspan.innerHTML = "上传中..."
  8495. _lchild.appendChild(_lspan)
  8496. _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%);"
  8497. _loading.appendChild(_lchild)
  8498. var _box = $$('div', {
  8499. "style": {
  8500. "position": "relative",
  8501. "width": "100%",
  8502. "height": "100%",
  8503. },
  8504. })
  8505. _box.appendChild(_loading)
  8506. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8507. switch (str) {
  8508. case "whiteboard":
  8509. aTool = 1;
  8510. _iframe = $$("iframe", {
  8511. "frameborder": "no",
  8512. "border": "0",
  8513. "scrolling ": "no",
  8514. "style": {
  8515. "cssText": "border:0;width:100%;height:100%"
  8516. },
  8517. "src": "https://beta.iwb.cocorobo.cn/"
  8518. })
  8519. _box.appendChild(_iframe);
  8520. _box.appendChild(_jie);
  8521. _formdiv = new U.UF.UI.form(
  8522. "电子白板-" + _username,
  8523. _box, {
  8524. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8525. "style": {
  8526. "width": "90%",
  8527. "height": "90%",
  8528. "overflow": 'hidden'
  8529. },
  8530. "onresize": function () { }
  8531. }, {
  8532. closecallback: function () { }
  8533. }, {
  8534. "style": {
  8535. "height": "36px"
  8536. }
  8537. }).form; //创建窗体
  8538. _taskbar = {
  8539. "id": str + _formdiv.id,
  8540. "style": {
  8541. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8542. },
  8543. "name": "电子白板",
  8544. "forms": _formdiv,
  8545. "click": function () {
  8546. U.MD.D.I.openApplication(str, obj, info);
  8547. }
  8548. }
  8549. break;
  8550. case "mind":
  8551. aTool = 3;
  8552. _iframe = $$("iframe", {
  8553. "frameborder": "no",
  8554. "border": "0",
  8555. "scrolling ": "no",
  8556. "style": {
  8557. "cssText": "border:0;width:100%;height:100%"
  8558. },
  8559. "src": "/kityminder-editor/dist/index.html"
  8560. })
  8561. _box.appendChild(_iframe);
  8562. _box.appendChild(_jie);
  8563. _formdiv = new U.UF.UI.form(
  8564. "思维导图-" + _username,
  8565. _box, { //"/jsmind/example/demo.html"
  8566. "id": "mind" + cid + stage + task + tool + _userid,
  8567. "style": {
  8568. "width": "90%",
  8569. "height": "90%",
  8570. "overflow": 'hidden'
  8571. },
  8572. "onresize": function () { }
  8573. }, {
  8574. closecallback: function () { }
  8575. }, {
  8576. "style": {
  8577. "height": "36px"
  8578. }
  8579. }).form; //创建窗体
  8580. _taskbar = {
  8581. "id": str + _formdiv.id,
  8582. "style": {
  8583. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8584. },
  8585. "name": "思维导图",
  8586. "forms": _formdiv,
  8587. "click": function () {
  8588. U.MD.D.I.openApplication(str, obj, info);
  8589. }
  8590. }
  8591. break;
  8592. case "MindMap":
  8593. aTool = 3;
  8594. _iframe = $$("iframe", {
  8595. "frameborder": "no",
  8596. "border": "0",
  8597. "scrolling ": "no",
  8598. "style": {
  8599. "cssText": "border:0;width:100%;height:100%"
  8600. },
  8601. "src": "//cloud.cocorobo.cn/mind/"
  8602. })
  8603. _box.appendChild(_iframe);
  8604. _box.appendChild(_jie);
  8605. _formdiv = new U.UF.UI.form(
  8606. "思维导图-" + _username,
  8607. _box, { //"/jsmind/example/demo.html"
  8608. "id": "mind" + cid + stage + task + tool + _userid,
  8609. "style": {
  8610. "width": "90%",
  8611. "height": "90%",
  8612. "overflow": 'hidden'
  8613. },
  8614. "onresize": function () { }
  8615. }, {
  8616. closecallback: function () { }
  8617. }, {
  8618. "style": {
  8619. "height": "36px"
  8620. }
  8621. }).form; //创建窗体
  8622. _taskbar = {
  8623. "id": str + _formdiv.id,
  8624. "style": {
  8625. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8626. },
  8627. "name": "思维导图",
  8628. "forms": _formdiv,
  8629. "click": function () {
  8630. U.MD.D.I.openApplication(str, obj, info);
  8631. }
  8632. }
  8633. break;
  8634. case "doc":
  8635. aTool = 6;
  8636. _iframe = $$("iframe", {
  8637. "frameborder": "no",
  8638. "border": "0",
  8639. "scrolling ": "no",
  8640. "style": {
  8641. "cssText": "border:0;width:100%;height:100%"
  8642. },
  8643. "src": "/Office/Word/WordEditArea.htm"
  8644. })
  8645. _box.appendChild(_iframe);
  8646. _box.appendChild(_jie);
  8647. _formdiv = new U.UF.UI.form(
  8648. "协同文档-" + _username,
  8649. _box, {
  8650. "id": "doc" + cid + stage + task + tool + _userid,
  8651. "style": {
  8652. "width": "90%",
  8653. "height": "90%",
  8654. "overflow": 'hidden'
  8655. },
  8656. "onresize": function () { }
  8657. }, {
  8658. closecallback: function () { }
  8659. }, {
  8660. "style": {
  8661. "height": "36px"
  8662. }
  8663. }).form; //创建窗体
  8664. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8665. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8666. })
  8667. _taskbar = {
  8668. "id": str + _formdiv.id,
  8669. "style": {
  8670. "backgroundImage": "url(/img/icon/doc.png)"
  8671. },
  8672. "name": "协同文档",
  8673. "forms": _formdiv,
  8674. "click": function () {
  8675. U.MD.D.I.openApplication(str, obj, info);
  8676. }
  8677. }
  8678. break;
  8679. case "mindNetwork": //好友打开
  8680. aTool = 7;
  8681. _iframe = $$("iframe", {
  8682. "webkitallowfullscreen": "",
  8683. "mozallowfullscreen": "",
  8684. "allowfullscreen": "",
  8685. "frameborder": "no",
  8686. "border": "0",
  8687. "scrolling ": "no",
  8688. "style": {
  8689. "cssText": "border:0; width:100%; height:100%;"
  8690. },
  8691. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8692. })
  8693. _box.appendChild(_iframe);
  8694. _box.appendChild(_jie);
  8695. _formdiv = new U.UF.UI.form(
  8696. "思维网格-" + _username,
  8697. _box, {
  8698. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8699. "style": {
  8700. "width": "90%",
  8701. "height": "90%",
  8702. "overflow": 'hidden'
  8703. },
  8704. "onresize": function () { }
  8705. }, {
  8706. closecallback: function () { }
  8707. }, {
  8708. "style": {
  8709. "height": "36px"
  8710. }
  8711. }).form; //创建窗体
  8712. _taskbar = {
  8713. "id": str + _formdiv.id,
  8714. "style": {
  8715. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8716. },
  8717. "name": "思维网格",
  8718. "forms": _formdiv,
  8719. "click": function () {
  8720. U.MD.D.I.openApplication(str, obj, info);
  8721. }
  8722. }
  8723. break;
  8724. case "courseDesign":
  8725. _iframe = $$("iframe", {
  8726. "webkitallowfullscreen": "",
  8727. "mozallowfullscreen": "",
  8728. "allowfullscreen": "",
  8729. "frameborder": "no",
  8730. "border": "0",
  8731. "scrolling ": "no",
  8732. "style": {
  8733. "cssText": "border:0; width:100%; height:100%;"
  8734. },
  8735. "src": "/course-design-vue"
  8736. })
  8737. _box.appendChild(_iframe);
  8738. _box.appendChild(_jie);
  8739. _formdiv = new U.UF.UI.form(
  8740. "项目设计-" + _username,
  8741. _box, {
  8742. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8743. "style": {
  8744. "width": "90%",
  8745. "height": "90%",
  8746. "overflow": 'hidden'
  8747. },
  8748. "onresize": function () { }
  8749. }, {
  8750. closecallback: function () { }
  8751. }, {
  8752. "style": {
  8753. "height": "36px"
  8754. }
  8755. }).form; //创建窗体
  8756. _taskbar = {
  8757. "id": str + _formdiv.id,
  8758. "style": {
  8759. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8760. },
  8761. "name": "项目设计",
  8762. "forms": _formdiv,
  8763. "click": function () {
  8764. U.MD.D.I.openApplication(str, obj, info);
  8765. }
  8766. }
  8767. break;
  8768. }
  8769. const script1 = document.createElement("script");
  8770. script1.type = "text/javascript";
  8771. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8772. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8773. const script2 = document.createElement("script");
  8774. script2.type = "text/javascript";
  8775. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8776. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8777. const script3 = document.createElement("script");
  8778. script3.type = "text/javascript";
  8779. script3.charset = "UTF-8";
  8780. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8781. const script4 = document.createElement("script");
  8782. script4.type = "text/javascript";
  8783. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8784. script4.src = window.origin + "/js/Common/jietu2E.js";
  8785. if (_iframe) {
  8786. if (str == 'doc') {
  8787. _iframe = _formdiv.querySelector('iframe')
  8788. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8789. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8790. _iframe.contentWindow.document.body.appendChild(script1);
  8791. _iframe.contentWindow.document.body.appendChild(script2);
  8792. // _iframe.contentWindow.document.body.appendChild(script3);
  8793. _iframe.contentWindow.document.body.appendChild(script4);
  8794. })
  8795. if (onloadListener) {
  8796. _iframe.contentDocument.location.reload()
  8797. } else {
  8798. _iframe.contentDocument.location.reload()
  8799. }
  8800. } else if (str == 'courseDesign') {
  8801. U.UF.DL.iframeLoad(_iframe, function () {
  8802. // _iframe.contentWindow.U.MD.O.W.load();
  8803. // _iframe.contentWindow.document.body.appendChild(script1);
  8804. _iframe.contentWindow.document.body.appendChild(script2);
  8805. _iframe.contentWindow.document.body.appendChild(script4);
  8806. })
  8807. } else if (str == 'mind') {
  8808. _iframe = _formdiv.querySelector('iframe')
  8809. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8810. //
  8811. _iframe.contentWindow.document.body.appendChild(script1);
  8812. _iframe.contentWindow.document.body.appendChild(script2);
  8813. _iframe.contentWindow.document.body.appendChild(script4);
  8814. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8815. })
  8816. if (onloadListener) {
  8817. _iframe.contentDocument.location.reload()
  8818. } else {
  8819. _iframe.contentDocument.location.reload()
  8820. }
  8821. } else if (str == 'whiteboard') {
  8822. _iframe = _formdiv.querySelector('iframe')
  8823. let onloadListener = _iframe.onload = () => {
  8824. _iframe.contentWindow.document.body.appendChild(script1);
  8825. _iframe.contentWindow.document.body.appendChild(script2);
  8826. _iframe.contentWindow.document.body.appendChild(script4);
  8827. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8828. };
  8829. // if (onloadListener) {
  8830. // try {
  8831. // _iframe.src += "?cocorobo="+new Date().getTime()
  8832. // _iframe.contentWindow.document.location.reload()
  8833. // } catch (error) {
  8834. // }
  8835. // } else {
  8836. // _iframe.contentDocument.location.reload()
  8837. // }
  8838. } else {
  8839. _iframe.onload = () => {
  8840. _iframe.contentWindow.document.body.appendChild(script1);
  8841. _iframe.contentWindow.document.body.appendChild(script2);
  8842. // _iframe.contentWindow.document.body.appendChild(script3);
  8843. _iframe.contentWindow.document.body.appendChild(script4);
  8844. };
  8845. }
  8846. _jie.onclick = async () => {
  8847. let text = ''
  8848. if (aTool == 1) {
  8849. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8850. } else if (aTool == 6) {
  8851. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8852. } else if (aTool == 3) {
  8853. text = await U.MD.D.I.getEditorContent(_iframe);
  8854. }
  8855. _loading.style.display = 'flex'
  8856. console.log(_loading);
  8857. var _ajs = _iframe.contentWindow.document.createElement("script");
  8858. _ajs.type = "text/javascript";
  8859. _ajs.innerHTML =
  8860. // 'console.log(' + _loading + ');\n' +
  8861. 'var _js = document.createElement("script");\n' +
  8862. '_js.type="text/javascript";\n' +
  8863. '_js.charset="UTF-8";\n' +
  8864. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8865. "_js.onload = function(){\n" +
  8866. ' var a = document.getElementsByTagName("img")\n' +
  8867. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8868. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8869. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8870. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8871. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8872. "beforeUpload_shishi(file," +
  8873. "'" +
  8874. _userid +
  8875. "'" +
  8876. ", " +
  8877. "'" +
  8878. _cid +
  8879. "'" +
  8880. ", " +
  8881. "'" +
  8882. _stage +
  8883. "'" +
  8884. ", " +
  8885. "'" +
  8886. _task +
  8887. "'" +
  8888. ", " +
  8889. "'" +
  8890. _tool +
  8891. "'" +
  8892. ", " +
  8893. "'" +
  8894. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8895. "'" +
  8896. ", " +
  8897. "'" +
  8898. aTool +
  8899. "'" +
  8900. ", " +
  8901. "`" +
  8902. text +
  8903. "`" +
  8904. ")\n" +
  8905. " });\n" +
  8906. "}\n" +
  8907. "document.head.appendChild(_js);\n";
  8908. _iframe.contentWindow.document.head.appendChild(_ajs);
  8909. }
  8910. }
  8911. }
  8912. U.MD.D.I.getEditorContent = function (iframe) {
  8913. return new Promise((resolve, reject) => {
  8914. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8915. console.log(content);
  8916. resolve(content)
  8917. });
  8918. });
  8919. }
  8920. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8921. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8922. // if (res.value[0].length > 0) {
  8923. // // resolve(res.value[0][0].text);
  8924. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8925. // $(fileInput).val('');
  8926. // });
  8927. // }
  8928. // }, [], { "type": "GET", "withCredentials": true });
  8929. var xmlhttp;
  8930. var Mac, Sn, DeviceId
  8931. if (window.XMLHttpRequest) {
  8932. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8933. xmlhttp = new XMLHttpRequest();
  8934. } else {
  8935. // IE6, IE5 浏览器执行代码
  8936. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8937. }
  8938. xmlhttp.onreadystatechange = function () {
  8939. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8940. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8941. // resolve(res.value[0][0].text);
  8942. if (type == '2') {
  8943. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8944. } else if (type == '3') {
  8945. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8946. }
  8947. } else {
  8948. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8949. }
  8950. }
  8951. }
  8952. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8953. xmlhttp.send();
  8954. }
  8955. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8956. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8957. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8958. _userinfo = US.userInfo, //登录用户信息
  8959. _userid = US.userInfo.userid //登录用户id
  8960. let _iframe;
  8961. let _cid = cid,
  8962. _stage = stage,
  8963. _task = task,
  8964. _tool = tool;
  8965. var _jie = $$("div", {
  8966. "style": {
  8967. "position": "absolute",
  8968. "bottom": "50px",
  8969. "right": "50px",
  8970. "zIndex": "9999",
  8971. "backgroundColor": "#2268bc",
  8972. "color": "#fff",
  8973. "padding": "12px 20px",
  8974. "cursor": "pointer",
  8975. "borderRadius": "4px",
  8976. },
  8977. "innerHTML": "确认并提交"
  8978. })
  8979. let aTool = ''
  8980. let _loading = document.createElement('div')
  8981. _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;"
  8982. // _loading.id = "";
  8983. let _lchild = document.createElement('div')
  8984. let _limg = document.createElement('img')
  8985. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8986. _limg.style = "width: 26px;margin-right: 10px;"
  8987. _lchild.appendChild(_limg)
  8988. let _lspan = document.createElement('span')
  8989. _lspan.innerHTML = "上传中..."
  8990. _lchild.appendChild(_lspan)
  8991. _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%);"
  8992. _loading.appendChild(_lchild)
  8993. var _box = $$('div', {
  8994. "style": {
  8995. "position": "relative",
  8996. "width": "100%",
  8997. "height": "100%",
  8998. },
  8999. })
  9000. _box.appendChild(_loading)
  9001. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9002. switch (str) {
  9003. case "whiteboard":
  9004. aTool = 1;
  9005. _iframe = $$("iframe", {
  9006. "frameborder": "no",
  9007. "border": "0",
  9008. "scrolling ": "no",
  9009. "style": {
  9010. "cssText": "border:0;width:100%;height:100%"
  9011. },
  9012. "src": "https://beta.iwb.cocorobo.cn/"
  9013. })
  9014. _box.appendChild(_iframe);
  9015. _box.appendChild(_jie);
  9016. _formdiv = new U.UF.UI.form(
  9017. "电子白板",
  9018. _box, {
  9019. "id": "whiteboards" + cid + stage + task + tool,
  9020. "style": {
  9021. "width": "90%",
  9022. "height": "90%",
  9023. "overflow": 'hidden'
  9024. },
  9025. "onresize": function () { }
  9026. }, {
  9027. closecallback: function () { }
  9028. }, {
  9029. "style": {
  9030. "height": "36px"
  9031. }
  9032. }).form; //创建窗体
  9033. _taskbar = {
  9034. "id": str + _formdiv.id,
  9035. "style": {
  9036. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9037. },
  9038. "name": "电子白板",
  9039. "forms": _formdiv,
  9040. "click": function () {
  9041. U.MD.D.I.openApplication(str, obj, info);
  9042. }
  9043. }
  9044. break;
  9045. case "mind":
  9046. aTool = 3;
  9047. _iframe = $$("iframe", {
  9048. "frameborder": "no",
  9049. "border": "0",
  9050. "scrolling ": "no",
  9051. "style": {
  9052. "cssText": "border:0;width:100%;height:100%"
  9053. },
  9054. "src": "/kityminder-editor/dist/index.html"
  9055. });
  9056. _box.appendChild(_iframe);
  9057. _box.appendChild(_jie);
  9058. _formdiv = new U.UF.UI.form(
  9059. "思维导图",
  9060. _box, { //"/jsmind/example/demo.html"
  9061. "id": "minds" + cid + stage + task + tool,
  9062. "style": {
  9063. "width": "90%",
  9064. "height": "90%",
  9065. "overflow": 'hidden'
  9066. },
  9067. "onresize": function () { }
  9068. }, {
  9069. closecallback: function () { }
  9070. }, {
  9071. "style": {
  9072. "height": "36px"
  9073. }
  9074. }).form; //创建窗体
  9075. _taskbar = {
  9076. "id": str + _formdiv.id,
  9077. "style": {
  9078. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9079. },
  9080. "name": "思维导图",
  9081. "forms": _formdiv,
  9082. "click": function () {
  9083. U.MD.D.I.openApplication(str, obj, info);
  9084. }
  9085. }
  9086. break;
  9087. case "doc":
  9088. aTool = 6;
  9089. _iframe = $$("iframe", {
  9090. "frameborder": "no",
  9091. "border": "0",
  9092. "scrolling ": "no",
  9093. "style": {
  9094. "cssText": "border:0;width:100%;height:100%"
  9095. },
  9096. "src": "/Office/Word/WordEditArea.htm"
  9097. })
  9098. _box.appendChild(_iframe);
  9099. _box.appendChild(_jie);
  9100. _formdiv = new U.UF.UI.form(
  9101. "协同文档",
  9102. _box, {
  9103. "id": "docs" + cid + stage + task + tool,
  9104. "style": {
  9105. "width": "90%",
  9106. "height": "90%",
  9107. "overflow": 'hidden'
  9108. },
  9109. "onresize": function () { }
  9110. }, {
  9111. closecallback: function () { }
  9112. }, {
  9113. "style": {
  9114. "height": "36px"
  9115. }
  9116. }).form; //创建窗体
  9117. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9118. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9119. })
  9120. _taskbar = {
  9121. "id": str + _formdiv.id,
  9122. "style": {
  9123. "backgroundImage": "url(/img/icon/doc.png)"
  9124. },
  9125. "name": "协同文档",
  9126. "forms": _formdiv,
  9127. "click": function () {
  9128. U.MD.D.I.openApplication(str, obj, info);
  9129. }
  9130. }
  9131. break;
  9132. }
  9133. const script1 = document.createElement("script");
  9134. script1.type = "text/javascript";
  9135. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9136. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9137. const script2 = document.createElement("script");
  9138. script2.type = "text/javascript";
  9139. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9140. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9141. const script3 = document.createElement("script");
  9142. script3.type = "text/javascript";
  9143. script3.charset = "UTF-8";
  9144. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9145. const script4 = document.createElement("script");
  9146. script4.type = "text/javascript";
  9147. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9148. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9149. if (_iframe) {
  9150. if (str == 'doc') {
  9151. _iframe = _formdiv.querySelector('iframe')
  9152. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9153. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9154. _iframe.contentWindow.document.body.appendChild(script1);
  9155. _iframe.contentWindow.document.body.appendChild(script2);
  9156. // _iframe.contentWindow.document.body.appendChild(script3);
  9157. _iframe.contentWindow.document.body.appendChild(script4);
  9158. })
  9159. if (onloadListener) {
  9160. _iframe.contentDocument.location.reload()
  9161. } else {
  9162. _iframe.contentDocument.location.reload()
  9163. }
  9164. } else if (str == 'mind') {
  9165. _iframe = _formdiv.querySelector('iframe')
  9166. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9167. _iframe.contentWindow.document.body.appendChild(script1);
  9168. _iframe.contentWindow.document.body.appendChild(script2);
  9169. _iframe.contentWindow.document.body.appendChild(script4);
  9170. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9171. })
  9172. if (onloadListener) {
  9173. _iframe.contentDocument.location.reload()
  9174. } else {
  9175. _iframe.contentDocument.location.reload()
  9176. }
  9177. } else {
  9178. _iframe.onload = () => {
  9179. _iframe.contentWindow.document.body.appendChild(script1);
  9180. _iframe.contentWindow.document.body.appendChild(script2);
  9181. // _iframe.contentWindow.document.body.appendChild(script3);
  9182. _iframe.contentWindow.document.body.appendChild(script4);
  9183. };
  9184. }
  9185. _jie.onclick = async () => {
  9186. let text = ''
  9187. if (aTool == 6) {
  9188. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9189. } else if (aTool == 3) {
  9190. text = await U.MD.D.I.getEditorContent(_iframe);
  9191. }
  9192. _loading.style.display = 'flex'
  9193. console.log(_loading);
  9194. var _ajs = _iframe.contentWindow.document.createElement("script");
  9195. _ajs.type = "text/javascript";
  9196. _ajs.innerHTML =
  9197. // 'console.log(' + _loading + ');\n' +
  9198. 'var _js = document.createElement("script");\n' +
  9199. '_js.type="text/javascript";\n' +
  9200. '_js.charset="UTF-8";\n' +
  9201. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9202. "_js.onload = function(){\n" +
  9203. ' var a = document.getElementsByTagName("img")\n' +
  9204. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9205. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9206. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9207. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9208. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9209. "beforeUpload_shishi(file," +
  9210. "'" +
  9211. _userid +
  9212. "'" +
  9213. ", " +
  9214. "'" +
  9215. _cid +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. _stage +
  9220. "'" +
  9221. ", " +
  9222. "'" +
  9223. _task +
  9224. "'" +
  9225. ", " +
  9226. "'" +
  9227. _tool +
  9228. "'" +
  9229. ", " +
  9230. "'" +
  9231. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9232. "'" +
  9233. ", " +
  9234. "'" +
  9235. aTool +
  9236. "'" +
  9237. ", " +
  9238. "`" +
  9239. text +
  9240. "`" +
  9241. ")\n" +
  9242. " });\n" +
  9243. "}\n" +
  9244. "document.head.appendChild(_js);\n";
  9245. _iframe.contentWindow.document.head.appendChild(_ajs);
  9246. }
  9247. }
  9248. //U.MD.D.I.openClick(str);
  9249. //如果有任务栏信息
  9250. // if (_taskbar) {
  9251. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9252. // }
  9253. }
  9254. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9255. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9256. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9257. _userinfo = US.userInfo, //登录用户信息
  9258. _userid = US.userInfo.userid //登录用户id
  9259. let _iframe;
  9260. let _cid = cid,
  9261. _stage = stage,
  9262. _task = task,
  9263. _tool = tool;
  9264. var _jie = $$("div", {
  9265. "style": {
  9266. "position": "absolute",
  9267. "bottom": "50px",
  9268. "right": "50px",
  9269. "zIndex": "9999",
  9270. "backgroundColor": "#2268bc",
  9271. "color": "#fff",
  9272. "padding": "12px 20px",
  9273. "cursor": "pointer",
  9274. "borderRadius": "4px",
  9275. },
  9276. "innerHTML": "确认并提交"
  9277. })
  9278. let aTool = ''
  9279. let _loading = document.createElement('div')
  9280. _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;"
  9281. // _loading.id = "";
  9282. let _lchild = document.createElement('div')
  9283. let _limg = document.createElement('img')
  9284. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9285. _limg.style = "width: 26px;margin-right: 10px;"
  9286. _lchild.appendChild(_limg)
  9287. let _lspan = document.createElement('span')
  9288. _lspan.innerHTML = "上传中..."
  9289. _lchild.appendChild(_lspan)
  9290. _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%);"
  9291. _loading.appendChild(_lchild)
  9292. var _box = $$('div', {
  9293. "style": {
  9294. "position": "relative",
  9295. "width": "100%",
  9296. "height": "100%",
  9297. },
  9298. })
  9299. _box.appendChild(_loading)
  9300. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9301. switch (str) {
  9302. case "whiteboard":
  9303. aTool = 1;
  9304. _iframe = $$("iframe", {
  9305. "frameborder": "no",
  9306. "border": "0",
  9307. "scrolling ": "no",
  9308. "style": {
  9309. "cssText": "border:0;width:100%;height:100%"
  9310. },
  9311. "src": "https://beta.iwb.cocorobo.cn/"
  9312. })
  9313. _box.appendChild(_iframe);
  9314. _box.appendChild(_jie);
  9315. _formdiv = new U.UF.UI.form(
  9316. "电子白板",
  9317. _box, {
  9318. "id": "whiteboards" + cid + stage + task + tool,
  9319. "style": {
  9320. "width": "90%",
  9321. "height": "90%",
  9322. "overflow": 'hidden'
  9323. },
  9324. "onresize": function () { }
  9325. }, {
  9326. closecallback: function () { }
  9327. }, {
  9328. "style": {
  9329. "height": "36px"
  9330. }
  9331. }).form; //创建窗体
  9332. _taskbar = {
  9333. "id": str + _formdiv.id,
  9334. "style": {
  9335. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9336. },
  9337. "name": "电子白板",
  9338. "forms": _formdiv,
  9339. "click": function () {
  9340. U.MD.D.I.openApplication(str, obj, info);
  9341. }
  9342. }
  9343. break;
  9344. case "mind":
  9345. aTool = 3;
  9346. _iframe = $$("iframe", {
  9347. "frameborder": "no",
  9348. "border": "0",
  9349. "scrolling ": "no",
  9350. "style": {
  9351. "cssText": "border:0;width:100%;height:100%"
  9352. },
  9353. "src": "/kityminder-editor/dist/index.html"
  9354. });
  9355. _box.appendChild(_iframe);
  9356. _box.appendChild(_jie);
  9357. _formdiv = new U.UF.UI.form(
  9358. "思维导图",
  9359. _box, { //"/jsmind/example/demo.html"
  9360. "id": "minds" + cid + stage + task + tool,
  9361. "style": {
  9362. "width": "90%",
  9363. "height": "90%",
  9364. "overflow": 'hidden'
  9365. },
  9366. "onresize": function () { }
  9367. }, {
  9368. closecallback: function () { }
  9369. }, {
  9370. "style": {
  9371. "height": "36px"
  9372. }
  9373. }).form; //创建窗体
  9374. _taskbar = {
  9375. "id": str + _formdiv.id,
  9376. "style": {
  9377. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9378. },
  9379. "name": "思维导图",
  9380. "forms": _formdiv,
  9381. "click": function () {
  9382. U.MD.D.I.openApplication(str, obj, info);
  9383. }
  9384. }
  9385. break;
  9386. case "doc":
  9387. aTool = 6;
  9388. _iframe = $$("iframe", {
  9389. "frameborder": "no",
  9390. "border": "0",
  9391. "scrolling ": "no",
  9392. "style": {
  9393. "cssText": "border:0;width:100%;height:100%"
  9394. },
  9395. "src": "/Office/Word/WordEditArea.htm"
  9396. })
  9397. _box.appendChild(_iframe);
  9398. _box.appendChild(_jie);
  9399. _formdiv = new U.UF.UI.form(
  9400. "协同文档",
  9401. _box, {
  9402. "id": "docs" + cid + stage + task + tool,
  9403. "style": {
  9404. "width": "90%",
  9405. "height": "90%",
  9406. "overflow": 'hidden'
  9407. },
  9408. "onresize": function () { }
  9409. }, {
  9410. closecallback: function () { }
  9411. }, {
  9412. "style": {
  9413. "height": "36px"
  9414. }
  9415. }).form; //创建窗体
  9416. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9417. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9418. })
  9419. _taskbar = {
  9420. "id": str + _formdiv.id,
  9421. "style": {
  9422. "backgroundImage": "url(/img/icon/doc.png)"
  9423. },
  9424. "name": "协同文档",
  9425. "forms": _formdiv,
  9426. "click": function () {
  9427. U.MD.D.I.openApplication(str, obj, info);
  9428. }
  9429. }
  9430. break;
  9431. }
  9432. const script1 = document.createElement("script");
  9433. script1.type = "text/javascript";
  9434. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9435. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9436. const script2 = document.createElement("script");
  9437. script2.type = "text/javascript";
  9438. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9439. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9440. const script3 = document.createElement("script");
  9441. script3.type = "text/javascript";
  9442. script3.charset = "UTF-8";
  9443. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9444. const script4 = document.createElement("script");
  9445. script4.type = "text/javascript";
  9446. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9447. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9448. if (_iframe) {
  9449. if (str == 'doc') {
  9450. _iframe = _formdiv.querySelector('iframe')
  9451. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9452. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9453. _iframe.contentWindow.document.body.appendChild(script1);
  9454. _iframe.contentWindow.document.body.appendChild(script2);
  9455. // _iframe.contentWindow.document.body.appendChild(script3);
  9456. _iframe.contentWindow.document.body.appendChild(script4);
  9457. })
  9458. if (onloadListener) {
  9459. _iframe.contentDocument.location.reload()
  9460. } else {
  9461. _iframe.contentDocument.location.reload()
  9462. }
  9463. } else if (str == 'mind') {
  9464. _iframe = _formdiv.querySelector('iframe')
  9465. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9466. _iframe.contentWindow.document.body.appendChild(script1);
  9467. _iframe.contentWindow.document.body.appendChild(script2);
  9468. _iframe.contentWindow.document.body.appendChild(script4);
  9469. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9470. })
  9471. if (onloadListener) {
  9472. _iframe.contentDocument.location.reload()
  9473. } else {
  9474. _iframe.contentDocument.location.reload()
  9475. }
  9476. } else {
  9477. _iframe.onload = () => {
  9478. _iframe.contentWindow.document.body.appendChild(script1);
  9479. _iframe.contentWindow.document.body.appendChild(script2);
  9480. // _iframe.contentWindow.document.body.appendChild(script3);
  9481. _iframe.contentWindow.document.body.appendChild(script4);
  9482. };
  9483. }
  9484. _jie.onclick = async () => {
  9485. let text = ''
  9486. if (aTool == 6) {
  9487. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9488. } else if (aTool == 3) {
  9489. text = await U.MD.D.I.getEditorContent(_iframe);
  9490. }
  9491. _loading.style.display = 'flex'
  9492. console.log(_loading);
  9493. var _ajs = _iframe.contentWindow.document.createElement("script");
  9494. _ajs.type = "text/javascript";
  9495. _ajs.innerHTML =
  9496. // 'console.log(' + _loading + ');\n' +
  9497. 'var _js = document.createElement("script");\n' +
  9498. '_js.type="text/javascript";\n' +
  9499. '_js.charset="UTF-8";\n' +
  9500. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9501. "_js.onload = function(){\n" +
  9502. ' var a = document.getElementsByTagName("img")\n' +
  9503. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9504. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9505. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9506. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9507. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9508. "beforeUpload_shishi(file," +
  9509. "'" +
  9510. _userid +
  9511. "'" +
  9512. ", " +
  9513. "'" +
  9514. _cid +
  9515. "'" +
  9516. ", " +
  9517. "'" +
  9518. _stage +
  9519. "'" +
  9520. ", " +
  9521. "'" +
  9522. _task +
  9523. "'" +
  9524. ", " +
  9525. "'" +
  9526. _tool +
  9527. "'" +
  9528. ", " +
  9529. "'" +
  9530. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9531. "'" +
  9532. ", " +
  9533. "'" +
  9534. aTool +
  9535. "'" +
  9536. ", " +
  9537. "`" +
  9538. text +
  9539. "`" +
  9540. ")\n" +
  9541. " });\n" +
  9542. "}\n" +
  9543. "document.head.appendChild(_js);\n";
  9544. _iframe.contentWindow.document.head.appendChild(_ajs);
  9545. }
  9546. }
  9547. //U.MD.D.I.openClick(str);
  9548. //如果有任务栏信息
  9549. // if (_taskbar) {
  9550. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9551. // }
  9552. }
  9553. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9554. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9555. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9556. _userinfo = US.userInfo, //登录用户信息
  9557. _userid = US.userInfo.userid //登录用户id
  9558. let _iframe;
  9559. let _cid = cid,
  9560. _stage = stage,
  9561. _task = task,
  9562. _tool = tool;
  9563. var _jie = $$("div", {
  9564. "style": {
  9565. "position": "absolute",
  9566. "bottom": "50px",
  9567. "right": "50px",
  9568. "zIndex": "9999",
  9569. "backgroundColor": "#2268bc",
  9570. "color": "#fff",
  9571. "padding": "12px 20px",
  9572. "cursor": "pointer",
  9573. "borderRadius": "4px",
  9574. },
  9575. "innerHTML": "上传模板"
  9576. })
  9577. let aTool = ''
  9578. let _loading = document.createElement('div')
  9579. _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;"
  9580. // _loading.id = "";
  9581. let _lchild = document.createElement('div')
  9582. let _limg = document.createElement('img')
  9583. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9584. _limg.style = "width: 26px;margin-right: 10px;"
  9585. _lchild.appendChild(_limg)
  9586. let _lspan = document.createElement('span')
  9587. _lspan.innerHTML = "上传中..."
  9588. _lchild.appendChild(_lspan)
  9589. _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%);"
  9590. _loading.appendChild(_lchild)
  9591. var _box = $$('div', {
  9592. "style": {
  9593. "position": "relative",
  9594. "width": "100%",
  9595. "height": "100%",
  9596. },
  9597. })
  9598. _box.appendChild(_loading)
  9599. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9600. switch (str) {
  9601. case "whiteboard":
  9602. aTool = 1;
  9603. _iframe = $$("iframe", {
  9604. "frameborder": "no",
  9605. "border": "0",
  9606. "scrolling ": "no",
  9607. "style": {
  9608. "cssText": "border:0;width:100%;height:100%"
  9609. },
  9610. "src": "https://beta.iwb.cocorobo.cn/"
  9611. })
  9612. _box.appendChild(_iframe);
  9613. _box.appendChild(_jie);
  9614. _formdiv = new U.UF.UI.form(
  9615. "电子白板",
  9616. _box, {
  9617. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9618. "style": {
  9619. "width": "90%",
  9620. "height": "90%",
  9621. "overflow": 'hidden'
  9622. },
  9623. "onresize": function () { }
  9624. }, {
  9625. closecallback: function () { }
  9626. }, {
  9627. "style": {
  9628. "height": "36px"
  9629. }
  9630. }).form; //创建窗体
  9631. _taskbar = {
  9632. "id": str + _formdiv.id,
  9633. "style": {
  9634. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9635. },
  9636. "name": "电子白板",
  9637. "forms": _formdiv,
  9638. "click": function () {
  9639. U.MD.D.I.openApplication(str, obj, info);
  9640. }
  9641. }
  9642. break;
  9643. case "mind":
  9644. aTool = 3;
  9645. _iframe = $$("iframe", {
  9646. "frameborder": "no",
  9647. "border": "0",
  9648. "scrolling ": "no",
  9649. "style": {
  9650. "cssText": "border:0;width:100%;height:100%"
  9651. },
  9652. "src": "/kityminder-editor/dist/index.html"
  9653. });
  9654. _box.appendChild(_iframe);
  9655. _box.appendChild(_jie);
  9656. _formdiv = new U.UF.UI.form(
  9657. "思维导图",
  9658. _box, { //"/jsmind/example/demo.html"
  9659. "id": "minds_Yu" + cid + stage + task + tool,
  9660. "style": {
  9661. "width": "90%",
  9662. "height": "90%",
  9663. "overflow": 'hidden'
  9664. },
  9665. "onresize": function () { }
  9666. }, {
  9667. closecallback: function () { }
  9668. }, {
  9669. "style": {
  9670. "height": "36px"
  9671. }
  9672. }).form; //创建窗体
  9673. _taskbar = {
  9674. "id": str + _formdiv.id,
  9675. "style": {
  9676. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9677. },
  9678. "name": "思维导图",
  9679. "forms": _formdiv,
  9680. "click": function () {
  9681. U.MD.D.I.openApplication(str, obj, info);
  9682. }
  9683. }
  9684. break;
  9685. case "doc":
  9686. aTool = 6;
  9687. _iframe = $$("iframe", {
  9688. "frameborder": "no",
  9689. "border": "0",
  9690. "scrolling ": "no",
  9691. "style": {
  9692. "cssText": "border:0;width:100%;height:100%"
  9693. },
  9694. "src": "/Office/Word/WordEditArea.htm"
  9695. })
  9696. _box.appendChild(_iframe);
  9697. _box.appendChild(_jie);
  9698. _formdiv = new U.UF.UI.form(
  9699. "协同文档",
  9700. _box, {
  9701. "id": "docs_Yu" + cid + stage + task + tool,
  9702. "style": {
  9703. "width": "90%",
  9704. "height": "90%",
  9705. "overflow": 'hidden'
  9706. },
  9707. "onresize": function () { }
  9708. }, {
  9709. closecallback: function () { }
  9710. }, {
  9711. "style": {
  9712. "height": "36px"
  9713. }
  9714. }).form; //创建窗体
  9715. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9716. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9717. })
  9718. _taskbar = {
  9719. "id": str + _formdiv.id,
  9720. "style": {
  9721. "backgroundImage": "url(/img/icon/doc.png)"
  9722. },
  9723. "name": "协同文档",
  9724. "forms": _formdiv,
  9725. "click": function () {
  9726. U.MD.D.I.openApplication(str, obj, info);
  9727. }
  9728. }
  9729. break;
  9730. case "CocoPi":
  9731. aTool = 57;
  9732. _iframe = $$("iframe", {
  9733. "allowpaymentrequest": "allowpaymentrequest",
  9734. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9735. "webkitallowfullscreen": "",
  9736. "mozallowfullscreen": "",
  9737. "frameborder": "no",
  9738. "border": "0",
  9739. "scrolling ": "no",
  9740. "style": {
  9741. "cssText": "border:0;width:100%;height:100%"
  9742. },
  9743. "src": "https://pi.cocorobo.cn/"
  9744. })
  9745. _box.appendChild(_iframe);
  9746. _box.appendChild(_jie);
  9747. _formdiv = new U.UF.UI.form(
  9748. "CocoPi",
  9749. _box, {
  9750. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9751. "style": {
  9752. "width": "90%",
  9753. "height": "90%",
  9754. "overflow": 'hidden'
  9755. },
  9756. "onresize": function () { }
  9757. }, {
  9758. closecallback: function () { }
  9759. }, {
  9760. "style": {
  9761. "height": "36px"
  9762. }
  9763. }).form; //创建窗体
  9764. _taskbar = {
  9765. "id": str + _formdiv.id,
  9766. "style": {
  9767. "backgroundImage": "url(/img/icon/cocopi.png)"
  9768. },
  9769. "name": "CocoPi",
  9770. "forms": _formdiv,
  9771. "click": function () {
  9772. U.MD.D.I.openApplication(str, obj, info);
  9773. }
  9774. }
  9775. break;
  9776. }
  9777. if (_iframe) {
  9778. if (str == 'doc') {
  9779. _iframe = _formdiv.querySelector('iframe')
  9780. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9781. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9782. })
  9783. if (onloadListener) {
  9784. _iframe.contentDocument.location.reload()
  9785. } else {
  9786. _iframe.contentDocument.location.reload()
  9787. }
  9788. } else if (str == 'mind') {
  9789. _iframe = _formdiv.querySelector('iframe')
  9790. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9791. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9792. })
  9793. if (onloadListener) {
  9794. _iframe.contentDocument.location.reload()
  9795. } else {
  9796. _iframe.contentDocument.location.reload()
  9797. }
  9798. } else if (str == 'whiteboard') {
  9799. _iframe = _formdiv.querySelector('iframe')
  9800. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9801. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9802. })
  9803. // if (onloadListener) {
  9804. // try {
  9805. // _iframe.src += "?cocorobo="+new Date().getTime()
  9806. // _iframe.contentWindow.document.location.reload()
  9807. // } catch (error) {
  9808. // }
  9809. // } else {
  9810. // _iframe.contentDocument.location.reload()
  9811. // }
  9812. } else if (str == 'CocoPi') {
  9813. _iframe = _formdiv.querySelector('iframe')
  9814. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9815. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9816. })
  9817. if (onloadListener) {
  9818. _iframe.contentDocument.location.reload()
  9819. } else {
  9820. _iframe.contentDocument.location.reload()
  9821. }
  9822. } else {
  9823. _iframe.onload = () => { };
  9824. }
  9825. _jie.onclick = async () => {
  9826. let text = ''
  9827. let type = '2'
  9828. if (aTool == 1) {
  9829. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9830. type = '3'
  9831. } else if (aTool == 6) {
  9832. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9833. type = '1'
  9834. } else if (aTool == 3) {
  9835. text = await U.MD.D.I.getEditorContent(_iframe);
  9836. type = '2'
  9837. } else if (aTool == 57) {
  9838. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9839. type = '4'
  9840. }
  9841. _loading.style.display = 'flex'
  9842. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9843. }
  9844. }
  9845. //U.MD.D.I.openClick(str);
  9846. //如果有任务栏信息
  9847. // if (_taskbar) {
  9848. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9849. // }
  9850. }
  9851. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9852. var xmlhttp;
  9853. var Mac, Sn, DeviceId
  9854. if (window.XMLHttpRequest) {
  9855. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9856. xmlhttp = new XMLHttpRequest();
  9857. } else {
  9858. // IE6, IE5 浏览器执行代码
  9859. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9860. }
  9861. xmlhttp.onreadystatechange = function () {
  9862. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9863. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9864. // resolve(res.value[0][0].text);
  9865. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9866. }
  9867. }
  9868. }
  9869. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9870. xmlhttp.send();
  9871. }
  9872. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9873. var xmlhttp;
  9874. var Mac, Sn, DeviceId
  9875. if (window.XMLHttpRequest) {
  9876. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9877. xmlhttp = new XMLHttpRequest();
  9878. } else {
  9879. // IE6, IE5 浏览器执行代码
  9880. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9881. }
  9882. xmlhttp.onreadystatechange = function () {
  9883. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9884. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9885. // resolve(res.value[0][0].text);
  9886. if (type == '2') {
  9887. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9888. } else if (type == '3') {
  9889. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9890. } else if (type == '4') {
  9891. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9892. }
  9893. } else {
  9894. if (type == '2') {
  9895. iframe.contentWindow.editor.minder.importData('json', '')
  9896. } else if (type == '3') {
  9897. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9898. } else if (type == '4') {
  9899. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9900. }
  9901. }
  9902. }
  9903. }
  9904. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9905. xmlhttp.send();
  9906. }
  9907. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9908. var xmlhttp;
  9909. var Mac, Sn, DeviceId
  9910. if (window.XMLHttpRequest) {
  9911. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9912. xmlhttp = new XMLHttpRequest();
  9913. } else {
  9914. // IE6, IE5 浏览器执行代码
  9915. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9916. }
  9917. xmlhttp.onreadystatechange = function () {
  9918. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9919. if (xmlhttp.response) {
  9920. // resolve(res.value[0][0].text);
  9921. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9922. // $(fileInput).val('');
  9923. // });
  9924. span.innerHTML = '上传成功'
  9925. setTimeout(() => {
  9926. loading.style.display = 'none'
  9927. }, 1000);
  9928. }
  9929. }
  9930. }
  9931. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9932. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9933. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9934. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9935. // 设置请求头,表示请求体的编码格式
  9936. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9937. // 设置请求体,使用url-encoded格式的数据
  9938. }
  9939. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9940. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9941. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9942. _userinfo = US.userInfo, //登录用户信息
  9943. _userid = US.userInfo.userid //登录用户id
  9944. let _iframe;
  9945. let _cid = cid,
  9946. _stage = stage,
  9947. _task = task,
  9948. _tool = tool;
  9949. var _jie = $$("div", {
  9950. "style": {
  9951. "position": "absolute",
  9952. "bottom": "50px",
  9953. "right": "50px",
  9954. "zIndex": "9999",
  9955. "backgroundColor": "#2268bc",
  9956. "color": "#fff",
  9957. "padding": "12px 20px",
  9958. "cursor": "pointer",
  9959. "borderRadius": "4px",
  9960. },
  9961. "innerHTML": "提交作业"
  9962. })
  9963. let aTool = ''
  9964. let _loading = document.createElement('div')
  9965. _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;"
  9966. // _loading.id = "";
  9967. let _lchild = document.createElement('div')
  9968. let _limg = document.createElement('img')
  9969. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9970. _limg.style = "width: 26px;margin-right: 10px;"
  9971. _lchild.appendChild(_limg)
  9972. let _lspan = document.createElement('span')
  9973. _lspan.innerHTML = "上传中..."
  9974. _lchild.appendChild(_lspan)
  9975. _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%);"
  9976. _loading.appendChild(_lchild)
  9977. var _box = $$('div', {
  9978. "style": {
  9979. "position": "relative",
  9980. "width": "100%",
  9981. "height": "100%",
  9982. },
  9983. })
  9984. _box.appendChild(_loading)
  9985. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9986. switch (str) {
  9987. case "CocoPi":
  9988. aTool = 57;
  9989. _iframe = $$("iframe", {
  9990. "allowpaymentrequest": "allowpaymentrequest",
  9991. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9992. "webkitallowfullscreen": "",
  9993. "mozallowfullscreen": "",
  9994. "frameborder": "no",
  9995. "border": "0",
  9996. "scrolling ": "no",
  9997. "style": {
  9998. "cssText": "border:0;width:100%;height:100%"
  9999. },
  10000. "src": "https://pi.cocorobo.cn/"
  10001. })
  10002. _box.appendChild(_iframe);
  10003. _box.appendChild(_jie);
  10004. _formdiv = new U.UF.UI.form(
  10005. "CocoPi",
  10006. _box, {
  10007. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10008. "style": {
  10009. "width": "90%",
  10010. "height": "90%",
  10011. "overflow": 'hidden'
  10012. },
  10013. "onresize": function () { }
  10014. }, {
  10015. closecallback: function () { }
  10016. }, {
  10017. "style": {
  10018. "height": "36px"
  10019. }
  10020. }).form; //创建窗体
  10021. _taskbar = {
  10022. "id": str + _formdiv.id,
  10023. "style": {
  10024. "backgroundImage": "url(/img/icon/cocopi.png)"
  10025. },
  10026. "name": "CocoPi",
  10027. "forms": _formdiv,
  10028. "click": function () {
  10029. U.MD.D.I.openApplication(str, obj, info);
  10030. }
  10031. }
  10032. break;
  10033. }
  10034. if (_iframe) {
  10035. if (str == 'CocoPi') {
  10036. _iframe = _formdiv.querySelector('iframe')
  10037. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10038. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10039. })
  10040. if (onloadListener) {
  10041. _iframe.contentDocument.location.reload()
  10042. } else {
  10043. _iframe.contentDocument.location.reload()
  10044. }
  10045. }
  10046. _jie.onclick = async () => {
  10047. let text = ''
  10048. if (aTool == 57) {
  10049. text = _iframe.contentWindow.getLoadXmlStr()
  10050. }
  10051. _loading.style.display = 'flex'
  10052. console.log(_loading);
  10053. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10054. _loading.style.display = 'none'
  10055. let _div = document.createElement('div')
  10056. _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;"
  10057. let _inner = document.createElement('div')
  10058. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10059. _inner.innerHTML = "上传成功"
  10060. _div.appendChild(_inner)
  10061. _iframe.contentWindow.window.document.body.appendChild(_div)
  10062. _div.onclick = () => {
  10063. _iframe.contentWindow.window.document.body.removeChild(_div)
  10064. }
  10065. setTimeout(() => {
  10066. _iframe.contentWindow.window.document.body.removeChild(_div)
  10067. }, 1000);
  10068. }, [], { "type": "POST", "withCredentials": true });
  10069. }
  10070. }
  10071. }
  10072. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10073. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10074. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10075. _userid = student.userid, //登录用户id
  10076. _username = student.student //用户名字
  10077. let _iframe;
  10078. let _cid = cid,
  10079. _stage = stage,
  10080. _task = task,
  10081. _tool = tool;
  10082. var _jie = $$("div", {
  10083. "style": {
  10084. "position": "absolute",
  10085. "bottom": "50px",
  10086. "right": "50px",
  10087. "zIndex": "9999",
  10088. "backgroundColor": "#2268bc",
  10089. "color": "#fff",
  10090. "padding": "12px 20px",
  10091. "cursor": "pointer",
  10092. "borderRadius": "4px",
  10093. },
  10094. "innerHTML": "提交作业"
  10095. })
  10096. let aTool = ''
  10097. let _loading = document.createElement('div')
  10098. _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;"
  10099. // _loading.id = "";
  10100. let _lchild = document.createElement('div')
  10101. let _limg = document.createElement('img')
  10102. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10103. _limg.style = "width: 26px;margin-right: 10px;"
  10104. _lchild.appendChild(_limg)
  10105. let _lspan = document.createElement('span')
  10106. _lspan.innerHTML = "上传中..."
  10107. _lchild.appendChild(_lspan)
  10108. _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%);"
  10109. _loading.appendChild(_lchild)
  10110. var _box = $$('div', {
  10111. "style": {
  10112. "position": "relative",
  10113. "width": "100%",
  10114. "height": "100%",
  10115. },
  10116. })
  10117. _box.appendChild(_loading)
  10118. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10119. switch (str) {
  10120. case "CocoPi":
  10121. aTool = 57;
  10122. _iframe = $$("iframe", {
  10123. "allowpaymentrequest": "allowpaymentrequest",
  10124. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10125. "webkitallowfullscreen": "",
  10126. "mozallowfullscreen": "",
  10127. "frameborder": "no",
  10128. "border": "0",
  10129. "scrolling ": "no",
  10130. "style": {
  10131. "cssText": "border:0;width:100%;height:100%"
  10132. },
  10133. "src": "https://pi.cocorobo.cn/"
  10134. })
  10135. _box.appendChild(_iframe);
  10136. _box.appendChild(_jie);
  10137. _formdiv = new U.UF.UI.form(
  10138. "CocoPi-" + _username,
  10139. _box, {
  10140. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10141. "style": {
  10142. "width": "90%",
  10143. "height": "90%",
  10144. "overflow": 'hidden'
  10145. },
  10146. "onresize": function () { }
  10147. }, {
  10148. closecallback: function () { }
  10149. }, {
  10150. "style": {
  10151. "height": "36px"
  10152. }
  10153. }).form; //创建窗体
  10154. _taskbar = {
  10155. "id": str + _formdiv.id,
  10156. "style": {
  10157. "backgroundImage": "url(/img/icon/cocopi.png)"
  10158. },
  10159. "name": "CocoPi",
  10160. "forms": _formdiv,
  10161. "click": function () {
  10162. U.MD.D.I.openApplication(str, obj, info);
  10163. }
  10164. }
  10165. break;
  10166. }
  10167. if (_iframe) {
  10168. if (str == 'CocoPi') {
  10169. _iframe = _formdiv.querySelector('iframe')
  10170. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10171. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10172. })
  10173. if (onloadListener) {
  10174. _iframe.contentDocument.location.reload()
  10175. } else {
  10176. _iframe.contentDocument.location.reload()
  10177. }
  10178. }
  10179. _jie.onclick = async () => {
  10180. let text = ''
  10181. if (aTool == 57) {
  10182. text = _iframe.contentWindow.getLoadXmlStr()
  10183. }
  10184. _loading.style.display = 'flex'
  10185. console.log(_loading);
  10186. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10187. _loading.style.display = 'none'
  10188. let _div = document.createElement('div')
  10189. _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;"
  10190. let _inner = document.createElement('div')
  10191. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10192. _inner.innerHTML = "上传成功"
  10193. _div.appendChild(_inner)
  10194. _iframe.contentWindow.window.document.body.appendChild(_div)
  10195. _div.onclick = () => {
  10196. _iframe.contentWindow.window.document.body.removeChild(_div)
  10197. }
  10198. setTimeout(() => {
  10199. _iframe.contentWindow.window.document.body.removeChild(_div)
  10200. }, 1000);
  10201. }, [], { "type": "POST", "withCredentials": true });
  10202. }
  10203. }
  10204. }
  10205. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10206. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10207. if (res.value[0].length > 0) {
  10208. if (atool == 57) {
  10209. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10210. }
  10211. } else {
  10212. if (atool == 57) {
  10213. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10214. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10215. }
  10216. }
  10217. }, [], { "type": "POST", "withCredentials": true });
  10218. }