DeskTop.js 659 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569
  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. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  684. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  685. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  686. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  687. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  688. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  689. ];
  690. //hk
  691. U.MD.D.I.hkStudentDeskIcon = [
  692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  695. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  696. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  698. ];
  699. //hk
  700. U.MD.D.I.hkaceteacherDeskIcon = [
  701. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  702. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  705. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  706. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  707. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  708. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  709. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  710. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  711. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  712. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  713. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  714. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  717. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  718. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  719. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  720. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  721. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  722. ];
  723. //hk
  724. U.MD.D.I.hkaceStudentDeskIcon = [
  725. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  726. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  728. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  729. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  731. ];
  732. //香海正覺蓮社佛教正覺中學
  733. U.MD.D.I.hkZJLSteacherDeskIcon = [
  734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  737. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  738. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  740. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  741. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  742. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  743. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  744. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  745. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  746. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  749. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSStudentDeskIcon = [
  753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. ];
  758. //云海
  759. U.MD.D.I.yunhaiTeacherDeskIcon = [
  760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  764. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  765. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  767. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  768. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  769. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  771. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  772. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  773. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  774. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  775. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  776. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  777. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  778. ];
  779. //福田
  780. U.MD.D.I.heyuanTeacherDeskIcon = [
  781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  786. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  788. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  789. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  790. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  791. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  792. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  793. ];
  794. //福田
  795. U.MD.D.I.heyuanAdminDeskIcon = [
  796. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  797. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  801. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  802. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  803. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  804. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  805. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  806. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  807. ];
  808. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  809. U.MD.D.I.szherTeacherDeskIcon = [
  810. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  811. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  812. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  813. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  814. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  815. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  817. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  818. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  820. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  821. ];
  822. //dsei
  823. U.MD.D.I.dseiTeacherDeskIcon = [
  824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  826. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  827. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  833. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  834. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  835. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  836. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  837. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  838. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  839. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  840. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  841. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  842. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  843. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  844. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  845. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  846. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  847. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  848. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  849. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  850. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  851. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  852. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  853. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  854. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  855. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  856. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  857. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  858. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  859. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  861. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  865. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  866. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  867. ];
  868. //dsei
  869. U.MD.D.I.dseiAdminDeskIcon = [
  870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  872. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  873. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  876. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  877. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  878. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  879. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  881. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  882. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  883. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  884. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  885. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  886. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  887. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  888. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  889. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  890. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  891. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  892. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  893. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  894. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  895. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  896. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  897. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  898. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  899. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  900. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  901. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  902. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  903. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  904. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  905. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  906. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  907. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  908. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  910. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  911. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  912. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  913. ];
  914. //dsei
  915. U.MD.D.I.dseiStudentDeskIcon = [
  916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  917. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  920. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  922. ];
  923. //未来教育基地
  924. U.MD.D.I.szjkyTeacherDeskIcon = [
  925. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  926. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  927. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  928. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  929. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  930. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  931. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  932. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  933. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  934. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  935. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  936. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  937. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  942. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  943. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  944. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  945. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  946. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  947. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  948. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  949. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  950. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  951. ];
  952. //未来教育基地
  953. U.MD.D.I.szjkyAdminDeskIcon = [
  954. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  955. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  956. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  957. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  958. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  959. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  960. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  961. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  962. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  963. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  964. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  965. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  966. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  967. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  970. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  971. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  972. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  973. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  974. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  976. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  977. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  978. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  979. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1226. ];
  1227. //盐田区幼儿园
  1228. U.MD.D.I.ytyStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. ];
  1233. //scnuai
  1234. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1244. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1246. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1247. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1250. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1251. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1252. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1253. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1254. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1255. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1256. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1257. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1258. ];
  1259. //scnuai
  1260. U.MD.D.I.scnuaiAdminDeskIcon = [
  1261. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1262. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1263. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1264. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1265. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1266. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1267. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1268. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1269. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1270. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1271. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1272. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1273. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1276. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1277. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1278. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1279. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1280. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1281. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1282. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1283. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1284. ];
  1285. //scnuai
  1286. U.MD.D.I.scnuaiStudentDeskIcon = [
  1287. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. ];
  1292. //cocobiz
  1293. U.MD.D.I.cocobizteacherDeskIcon = [
  1294. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1295. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1296. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1297. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1298. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1299. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1300. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1301. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1302. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1303. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1304. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1305. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1306. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1307. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1308. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1310. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1311. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1312. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1313. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1314. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1315. ];
  1316. //cocobiz
  1317. U.MD.D.I.cocobizStudentDeskIcon = [
  1318. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1320. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1321. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1322. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1324. ];
  1325. //xxzjky
  1326. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1327. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1329. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1330. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1331. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1333. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1334. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1335. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1336. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1337. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1338. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1339. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1340. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1343. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1344. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1345. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1346. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1347. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1348. ];
  1349. //xxzjky
  1350. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1351. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1354. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1355. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1357. ];
  1358. //nsfx
  1359. U.MD.D.I.nsfxTeacherDeskIcon = [
  1360. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1361. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1362. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1363. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1366. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1367. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1368. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1369. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1373. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1374. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1375. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1376. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxStudentDeskIcon = [
  1380. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1382. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1383. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1384. ];
  1385. //stia
  1386. U.MD.D.I.stiaTeacherDeskIcon = [
  1387. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1388. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1390. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1391. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1392. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1393. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1394. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1396. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1397. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1399. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1400. ];
  1401. //stia
  1402. U.MD.D.I.stiaStudentDeskIcon = [
  1403. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1404. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1405. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1406. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1407. ];
  1408. //szdjg
  1409. U.MD.D.I.szdjgTeacherDeskIcon = [
  1410. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1411. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. ];
  1413. //szdjg
  1414. U.MD.D.I.szdjgStudentDeskIcon = [
  1415. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1416. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1417. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1418. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1419. ];
  1420. //010607
  1421. U.MD.D.I.x010607TeacherDeskIcon = [
  1422. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1423. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1424. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1425. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1426. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1429. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1430. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1433. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1434. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1435. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1436. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1437. ];
  1438. //010607
  1439. U.MD.D.I.x010607StudentDeskIcon = [
  1440. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1441. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1442. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1443. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1444. ];
  1445. //010608
  1446. U.MD.D.I.x010608TeacherDeskIcon = [
  1447. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1448. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1449. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1450. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1451. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1454. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1455. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1456. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1457. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1458. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1459. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1460. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1461. ];
  1462. //010608
  1463. U.MD.D.I.x010608StudentDeskIcon = [
  1464. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1465. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1466. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1467. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1468. ];
  1469. //xhly
  1470. U.MD.D.I.xhlyTeacherDeskIcon = [
  1471. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1472. ];
  1473. //010608
  1474. U.MD.D.I.xhlyStudentDeskIcon = [
  1475. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1476. ];
  1477. //北师大
  1478. U.MD.D.I.BSDNSteacherDeskIcon = [
  1479. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1480. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1481. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1482. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1483. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1489. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1490. ];
  1491. //北师大
  1492. U.MD.D.I.BSDNSstudentDeskIcon = [
  1493. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1495. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1497. ];
  1498. //CUHK_EDU
  1499. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1511. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1512. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1514. ];
  1515. //CUHK_EDU
  1516. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1517. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1518. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1519. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1520. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1521. ];
  1522. //010503
  1523. U.MD.D.I.x010503TeacherDeskIcon = [
  1524. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1525. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1527. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1528. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1529. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1530. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1531. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. ];
  1534. //010503
  1535. U.MD.D.I.x010503StudentDeskIcon = [
  1536. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1540. ];
  1541. //SPROUT Lab
  1542. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1544. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1545. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1546. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1547. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1548. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1549. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1550. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1551. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1552. ];
  1553. //SPROUT Lab
  1554. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1555. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. ];
  1559. //010204
  1560. U.MD.D.I.x010204TeacherDeskIcon = [
  1561. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1562. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1563. ];
  1564. //010204
  1565. U.MD.D.I.x010204StudentDeskIcon = [
  1566. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //trail
  1572. U.MD.D.I.trailTeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. ];
  1576. //trail
  1577. U.MD.D.I.trailStudentDeskIcon = [
  1578. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. ];
  1583. //010504
  1584. U.MD.D.I.x010504TeacherDeskIcon = [
  1585. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1586. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1588. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1589. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1592. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1595. ];
  1596. //010504
  1597. U.MD.D.I.x010504StudentDeskIcon = [
  1598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1601. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1602. ];
  1603. //SCNUET
  1604. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1610. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1611. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1612. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1614. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1617. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1618. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1619. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1620. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1621. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1622. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1623. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1624. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1625. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1628. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1629. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1630. ];
  1631. //SCNUET
  1632. U.MD.D.I.SCNUETAdminDeskIcon = [
  1633. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1634. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1638. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1639. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1640. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1641. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1642. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1643. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1645. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1646. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1647. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1651. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1652. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1653. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1654. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1655. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1656. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1657. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1658. ];
  1659. //SCNUET
  1660. U.MD.D.I.SCNUETStudentDeskIcon = [
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1663. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1664. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1665. ];
  1666. //x020201
  1667. U.MD.D.I.x020201TeacherDeskIcon = [
  1668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1670. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1671. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1672. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1675. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1676. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1678. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1679. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1680. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1681. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //x020201
  1685. U.MD.D.I.x020201AdminDeskIcon = [
  1686. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1687. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1688. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1691. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1692. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1693. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1694. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1696. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1697. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1698. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1699. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1700. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1701. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1702. ];
  1703. //020201
  1704. U.MD.D.I.x020201StudentDeskIcon = [
  1705. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1706. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. ];
  1710. //010611
  1711. U.MD.D.I.x010611TeacherDeskIcon = [
  1712. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1715. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1716. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1717. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611StudentDeskIcon = [
  1724. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1728. ];
  1729. //tianyuan
  1730. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1739. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1740. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1741. ];
  1742. //010611
  1743. U.MD.D.I.tianyuanStudentDeskIcon = [
  1744. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1746. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1748. ];
  1749. //#region 桌面初始化a
  1750. /**
  1751. * 初始化桌面的起始函数
  1752. *
  1753. */
  1754. U.MD.D.I.init = function () {
  1755. if ($("#U_MD_D_K")[0]) {
  1756. //初始化桌面图标
  1757. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1758. // var clickUrl = ':12588/requestIp.php';
  1759. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1760. // U.MD.D.I.Ip = data;
  1761. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1762. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1763. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1764. // })
  1765. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1766. // })
  1767. }
  1768. }
  1769. /**
  1770. * 模式切换
  1771. *
  1772. */
  1773. U.MD.D.I.ModeCheck = function (type) {
  1774. if (US.Config.type == type) {
  1775. return
  1776. }
  1777. US.Config.type = type
  1778. $('.U_PBL_Check .active')[0].className = ''
  1779. if (type == 1) {
  1780. $('.U_PBL_Check div')[0].className = 'active'
  1781. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1782. } else {
  1783. $('.U_PBL_Check div')[1].className = 'active'
  1784. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1785. }
  1786. //初始化桌面图标
  1787. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1788. if (type == 2) {
  1789. U.MD.D.I.openApplication("project")
  1790. }
  1791. }
  1792. /**
  1793. * 隐藏任务栏
  1794. *
  1795. * @param {element} 桌面元素
  1796. */
  1797. U.MD.D.I.hiddenTaskbar = function (el) {
  1798. //任务栏位置变小
  1799. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1800. //桌面的位置变大
  1801. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1802. }
  1803. /**
  1804. * 隐藏任务栏
  1805. *
  1806. * @param {element} 桌面元素
  1807. */
  1808. U.MD.D.I.hiddenTaskbarout = function (el) {
  1809. //任务栏位置变小
  1810. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1811. //任务栏位置变化
  1812. U.selectEl(el).css({ "bottom": "-60px" });
  1813. //桌面的位置变大
  1814. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1815. }
  1816. }
  1817. /**
  1818. * 初始化打印桌面图标
  1819. *
  1820. * @param {element} 桌面元素
  1821. */
  1822. U.MD.D.I.initDesktopIcons = function (el, type) {
  1823. var i, //用于循环
  1824. _content, //桌面图标元素
  1825. _iconcontent, //桌面图标元素
  1826. _frag = $$("frag"), //定义一个碎片元素
  1827. _type = US.userInfo.type,
  1828. _org = US.userInfo.org,
  1829. _oid = US.userInfo.organizeid,
  1830. _role = US.userInfo.role,
  1831. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1832. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1833. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1834. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1835. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1836. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1837. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1838. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1839. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1840. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1841. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1842. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1843. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1844. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1845. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1846. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1847. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1848. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1849. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1850. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1851. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1852. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1853. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1854. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1855. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1856. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1857. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1858. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1859. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1860. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1861. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1862. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1863. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1864. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1865. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1866. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1867. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1868. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1869. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1870. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1871. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1872. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1873. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1874. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1875. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1876. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1877. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1878. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1879. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1880. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1881. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1882. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1883. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1884. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1885. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1886. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1887. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1888. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1889. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1890. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1891. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1892. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1893. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1894. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1895. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1896. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1897. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1898. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1899. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1900. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1901. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1902. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1903. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1904. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1905. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1906. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1907. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1908. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1909. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1910. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1911. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1912. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1913. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1914. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1915. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1916. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1917. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1918. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1919. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1920. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1921. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1922. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1923. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1924. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1925. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1926. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1927. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1928. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1929. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1930. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1931. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1932. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1933. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1934. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1935. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1936. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1937. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1938. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1939. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1940. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1941. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1942. 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'];
  1943. 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'];
  1944. //清楚桌面图标
  1945. el.innerHTML = "";
  1946. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1947. _teacherDesktopIconInfo.push(
  1948. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1949. { "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)" } },
  1950. )
  1951. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1952. }
  1953. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1954. _teacherDesktopIconInfo.push(
  1955. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1956. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1957. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1958. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1959. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1960. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1961. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1963. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1964. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1965. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1966. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1967. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1971. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1972. { "Name": "工作流中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1973. )
  1974. }
  1975. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1976. _teacherDesktopIconInfo.push(
  1977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1978. )
  1979. }
  1980. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1981. // _teacherDesktopIconInfo.push(
  1982. // )
  1983. // }
  1984. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1985. _teacherDesktopIconInfo.push(
  1986. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1987. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. )
  1989. }
  1990. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1994. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1995. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1996. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1997. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1998. )
  1999. _studentDesktopIconInfo.push(
  2000. )
  2001. }
  2002. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2003. _teacherDesktopIconInfo.push(
  2004. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2005. )
  2006. _studentDesktopIconInfo.push(
  2007. )
  2008. }
  2009. //010606 组织
  2010. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2011. _teacherDesktopIconInfo.push(
  2012. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2013. )
  2014. _studentDesktopIconInfo.push(
  2015. )
  2016. }
  2017. //麒麟二中 和 民新小学
  2018. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2019. _teacherDesktopIconInfo.push(
  2020. )
  2021. }
  2022. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2023. _teacherDesktopIconInfo.push(
  2024. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2025. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2026. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2027. )
  2028. }
  2029. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2030. _hkTeacherDeskIconInfo.push(
  2031. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2032. )
  2033. }
  2034. //北师大附中(010601)
  2035. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2036. // _teacherDesktopIconInfo.push(
  2037. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2038. // )
  2039. // _studentDesktopIconInfo.push(
  2040. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2041. // )
  2042. // }
  2043. //樂善堂余近卿中學
  2044. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2045. _teacherDesktopIconInfo.push(
  2046. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. )
  2048. }
  2049. // Education Artificial Intelligence
  2050. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2056. _teacherDesktopIconInfo.push(
  2057. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2058. )
  2059. }
  2060. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2061. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2062. _teacherDesktopIconInfo.push(
  2063. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2064. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2065. )
  2066. }
  2067. //麒麟二中
  2068. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2069. _studentDesktopIconInfo.push(
  2070. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2071. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2072. )
  2073. }
  2074. //万科双语
  2075. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2076. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2077. if (el.Name == '项目管理') {
  2078. el.Name = 'PBL项目'
  2079. }
  2080. return el
  2081. })
  2082. _studentDesktopIconInfo3.push(
  2083. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2084. )
  2085. }
  2086. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2087. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2088. return el.Name != '魔盒识字' && el.Name != '24点'
  2089. })
  2090. }
  2091. 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) {
  2092. _studentDesktopIconInfo.push(
  2093. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2094. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2095. )
  2096. }
  2097. //循环创建桌面图标
  2098. if (type == 1) {
  2099. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2100. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2101. _content = $$("div", {
  2102. className: "U_MD_D_KO",
  2103. "onmousedown": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_studentDesktopIconInfo[i]]),
  2107. "onclick": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_studentDesktopIconInfo[i]])
  2111. }, _frag); //
  2112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2115. }
  2116. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2117. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2118. _content = $$("div", {
  2119. className: "U_MD_D_KO",
  2120. "onmousedown": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2124. "onclick": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_hkZJLSStudentDeskIconInfo[i]])
  2128. }, _frag); //
  2129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2132. } //
  2133. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2134. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2135. _content = $$("div", {
  2136. className: "U_MD_D_KO",
  2137. "onmousedown": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_ytyStudentDeskIconInfo[i]]),
  2141. "onclick": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_ytyStudentDeskIconInfo[i]])
  2145. }, _frag); //
  2146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2149. } //
  2150. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2151. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_jccssylStudentDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_jccssylStudentDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2166. }
  2167. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2168. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_scnuaiStudentDeskIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_scnuaiStudentDeskIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2183. }
  2184. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2185. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2186. _content = $$("div", {
  2187. className: "U_MD_D_KO",
  2188. "onmousedown": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_caleStudentDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_caleStudentDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2202. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2203. _content = $$("div", {
  2204. className: "U_MD_D_KO",
  2205. "onmousedown": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_thuioeStudentDeskIconInfo[i]]),
  2209. "onclick": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_thuioeStudentDeskIconInfo[i]])
  2213. }, _frag); //
  2214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2217. }
  2218. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2219. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2220. _content = $$("div", {
  2221. className: "U_MD_D_KO",
  2222. "onmousedown": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_tpcStudentDeskIconInfo[i]]),
  2226. "onclick": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_tpcStudentDeskIconInfo[i]])
  2230. }, _frag); //
  2231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2234. } //
  2235. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2236. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjStudentDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_chjyjStudentDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2253. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2254. _content = $$("div", {
  2255. className: "U_MD_D_KO",
  2256. "onmousedown": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyStudentDeskIconInfo[i]]),
  2260. "onclick": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_szjkyStudentDeskIconInfo[i]])
  2264. }, _frag); //
  2265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2268. }
  2269. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2270. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2271. _content = $$("div", {
  2272. className: "U_MD_D_KO",
  2273. "onmousedown": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_x020201StudentDeskIconInfo[i]]),
  2277. "onclick": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_x020201StudentDeskIconInfo[i]])
  2281. }, _frag); //
  2282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2285. }
  2286. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2287. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2288. _content = $$("div", {
  2289. className: "U_MD_D_KO",
  2290. "onmousedown": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_SCNUETStudentDeskIconInfo[i]]),
  2294. "onclick": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_SCNUETStudentDeskIconInfo[i]])
  2298. }, _frag); //
  2299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2302. }
  2303. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2304. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2305. _content = $$("div", {
  2306. className: "U_MD_D_KO",
  2307. "onmousedown": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_dseiStudentDeskIconInfo[i]]),
  2311. "onclick": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_dseiStudentDeskIconInfo[i]])
  2315. }, _frag); //
  2316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2319. }
  2320. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2321. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2322. _content = $$("div", {
  2323. className: "U_MD_D_KO",
  2324. "onmousedown": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2328. "onclick": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2332. }, _frag); //
  2333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2336. }
  2337. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2338. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_nsfxStudentDeskIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_nsfxStudentDeskIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2355. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_stiaStudentDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_stiaStudentDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2372. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_szdjgStudentDeskIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_szdjgStudentDeskIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2387. }
  2388. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2389. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_x010607StudentDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_x010607StudentDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2406. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_xhlyStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_xhlyStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. }
  2422. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2423. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2440. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_x010503StudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_x010503StudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2457. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_x010504StudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_x010504StudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2474. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_x010204StudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_x010204StudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2491. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_trailStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_trailStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2508. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2525. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_x010608StudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_x010608StudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2542. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010611StudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_x010611StudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2559. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_tianyuantudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_tianyuantudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2576. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_siesStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_siesStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2593. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_guzmsStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_guzmsStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2610. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_hkStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_hkStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2627. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_hkaceStudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_hkaceStudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2644. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2645. _content = $$("div", {
  2646. className: "U_MD_D_KO",
  2647. "onmousedown": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_BSDNSstudentDesktopIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2661. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_cocobizStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_cocobizStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2678. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2679. _content = $$("div", {
  2680. className: "U_MD_D_KO",
  2681. "onmousedown": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_xxzjkyStudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2695. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_studentDesktopIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_studentDesktopIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2712. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2713. _content = $$("div", {
  2714. className: "U_MD_D_KO",
  2715. "onmousedown": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_tcStudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_tcStudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2729. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2730. _content = $$("div", {
  2731. className: "U_MD_D_KO",
  2732. "onmousedown": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_szscStudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_szscStudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2746. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_studentDesktopIconInfo3[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_studentDesktopIconInfo3[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2763. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_studentDesktopIconInfo2[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_studentDesktopIconInfo2[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2780. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2781. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_wanketeacherDesktopIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_wanketeacherDesktopIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2800. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2801. _content = $$("div", {
  2802. className: "U_MD_D_KO",
  2803. "onmousedown": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_wankeAdminDesktopIconInfo[i]]),
  2807. "onclick": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_wankeAdminDesktopIconInfo[i]])
  2811. }, _frag); //
  2812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2815. }
  2816. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2817. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2818. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2819. continue
  2820. }
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_scnuaiTeacherDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2837. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2838. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2839. continue
  2840. }
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_BSDNSteacherDesktopIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2857. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2858. _content = $$("div", {
  2859. className: "U_MD_D_KO",
  2860. "onmousedown": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_scnuaiAdminDeskIconInfo[i]]),
  2864. "onclick": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_scnuaiAdminDeskIconInfo[i]])
  2868. }, _frag); //
  2869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2872. }
  2873. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2874. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2875. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2876. continue
  2877. }
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_jccssylTeacherDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_jccssylTeacherDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2894. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2895. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2896. continue
  2897. }
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_caleTeacherDeskIconInfo[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_caleTeacherDeskIconInfo[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2914. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2915. _content = $$("div", {
  2916. className: "U_MD_D_KO",
  2917. "onmousedown": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_tpcOrganizerDeskIconInfo[i]]),
  2921. "onclick": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_tpcOrganizerDeskIconInfo[i]])
  2925. }, _frag); //
  2926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2929. }
  2930. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2931. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2932. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2933. continue
  2934. }
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_tpcTeacherDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_tpcTeacherDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2951. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2952. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_teacherDesktopIconInfo2[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_teacherDesktopIconInfo2[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2971. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2972. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_thuioeTeacherDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_thuioeTeacherDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2991. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2992. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2993. continue
  2994. }
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_lotechTeacherDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_lotechTeacherDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3009. }//
  3010. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3011. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3012. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3013. continue
  3014. }
  3015. _content = $$("div", {
  3016. className: "U_MD_D_KO",
  3017. "onmousedown": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3021. "onclick": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3025. }, _frag); //
  3026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3029. }
  3030. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3031. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3032. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3033. continue
  3034. }
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_siesTeacherDeskIconInfo[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_siesTeacherDeskIconInfo[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3049. }
  3050. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3051. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3052. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3053. continue
  3054. }
  3055. _content = $$("div", {
  3056. className: "U_MD_D_KO",
  3057. "onmousedown": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_guzmsTeacherDeskIconInfo[i]]),
  3061. "onclick": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_guzmsTeacherDeskIconInfo[i]])
  3065. }, _frag); //
  3066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3069. }
  3070. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3071. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3072. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3073. continue
  3074. }
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_longhuaTeacherDeskIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_longhuaTeacherDeskIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3091. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_ytyTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_ytyTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3111. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3112. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_yunhaiTeacherDeskIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3129. } //_hkStudentDeskIconInfo
  3130. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3131. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3132. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3133. continue
  3134. }
  3135. _content = $$("div", {
  3136. className: "U_MD_D_KO",
  3137. "onmousedown": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3141. "onclick": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3145. }, _frag); //
  3146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3149. }
  3150. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3151. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3152. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3153. continue
  3154. }
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_hkTeacherDeskIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_hkTeacherDeskIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3171. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3172. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3173. continue
  3174. }
  3175. _content = $$("div", {
  3176. className: "U_MD_D_KO",
  3177. "onmousedown": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_hkaceTeacherDeskIconInfo[i]]),
  3181. "onclick": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_hkaceTeacherDeskIconInfo[i]])
  3185. }, _frag); //
  3186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3189. }
  3190. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3191. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3192. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3193. continue
  3194. }
  3195. _content = $$("div", {
  3196. className: "U_MD_D_KO",
  3197. "onmousedown": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_cocobizTeacherDeskIconInfo[i]]),
  3201. "onclick": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_cocobizTeacherDeskIconInfo[i]])
  3205. }, _frag); //
  3206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3209. }
  3210. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3211. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3212. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3213. continue
  3214. }
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3229. }
  3230. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3231. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_gdjgAdminDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_gdjgAdminDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3248. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_gdjgTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_gdjgTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3268. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3269. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3270. continue
  3271. }
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_szherTeacherDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_szherTeacherDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3288. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_heyuannAdminDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_heyuannAdminDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3305. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_heyuanTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_heyuanTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. } //
  3324. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3325. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_dseiAdminDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_dseiAdminDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3342. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3343. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3344. continue
  3345. }
  3346. _content = $$("div", {
  3347. className: "U_MD_D_KO",
  3348. "onmousedown": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_dseiTeacherDeskIconInfo[i]]),
  3352. "onclick": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_dseiTeacherDeskIconInfo[i]])
  3356. }, _frag); //
  3357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3360. } //
  3361. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3362. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_chjyjAdminDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_chjyjAdminDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3377. }//
  3378. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3379. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3380. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3381. continue
  3382. }
  3383. _content = $$("div", {
  3384. className: "U_MD_D_KO",
  3385. "onmousedown": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_chjyjTeacherDeskIconInfo[i]]),
  3389. "onclick": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_chjyjTeacherDeskIconInfo[i]])
  3393. }, _frag); //
  3394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3397. }
  3398. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3399. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3400. _content = $$("div", {
  3401. className: "U_MD_D_KO",
  3402. "onmousedown": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_szjkyAdminDeskIconInfo[i]]),
  3406. "onclick": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_szjkyAdminDeskIconInfo[i]])
  3410. }, _frag); //
  3411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3414. }//
  3415. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3416. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3417. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3418. continue
  3419. }
  3420. _content = $$("div", {
  3421. className: "U_MD_D_KO",
  3422. "onmousedown": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_szjkyTeacherDeskIconInfo[i]]),
  3426. "onclick": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_szjkyTeacherDeskIconInfo[i]])
  3430. }, _frag); //
  3431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3434. }
  3435. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3436. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_x020201AdminDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_x020201AdminDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3451. }//
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3453. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3454. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_x020201TeacherDeskIconInfo[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_x020201TeacherDeskIconInfo[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3473. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3474. _content = $$("div", {
  3475. className: "U_MD_D_KO",
  3476. "onmousedown": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_SCNUETAdminDeskIconInfo[i]]),
  3480. "onclick": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_SCNUETAdminDeskIconInfo[i]])
  3484. }, _frag); //
  3485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3488. }//
  3489. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3490. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3491. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3492. continue
  3493. }
  3494. _content = $$("div", {
  3495. className: "U_MD_D_KO",
  3496. "onmousedown": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3500. "onclick": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_SCNUETTeacherDeskIconInfo[i]])
  3504. }, _frag); //
  3505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3508. }
  3509. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3510. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3511. _content = $$("div", {
  3512. className: "U_MD_D_KO",
  3513. "onmousedown": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_futianAdminDeskIconInfo[i]]),
  3517. "onclick": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_futianAdminDeskIconInfo[i]])
  3521. }, _frag); //
  3522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3525. }
  3526. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3527. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3528. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3529. continue
  3530. }
  3531. _content = $$("div", {
  3532. className: "U_MD_D_KO",
  3533. "onmousedown": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_futianTeacherDeskIconInfo[i]]),
  3537. "onclick": U.UF.C.closure(function (obj) {
  3538. //防止拖动图标即打开了桌面应用
  3539. U.MD.D.click(this, obj);
  3540. }, [_futianTeacherDeskIconInfo[i]])
  3541. }, _frag); //
  3542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3545. }
  3546. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3547. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3548. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3549. continue
  3550. }
  3551. _content = $$("div", {
  3552. className: "U_MD_D_KO",
  3553. "onmousedown": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_MingdeTeacherDeskIcon[i]]),
  3557. "onclick": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_MingdeTeacherDeskIcon[i]])
  3561. }, _frag); //
  3562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3565. }
  3566. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3567. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3568. _content = $$("div", {
  3569. className: "U_MD_D_KO",
  3570. "onmousedown": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_lhsAdminDesktopIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_lhsAdminDesktopIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3584. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3585. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3586. continue
  3587. }
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_lhsteacherDesktopIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_lhsteacherDesktopIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3604. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3605. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_zhoujiateacherDesktopIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3624. for (i = 0; i < _hanDeskIcon.length; i++) {
  3625. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_hanDeskIcon[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_hanDeskIcon[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3644. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3645. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3646. continue
  3647. }
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_orgStemDeskIcon[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_orgStemDeskIcon[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3664. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3665. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_szulsDeskIcon[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_szulsDeskIcon[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3684. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3685. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_orgDesktopIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_orgDesktopIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3704. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3705. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_schoolDesktopIconInfo[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_schoolDesktopIconInfo[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3724. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3725. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_GMteacherDesktopIconInfo[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_GMteacherDesktopIconInfo[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3744. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3745. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_SONGteacherDesktopIconInfo[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_SONGteacherDesktopIconInfo[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3762. }
  3763. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3764. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3765. _content = $$("div", {
  3766. className: "U_MD_D_KO",
  3767. "onmousedown": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_GMstudentDesktopIconInfo[i]]),
  3771. "onclick": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_GMstudentDesktopIconInfo[i]])
  3775. }, _frag); //
  3776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3779. }
  3780. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3781. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3782. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3783. continue
  3784. }
  3785. _content = $$("div", {
  3786. className: "U_MD_D_KO",
  3787. "onmousedown": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_tcTeacherDeskIconInfo[i]]),
  3791. "onclick": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_tcTeacherDeskIconInfo[i]])
  3795. }, _frag); //
  3796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3799. }
  3800. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3801. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3802. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3803. continue
  3804. }
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_tcOrganizerDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_tcOrganizerDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3821. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_szscTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_szscTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3841. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3842. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_szscOrganizerDeskIconInfo[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_szscOrganizerDeskIconInfo[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3861. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3862. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3863. continue
  3864. }
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_nsfxTeacherDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_nsfxTeacherDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3879. }
  3880. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3881. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3882. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_stiaTeacherDeskIconInfo[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_stiaTeacherDeskIconInfo[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3901. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3902. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3903. continue
  3904. }
  3905. _content = $$("div", {
  3906. className: "U_MD_D_KO",
  3907. "onmousedown": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szdjgTeacherDeskIconInfo[i]]),
  3911. "onclick": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_szdjgTeacherDeskIconInfo[i]])
  3915. }, _frag); //
  3916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3919. }
  3920. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3921. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3922. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3923. continue
  3924. }
  3925. _content = $$("div", {
  3926. className: "U_MD_D_KO",
  3927. "onmousedown": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_x010607TeacherDeskIconInfo[i]]),
  3931. "onclick": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_x010607TeacherDeskIconInfo[i]])
  3935. }, _frag); //
  3936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3939. }
  3940. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3941. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3942. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3943. continue
  3944. }
  3945. _content = $$("div", {
  3946. className: "U_MD_D_KO",
  3947. "onmousedown": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_xhlyTeacherDeskIconInfo[i]]),
  3951. "onclick": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_xhlyTeacherDeskIconInfo[i]])
  3955. }, _frag); //
  3956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3959. }
  3960. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3961. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3962. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3963. continue
  3964. }
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3979. }
  3980. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3981. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3982. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x010503TeacherDeskIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_x010503TeacherDeskIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4001. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4002. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4003. continue
  4004. }
  4005. _content = $$("div", {
  4006. className: "U_MD_D_KO",
  4007. "onmousedown": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_x010504TeacherDeskIconInfo[i]]),
  4011. "onclick": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_x010504TeacherDeskIconInfo[i]])
  4015. }, _frag); //
  4016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4019. }
  4020. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4021. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4022. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4023. continue
  4024. }
  4025. _content = $$("div", {
  4026. className: "U_MD_D_KO",
  4027. "onmousedown": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_x010204TeacherDeskIconInfo[i]]),
  4031. "onclick": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_x010204TeacherDeskIconInfo[i]])
  4035. }, _frag); //
  4036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4039. }
  4040. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4041. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4042. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4043. continue
  4044. }
  4045. _content = $$("div", {
  4046. className: "U_MD_D_KO",
  4047. "onmousedown": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_trailTeacherDeskIconInfo[i]]),
  4051. "onclick": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_trailTeacherDeskIconInfo[i]])
  4055. }, _frag); //
  4056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4059. }
  4060. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4061. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4062. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4063. continue
  4064. }
  4065. _content = $$("div", {
  4066. className: "U_MD_D_KO",
  4067. "onmousedown": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4071. "onclick": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4075. }, _frag); //
  4076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4079. }
  4080. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4081. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4082. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4083. continue
  4084. }
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_x010608TeacherDeskIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_x010608TeacherDeskIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4101. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4102. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_x010611TeacherDeskIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_x010611TeacherDeskIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4121. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4122. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_tianyuanTeacherDeskIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else {
  4141. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4142. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_teacherDesktopIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_teacherDesktopIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. }
  4161. } else {
  4162. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4163. _content = $$("div", {
  4164. className: "U_MD_D_KO",
  4165. style: { 'width': '124px', 'height': '145px' },
  4166. "onmousedown": U.UF.C.closure(function (obj) {
  4167. //防止拖动图标即打开了桌面应用
  4168. U.MD.D.click(this, obj);
  4169. }, [_easyDesktopIconInfo[i]]),
  4170. "onclick": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_easyDesktopIconInfo[i]])
  4174. }, _frag); //
  4175. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4178. }
  4179. }
  4180. if (type == 1) {
  4181. //加载好后给图标定位
  4182. U.MD.D.iconPostion($(_frag).Child());
  4183. } else {
  4184. //加载好后给图标定位
  4185. U.MD.D.iconPostion2($(_frag).Child());
  4186. }
  4187. //把图标加载到页面
  4188. el.appendChild(_frag);
  4189. }
  4190. /**
  4191. * 显示任务栏
  4192. *
  4193. * @param {element} 桌面元素
  4194. */
  4195. U.MD.D.I.displayTaskbar = function (el) {
  4196. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4197. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4198. //任务栏位置变化
  4199. U.selectEl(el).css({ "bottom": "0px" });
  4200. //桌面位置变话
  4201. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4202. }
  4203. }
  4204. //#region 桌面图标拖动逻辑
  4205. /**
  4206. * 桌面排列图标
  4207. *
  4208. * @param {element} 桌面元素
  4209. * @param {object} 上下相距的距离
  4210. * @param {object} 左右相距的距离
  4211. * @return {object} 命名空间
  4212. */
  4213. U.MD.D.iconPostion = function (childs, top, left) {
  4214. var i; //用于循环处理
  4215. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4216. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4217. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4218. for (i = 0; i < childs.length; i++) {
  4219. //如果竖排top超过了范围处理
  4220. if (top + 95 > US.height - 10) {
  4221. //left超过了页面范围处理,则向上重叠打印处理
  4222. if ((left + 180) > US.width) {
  4223. top -= 110;
  4224. left -= 90;
  4225. }
  4226. //没有超过范围,那么left+90添加到下一个竖排打印
  4227. else {
  4228. left += 90;
  4229. top = 15;
  4230. };
  4231. }
  4232. //给图标的位置赋值
  4233. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4234. if (i < childs.length - 1) {
  4235. //页面图标每次向下加95
  4236. top += 95;
  4237. }
  4238. }
  4239. //返回最后调用的图标的位置
  4240. return [top, left];
  4241. }
  4242. /**
  4243. * 桌面排列图标
  4244. *
  4245. * @param {element} 桌面元素
  4246. * @param {object} 上下相距的距离
  4247. * @param {object} 左右相距的距离
  4248. * @return {object} 命名空间
  4249. */
  4250. U.MD.D.iconPostion2 = function (childs, top, left) {
  4251. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4252. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4253. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4254. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4255. for (i = 0; i < childs.length; i++) {
  4256. //如果竖排top超过了范围处理
  4257. if (left + 150 > US.width - 10) {
  4258. //left超过了页面范围处理,则向上重叠打印处理
  4259. if ((top + 180) > US.Height) {
  4260. top -= 150;
  4261. left -= 150;
  4262. }
  4263. //没有超过范围,那么left+90添加到下一个竖排打印
  4264. else {
  4265. top += 150;
  4266. left = ol;
  4267. };
  4268. }
  4269. //给图标的位置赋值
  4270. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4271. if (i < childs.length - 1) {
  4272. //页面图标每次向下加95
  4273. left += 150;
  4274. }
  4275. }
  4276. //返回最后调用的图标的位置
  4277. return [top, left];
  4278. }
  4279. /**
  4280. * 桌面点击事件逻辑
  4281. *
  4282. * @param {element} 桌面元素
  4283. * @param {object} 上下相距的距离
  4284. * @param {object} 左右相距的距离
  4285. * @return {object} 命名空间
  4286. */
  4287. U.MD.D.click = function (el, obj) {
  4288. var _buttonnumber = event.button; //点击的按钮的事件值
  4289. var _userinfo = US.userInfo;
  4290. U.UF.EV.stopBubble(); //阻止向上冒泡
  4291. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4292. if (_buttonnumber < 2) {
  4293. //如果是click事件的处理
  4294. if (event.type == "click") {
  4295. //如果元素在mousemove事件中没有移动则出发click事件
  4296. if (!U.MD.D.I.IsDrag) {
  4297. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4298. U.alert("请先登录您的账号!");
  4299. setTimeout(() => {
  4300. U.MD.U.L.login();
  4301. }, 2000);
  4302. } else {
  4303. //打开应用处理
  4304. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4305. }
  4306. }
  4307. }
  4308. //如果是mouse事件的处理
  4309. else {
  4310. if (US.Config.type == '1') {
  4311. //拖动处理,添加拖动和拖动结束事件
  4312. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4313. }
  4314. }
  4315. U.MD.D.I.IsDrag = false;
  4316. }
  4317. }
  4318. /**
  4319. * 拖动的处理
  4320. *
  4321. */
  4322. U.MD.D.iconMove = function () {
  4323. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4324. U.MD.D.I.IsDrag = true;
  4325. }
  4326. /**
  4327. * 拖动结束后,这里是定位处理,以网状的形式定位
  4328. *
  4329. * @param {element} 拖动的元素
  4330. * @return {object} 命名空间
  4331. */
  4332. U.MD.D.iconUp = function (el) {
  4333. var _top = 15,
  4334. _left = 20,
  4335. _margin,
  4336. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4337. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4338. if (_positioninfo["OT"] > 15) {
  4339. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4340. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4341. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4342. }
  4343. if (_positioninfo["OL"] > 20) {
  4344. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4345. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4346. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4347. }
  4348. //while循环判断么一个重叠的元素
  4349. do {
  4350. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4351. _top = _positioninfo[0] + 95; //得到定位后的top
  4352. _left = _positioninfo[1]; //得到定位后的left
  4353. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4354. }
  4355. /**
  4356. * 判断拖动后图标是否重叠
  4357. *
  4358. * @param {element} 拖动的元素
  4359. * @param {element} 桌面所有的元素
  4360. * @param {array} 拖动元素的位置
  4361. ----------[0] 上 top
  4362. ----------[1] 左 left
  4363. * @return {object} 命名空间
  4364. */
  4365. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4366. //循环所有的图标
  4367. for (var i = 0; i < childs.length; i++) {
  4368. //判断有没有和该图标诶子重叠的元素
  4369. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4370. return childs[i]; //如果有返回
  4371. }
  4372. }
  4373. }
  4374. //#endregion
  4375. //#endregion
  4376. //#region 桌面应用
  4377. /**
  4378. * 打开应用
  4379. *
  4380. * @param {string} 类型
  4381. -----------------Disk 网盘系统
  4382. -----------------PDisk 学习系统网盘
  4383. -----------------Poto 图片
  4384. -----------------Video 视频
  4385. -----------------Music 音乐
  4386. -----------------Word word
  4387. -----------------Excel excel
  4388. -----------------Txt 记事本
  4389. -----------------PB 学习系统
  4390. -----------------Blog 朋友圈系统
  4391. -----------------FTP ftp系统
  4392. -----------------Group 好友群
  4393. -----------------SY 首页系统
  4394. -----------------Set 个人设置
  4395. -----------------XSet 系统设置
  4396. -----------------App 我们所有的app
  4397. -----------------BC c.1473.cn 平台
  4398. -----------------CWeb d.1473.cn 变成平台
  4399. -----------------其他的外联系统 我们统一用iframe打开
  4400. * @param {array} 类型
  4401. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4402. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4403. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4404. 如果第一个参数为其他,则无第二个参数
  4405. * @returns {array}
  4406. */
  4407. window.addEventListener('message', function (e) { // 监听 message 事件
  4408. // alert(e.data.type);
  4409. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4410. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4411. //3是展示全部阶段 2学生 1老师 4专家
  4412. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4413. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4414. //3是展示全部阶段 2学生 1老师 4专家
  4415. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4417. //3是展示全部阶段 2学生 1老师 4专家
  4418. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4421. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4430. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4431. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4432. //3是展示全部阶段 2学生 1老师 4专家
  4433. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4435. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4436. U.MD.D.I.selectUser();
  4437. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4438. var _formel = document.getElementById("study");
  4439. U.UF.F.windowZooming(_formel);
  4440. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4441. var _formel = document.getElementById("studyDetail");
  4442. U.UF.F.windowZooming(_formel);
  4443. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4444. var _formel = document.getElementById("studyDetail");
  4445. U.UF.F.windowZooming(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4447. var _formel = document.getElementById("studentStudy");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4450. // var _formel = document.getElementById("study");
  4451. //如果最大化了,那么就把他缩小
  4452. // if (_formel.ismaximize) {
  4453. // return;
  4454. // }
  4455. // U.UF.F.windowZooming(_formel);
  4456. // U.UF.F.topWindow(_formel);
  4457. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4458. // var _formel = document.getElementById("studyDetail");
  4459. //如果最大化了,那么就把他缩小
  4460. // if (_formel.ismaximize) {
  4461. // return;
  4462. // }
  4463. // U.UF.F.windowZooming(_formel);
  4464. // U.UF.F.topWindow(_formel);
  4465. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4466. // var _formel = document.getElementById("studentStudy");
  4467. // if (_formel.ismaximize) {
  4468. // return;
  4469. // }
  4470. // U.UF.F.windowZooming(_formel);
  4471. // U.UF.F.topWindow(_formel);
  4472. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4473. var _formel = document.getElementById("study");
  4474. // if (_formel.ismaximize) {
  4475. // return;
  4476. // }
  4477. // U.UF.F.windowZooming(_formel);
  4478. U.UF.F.topWindow(_formel);
  4479. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4480. var _formel = document.getElementById("studentIndex");
  4481. U.UF.F.windowZooming(_formel);
  4482. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4483. var _formel = document.getElementById("studyDetailS");
  4484. U.UF.F.windowZooming(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4486. var _formel = document.getElementById("studioIndex");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4489. var _formel = document.getElementById("studyDetailStudio");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4492. var _formel = document.getElementById("studyDetailStudio");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4495. var _formel = document.getElementById("studyDetailNT");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4498. var _formel = document.getElementById("studyDetailS");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4501. var _formel = document.getElementById("studyDetailS");
  4502. U.UF.F.topWindow(_formel);
  4503. } else if (e.data.tools && e.data.tools == "1") {
  4504. // U.MD.D.I.openApplication("whiteboard")
  4505. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "2") {
  4507. U.MD.D.I.openApplication("note")
  4508. } else if (e.data.tools && e.data.tools == "3") {
  4509. // U.MD.D.I.openApplication("mind")
  4510. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "4") {
  4512. U.MD.D.I.openApplication("investigation")
  4513. } else if (e.data.tools && e.data.tools == "6") {
  4514. // U.MD.D.I.openApplication("doc")
  4515. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4516. } else if (e.data.tools && e.data.tools == "7") {
  4517. // U.MD.D.I.openApplication("mindNetwork")
  4518. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4519. } else if (e.data.tools && e.data.tools == "8") {
  4520. U.MD.D.I.openApplication("library")
  4521. } else if (e.data.tools && e.data.tools == "17") {
  4522. U.MD.D.I.openApplication("stuLibrary")
  4523. } else if (e.data.tools && e.data.tools == "18") {
  4524. U.MD.D.I.openApplication("train")
  4525. } else if (e.data.tools && e.data.tools == "21") {
  4526. U.MD.D.I.openApplication("program")
  4527. } else if (e.data.tools && e.data.tools == "22") {
  4528. U.MD.D.I.openApplication("AIprogram2")
  4529. } else if (e.data.tools && e.data.tools == "23") {
  4530. U.MD.D.I.openApplication("Pythonprogram")
  4531. } else if (e.data.tools && e.data.tools == "24") {
  4532. U.MD.D.I.openApplication("AIprogram")
  4533. } else if (e.data.tools && e.data.tools == "25") {
  4534. U.MD.D.I.openApplication("sys")
  4535. } else if (e.data.tools && e.data.tools == "26") {
  4536. // U.MD.D.I.openApplication("courseDesign")
  4537. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4538. } else if (e.data.tools && e.data.tools == "31") {
  4539. U.MD.D.I.openApplication("netWorkPanel")
  4540. } else if (e.data.tools && e.data.tools == "32") {
  4541. U.MD.D.I.openApplication("codeEdit")
  4542. } else if (e.data.tools && e.data.tools == "57") {
  4543. U.MD.D.I.openApplication("CocoPi")
  4544. } else if (e.data.tools && e.data.tools == "63") {
  4545. U.MD.D.I.openApplication("Wood")
  4546. } else if (e.data.tools && e.data.tools == "58") {
  4547. U.MD.D.I.openApplication("car")
  4548. } else if (e.data.tools && e.data.tools == "59") {
  4549. U.MD.D.I.openApplication("lineSearch")
  4550. } else if (e.data.tools && e.data.tools == "60") {
  4551. U.MD.D.I.openApplication("deepLearning")
  4552. } else if (e.data.tools && e.data.tools == "61") {
  4553. U.MD.D.I.openApplication("allHistory")
  4554. } else if (e.data.tools && e.data.tools == "28") {
  4555. U.MD.D.I.openApplication("translation")
  4556. } else if (e.data.tools && e.data.tools == "37") {
  4557. U.MD.D.I.openApplication("mohe")
  4558. } else if (e.data.tools && e.data.tools == "38") {
  4559. U.MD.D.I.openApplication("24game")
  4560. } else if (e.data.tools && e.data.tools == "39") {
  4561. U.MD.D.I.openApplication("GeoGebra")
  4562. } else if (e.data.tools && e.data.tools == "43") {
  4563. U.MD.D.I.openApplication("studentEvaluate")
  4564. } else if (e.data.tools && e.data.tools == "44") {
  4565. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4566. } else if (e.data.tools && e.data.tools == "46") {
  4567. U.MD.D.I.openApplication("project")
  4568. } else if (e.data.tools && e.data.tools == "71") {
  4569. U.MD.D.I.openApplication("aigptCourse")
  4570. } else if (e.data.tools && e.data.tools == "1s") {
  4571. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "3s") {
  4573. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "6s") {
  4575. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "1studio") {
  4577. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3studio") {
  4579. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "6studio") {
  4581. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "3y") {
  4583. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "1y") {
  4585. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4587. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4588. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4589. U.MD.D.I.openApplication("AIAnalyse")
  4590. } else if (e.data.tools && e.data.tools == "1teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "3teacher") {
  4593. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "7teacher") {
  4595. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4597. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4599. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "1E") {
  4601. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "3E") {
  4603. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57y") {
  4605. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "57u") {
  4607. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "57teacher") {
  4609. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4610. } else if (e.data.tools && e.data.tools == "64") {
  4611. U.MD.D.I.openApplication("AIChat")
  4612. } else if (e.data.tools && e.data.tools == "66") {
  4613. U.MD.D.I.openApplication("formulaEdi")
  4614. } else if (e.data.tools && e.data.tools == "67") {
  4615. U.MD.D.I.openApplication("molStr")
  4616. } else if (e.data.tools && e.data.tools == "68") {
  4617. U.MD.D.I.openApplication("timeAxis")
  4618. } else if (e.data.tools && e.data.tools == "openCourse") {
  4619. let _data = {
  4620. typea: e.data.typea || '',
  4621. typeb: e.data.typeb || '',
  4622. typed: e.data.typed || '',
  4623. }
  4624. U.MD.D.I.openInApplication("index", _data)
  4625. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4626. let _data = {
  4627. classid: e.data.classid || '',
  4628. }
  4629. U.MD.D.I.openInApplication("dataClass", _data)
  4630. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4631. let _data = {
  4632. cid: e.data.cid || '',
  4633. gid: e.data.gid || '',
  4634. }
  4635. U.MD.D.I.openInApplication("opencCscl", _data)
  4636. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4637. U.MD.D.I.openApplication("dataBoardTest")
  4638. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4641. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4643. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4645. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4647. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4649. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4650. }else if (e.data.tools && e.data.tools == "loginSz") {
  4651. U.MD.D.I.openInApplication("loginSz")
  4652. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4653. if($('#classroom_observation_board')[0]){
  4654. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4655. }
  4656. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4657. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4658. if($('#classroom_observation_ob_comment')[0]){
  4659. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4660. }
  4661. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4662. }else if (e.data.tools && e.data.tools == "logout"){
  4663. U.MD.U.LO.logoutSystem()
  4664. }else if (e.data.tools && e.data.tools == "getLogin"){
  4665. let _iframe = $('#UI_Login')[0];
  4666. if (_iframe) {
  4667. var userInfo = US.userInfo;
  4668. var type = 2
  4669. if(userInfo && userInfo.userid){
  4670. type = 1
  4671. }
  4672. _contentWindow = _iframe.contentWindow;
  4673. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4674. }
  4675. }
  4676. });
  4677. U.MD.D.I.selectUser = function () {
  4678. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4679. if (res.value[0].length > 0) {
  4680. US.userInfo = res.value[0][0];
  4681. $(".userName")[0].innerHTML = US.userInfo.username;
  4682. }
  4683. }, [], { "type": "GET", "withCredentials": true });
  4684. }
  4685. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4686. var _userinfo = US.userInfo, //登录用户信息
  4687. _userid = US.userInfo.userid, //登录用户id
  4688. _oid = _userinfo.organizeid,
  4689. _type = US.userInfo.type,
  4690. _org = US.userInfo.org,
  4691. _role = US.userInfo.role,
  4692. _classId = US.userInfo.classid;
  4693. if (_type == 4) {
  4694. tType = 4
  4695. }
  4696. switch (str) {
  4697. case "studyDetailNT": //无终端模式
  4698. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4699. setTimeout(() => {
  4700. U.MD.U.L.login();
  4701. }, 2000);
  4702. } else {
  4703. _formdiv = new U.UF.UI.form(
  4704. "课程详情",
  4705. $$("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 }), {
  4706. "id": "studyDetailNT",
  4707. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4708. "onresize": function () { }
  4709. }, {
  4710. closecallback: function () { }
  4711. }, { "style": { "height": "36px" } }).form; //创建窗体
  4712. _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); } }
  4713. break;
  4714. }
  4715. case "studyDetail":
  4716. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4717. setTimeout(() => {
  4718. U.MD.U.L.login();
  4719. }, 2000);
  4720. } else {
  4721. _formdiv = new U.UF.UI.form(
  4722. "课程详情",
  4723. $$("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 }), {
  4724. "id": "studyDetail",
  4725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4726. "onresize": function () { }
  4727. }, {
  4728. closecallback: function () { }
  4729. }, { "style": { "height": "36px" } }).form; //创建窗体
  4730. _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); } }
  4731. break;
  4732. }
  4733. case "studyDetailTrain":
  4734. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4735. setTimeout(() => {
  4736. U.MD.U.L.login();
  4737. }, 2000);
  4738. } else {
  4739. _formdiv = new U.UF.UI.form(
  4740. "培训详情",
  4741. $$("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 }), {
  4742. "id": "studyDetailTrain",
  4743. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4744. "onresize": function () { }
  4745. }, {
  4746. closecallback: function () { }
  4747. }, { "style": { "height": "36px" } }).form; //创建窗体
  4748. _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); } }
  4749. break;
  4750. }
  4751. case "studyDetailS":
  4752. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4753. setTimeout(() => {
  4754. U.MD.U.L.login();
  4755. }, 2000);
  4756. } else {
  4757. _formdiv = new U.UF.UI.form(
  4758. "项目详情",
  4759. $$("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 }), {
  4760. "id": "studyDetailS",
  4761. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4762. "onresize": function () { }
  4763. }, {
  4764. closecallback: function () { }
  4765. }, { "style": { "height": "36px" } }).form; //创建窗体
  4766. _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); } }
  4767. break;
  4768. }
  4769. case "studyDetailStudio":
  4770. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4771. setTimeout(() => {
  4772. U.MD.U.L.login();
  4773. }, 2000);
  4774. } else {
  4775. _formdiv = new U.UF.UI.form(
  4776. "工作详情",
  4777. $$("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 }), {
  4778. "id": "studyDetailStudio",
  4779. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4780. "onresize": function () { }
  4781. }, {
  4782. closecallback: function () { }
  4783. }, { "style": { "height": "36px" } }).form; //创建窗体
  4784. _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); } }
  4785. break;
  4786. }
  4787. case "studyDetailS5":
  4788. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4789. setTimeout(() => {
  4790. U.MD.U.L.login();
  4791. }, 2000);
  4792. } else {
  4793. _formdiv = new U.UF.UI.form(
  4794. "项目详情",
  4795. $$("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 }), {
  4796. "id": "studyDetailS",
  4797. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4798. "onresize": function () { }
  4799. }, {
  4800. closecallback: function () { }
  4801. }, { "style": { "height": "36px" } }).form; //创建窗体
  4802. _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); } }
  4803. break;
  4804. }
  4805. case "studyDetailGM":
  4806. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4807. setTimeout(() => {
  4808. U.MD.U.L.login();
  4809. }, 2000);
  4810. } else {
  4811. _formdiv = new U.UF.UI.form(
  4812. "课程详情",
  4813. $$("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 }), {
  4814. "id": "studyDetail",
  4815. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4816. "onresize": function () { }
  4817. }, {
  4818. closecallback: function () { }
  4819. }, { "style": { "height": "36px" } }).form; //创建窗体
  4820. _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); } }
  4821. break;
  4822. }
  4823. case "hanUrl":
  4824. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4825. setTimeout(() => {
  4826. U.MD.U.L.login();
  4827. }, 2000);
  4828. } else {
  4829. _formdiv = new U.UF.UI.form(
  4830. "汉字宫",
  4831. $$("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" }), {
  4832. "id": "hanUrl",
  4833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4834. "onresize": function () { }
  4835. }, {
  4836. closecallback: function () { }
  4837. }, { "style": { "height": "36px" } }).form; //创建窗体
  4838. _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); } }
  4839. break;
  4840. }
  4841. case "index":
  4842. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4843. setTimeout(() => {
  4844. U.MD.U.L.login();
  4845. }, 2000);
  4846. } else {
  4847. _formdiv = new U.UF.UI.form(
  4848. "课程中心",
  4849. $$("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 }), {
  4850. "id": "study",
  4851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4852. "onresize": function () { }
  4853. }, {
  4854. closecallback: function () { }
  4855. }, { "style": { "height": "36px" } }).form; //创建窗体
  4856. _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); } }
  4857. break;
  4858. }
  4859. case "dataClass":
  4860. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4861. setTimeout(() => {
  4862. U.MD.U.L.login();
  4863. }, 2000);
  4864. } else {
  4865. _formdiv = new U.UF.UI.form(
  4866. "数据报告",
  4867. $$("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 }), {
  4868. "id": "dataClass",
  4869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4870. "onresize": function () { }
  4871. }, {
  4872. closecallback: function () { }
  4873. }, { "style": { "height": "36px" } }).form; //创建窗体
  4874. _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); } }
  4875. break;
  4876. }
  4877. case "opencCscl":
  4878. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4879. setTimeout(() => {
  4880. U.MD.U.L.login();
  4881. }, 2000);
  4882. } else {
  4883. _formdiv = new U.UF.UI.form(
  4884. "协同建构",
  4885. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4886. "id": "futureClass",
  4887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4888. "onresize": function () { }
  4889. }, {
  4890. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4891. }, { "style": { "height": "36px" } }).form; //创建窗体
  4892. _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); } }
  4893. break;
  4894. }
  4895. case "openCourseUpdate":
  4896. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4897. setTimeout(() => {
  4898. U.MD.U.L.login();
  4899. }, 2000);
  4900. } else {
  4901. _formdiv = new U.UF.UI.form(
  4902. "课程管理",
  4903. $$("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 }), {
  4904. "id": "openCourseUpdate",
  4905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4906. "onresize": function () { }
  4907. }, {
  4908. closecallback: function () { }
  4909. }, { "style": { "height": "36px" } }).form; //创建窗体
  4910. break;
  4911. }
  4912. case "openNewCourseUpdate":
  4913. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4914. setTimeout(() => {
  4915. U.MD.U.L.login();
  4916. }, 2000);
  4917. } else {
  4918. _formdiv = new U.UF.UI.form(
  4919. "课程管理",
  4920. $$("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 }), {
  4921. "id": "openCourseUpdate",
  4922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4923. "onresize": function () { }
  4924. }, {
  4925. closecallback: function () { }
  4926. }, { "style": { "height": "36px" } }).form; //创建窗体
  4927. break;
  4928. }
  4929. case "openCourseEUpdate":
  4930. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4931. setTimeout(() => {
  4932. U.MD.U.L.login();
  4933. }, 2000);
  4934. } else {
  4935. _formdiv = new U.UF.UI.form(
  4936. "课程管理",
  4937. $$("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 }), {
  4938. "id": "openCourseUpdate",
  4939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. break;
  4945. }
  4946. case "openCourseAiUpdate":
  4947. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4948. setTimeout(() => {
  4949. U.MD.U.L.login();
  4950. }, 2000);
  4951. } else {
  4952. _formdiv = new U.UF.UI.form(
  4953. "课程管理",
  4954. $$("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 }), {
  4955. "id": "openCourseUpdate",
  4956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. break;
  4962. }
  4963. case "openCourseAiUpdate2":
  4964. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4965. setTimeout(() => {
  4966. U.MD.U.L.login();
  4967. }, 2000);
  4968. } else {
  4969. _formdiv = new U.UF.UI.form(
  4970. "课程管理",
  4971. $$("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 }), {
  4972. "id": "openCourseUpdate",
  4973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4974. "onresize": function () { }
  4975. }, {
  4976. closecallback: function () { }
  4977. }, { "style": { "height": "36px" } }).form; //创建窗体
  4978. break;
  4979. }
  4980. case "openCourseNewUpdate":
  4981. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4982. setTimeout(() => {
  4983. U.MD.U.L.login();
  4984. }, 2000);
  4985. } else {
  4986. _formdiv = new U.UF.UI.form(
  4987. "课程管理",
  4988. $$("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 }), {
  4989. "id": "openCourseUpdate",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. break;
  4996. }
  4997. case "inviteLoginSz":
  4998. _formdiv = new U.UF.UI.form(
  4999. "随机码登录",
  5000. $$("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 }), {
  5001. "id": "loginSz",
  5002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. break;
  5008. case "loginSz":
  5009. _formdiv = new U.UF.UI.form(
  5010. "教师登录",
  5011. $$("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" }), {
  5012. "id": "loginSz",
  5013. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5014. "onresize": function () { }
  5015. }, {
  5016. closecallback: function () { }
  5017. }, { "style": { "height": "36px" } }).form; //创建窗体
  5018. break;
  5019. case "teacher":
  5020. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5021. setTimeout(() => {
  5022. U.MD.U.L.login();
  5023. }, 2000);
  5024. } else {
  5025. _formdiv = new U.UF.UI.form(
  5026. "教师管理",
  5027. $$("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 }), {
  5028. "id": "teacher",
  5029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. break;
  5035. }
  5036. case "dataBoardSZArea":
  5037. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5038. setTimeout(() => {
  5039. U.MD.U.L.login();
  5040. }, 2000);
  5041. } else {
  5042. _formdiv = new U.UF.UI.form(
  5043. "综合数据看板",
  5044. $$("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 }), {
  5045. "id": "dataBoardSZArea",
  5046. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5047. "onresize": function () { }
  5048. }, {
  5049. closecallback: function () { }
  5050. }, { "style": { "height": "36px" } }).form; //创建窗体
  5051. break;
  5052. }
  5053. case "dataBoardSZCity":
  5054. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5055. setTimeout(() => {
  5056. U.MD.U.L.login();
  5057. }, 2000);
  5058. } else {
  5059. _formdiv = new U.UF.UI.form(
  5060. "综合数据看板",
  5061. $$("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 }), {
  5062. "id": "dataBoardSZCity",
  5063. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5064. "onresize": function () { }
  5065. }, {
  5066. closecallback: function () { }
  5067. }, { "style": { "height": "36px" } }).form; //创建窗体
  5068. break;
  5069. }
  5070. case "classroom_observation_board":
  5071. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5072. setTimeout(() => {
  5073. U.MD.U.L.login();
  5074. }, 2000);
  5075. } else {
  5076. _formdiv = new U.UF.UI.form(
  5077. "课堂观察",
  5078. $$("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 }), {
  5079. "id": "classroom_observation_board",
  5080. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. break;
  5086. }
  5087. case "classroom_observation_ob_comment":
  5088. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5089. setTimeout(() => {
  5090. U.MD.U.L.login();
  5091. }, 2000);
  5092. } else {
  5093. _formdiv = new U.UF.UI.form(
  5094. "课堂审核",
  5095. $$("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 }), {
  5096. "id": "classroom_observation_ob_comment",
  5097. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5098. "onresize": function () { }
  5099. }, {
  5100. closecallback: function () { }
  5101. }, { "style": { "height": "36px" } }).form; //创建窗体
  5102. break;
  5103. }
  5104. }
  5105. }
  5106. U.MD.D.I.openApplication = function (str, obj, info) {
  5107. obj = obj || {};
  5108. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5109. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5110. _userinfo = US.userInfo, //登录用户信息
  5111. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5112. _oid = obj.organizeid || _userinfo.organizeid,
  5113. _type = US.userInfo.type,
  5114. _org = US.userInfo.org,
  5115. _role = US.userInfo.role,
  5116. _classId = US.userInfo.classid,
  5117. _TscreenType = 1
  5118. _screenType = 2,
  5119. _SscreenType = 3;
  5120. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5121. return;
  5122. }
  5123. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5124. switch (str) {
  5125. case "studnetProject": //好友打开
  5126. _formdiv = new U.UF.UI.form(
  5127. "我的项目",
  5128. $$("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 }), {
  5129. "id": "studnetProject",
  5130. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _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); } }
  5136. break;
  5137. case "studentEvaluate": //好友打开
  5138. _formdiv = new U.UF.UI.form(
  5139. "我的评价",
  5140. $$("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 }), {
  5141. "id": "studentEvaluate",
  5142. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5143. "onresize": function () { }
  5144. }, {
  5145. closecallback: function () { }
  5146. }, { "style": { "height": "36px" } }).form; //创建窗体
  5147. _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); } }
  5148. break;
  5149. case "my":
  5150. _formdiv = new U.UF.UI.form(
  5151. "我的资料",
  5152. $$("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 }), {
  5153. "id": "my",
  5154. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //创建窗体
  5159. _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); } }
  5160. break;
  5161. case "program":
  5162. _formdiv = new U.UF.UI.form(
  5163. "编程平台",
  5164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5165. "id": "program",
  5166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. _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); } }
  5172. break;
  5173. case "library":
  5174. _formdiv = new U.UF.UI.form(
  5175. "素材库",
  5176. $$("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 }), {
  5177. "id": "library",
  5178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _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); } }
  5184. break;
  5185. case "whiteboard":
  5186. _formdiv = new U.UF.UI.form(
  5187. "电子白板",
  5188. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5189. "id": "whiteboard",
  5190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. _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); } }
  5196. break;
  5197. case "investigation":
  5198. _formdiv = new U.UF.UI.form(
  5199. "问卷调查",
  5200. $$("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 }), {
  5201. "id": "investigation",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. _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); } }
  5208. break;
  5209. case "note":
  5210. _formdiv = new U.UF.UI.form(
  5211. "便签分类",
  5212. $$("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 }), {
  5213. "id": "note",
  5214. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _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); } }
  5220. break;
  5221. // case "score":
  5222. // _formdiv = new U.UF.UI.form(
  5223. // "量规评分",
  5224. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5225. // "id": "score",
  5226. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5227. // "onresize": function() {}
  5228. // }, {
  5229. // closecallback: function() {}
  5230. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5231. // _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); } }
  5232. // break;
  5233. case "mind":
  5234. _formdiv = new U.UF.UI.form(
  5235. "思维导图",
  5236. $$("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"
  5237. "id": "mind",
  5238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5239. "onresize": function () { }
  5240. }, {
  5241. closecallback: function () { }
  5242. }, { "style": { "height": "36px" } }).form; //创建窗体
  5243. _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); } }
  5244. break;
  5245. case "doc":
  5246. // U.MD.D.I.isRoom();
  5247. _formdiv = new U.UF.UI.form(
  5248. "协同文档",
  5249. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5250. "id": "doc",
  5251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5257. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5258. // })
  5259. _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); } }
  5260. break;
  5261. case "studentStudy":
  5262. _formdiv = new U.UF.UI.form(
  5263. "课程中心",
  5264. $$("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
  5265. "id": "studentStudy",
  5266. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. case "train": //好友打开
  5274. _formdiv = new U.UF.UI.form(
  5275. "训练平台",
  5276. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5277. "id": "train",
  5278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "mindNetwork": //好友打开
  5286. _formdiv = new U.UF.UI.form(
  5287. "思维网格",
  5288. $$("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 }), {
  5289. "id": "mindNetwork",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "studentClassRoom": //好友打开
  5298. _formdiv = new U.UF.UI.form(
  5299. "实时课堂",
  5300. $$("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 }), {
  5301. "id": "studentClassRoom",
  5302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. setTimeout(() => {
  5309. U.UF.F.windowZooming(_formdiv)
  5310. }, 0);
  5311. break;
  5312. }
  5313. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5314. switch (str) {
  5315. case "studnetProject": //好友打开
  5316. _formdiv = new U.UF.UI.form(
  5317. "我的项目",
  5318. $$("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 }), {
  5319. "id": "studnetProject",
  5320. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "studentEvaluate": //好友打开
  5328. _formdiv = new U.UF.UI.form(
  5329. "我的评价",
  5330. $$("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 }), {
  5331. "id": "studentEvaluate",
  5332. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. case "my":
  5340. _formdiv = new U.UF.UI.form(
  5341. "我的资料",
  5342. $$("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 }), {
  5343. "id": "my",
  5344. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. case "program":
  5352. _formdiv = new U.UF.UI.form(
  5353. "编程平台",
  5354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5355. "id": "program",
  5356. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _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); } }
  5362. break;
  5363. case "library":
  5364. _formdiv = new U.UF.UI.form(
  5365. "素材库",
  5366. $$("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 }), {
  5367. "id": "library",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _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); } }
  5374. break;
  5375. case "whiteboard":
  5376. _formdiv = new U.UF.UI.form(
  5377. "电子白板",
  5378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5379. "id": "whiteboard",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _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); } }
  5386. break;
  5387. case "investigation":
  5388. _formdiv = new U.UF.UI.form(
  5389. "问卷调查",
  5390. $$("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 }), {
  5391. "id": "investigation",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _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); } }
  5398. break;
  5399. case "note":
  5400. _formdiv = new U.UF.UI.form(
  5401. "便签分类",
  5402. $$("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 }), {
  5403. "id": "note",
  5404. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _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); } }
  5410. break;
  5411. // case "score":
  5412. // _formdiv = new U.UF.UI.form(
  5413. // "量规评分",
  5414. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5415. // "id": "score",
  5416. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. // "onresize": function() {}
  5418. // }, {
  5419. // closecallback: function() {}
  5420. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. // _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); } }
  5422. // break;
  5423. case "mind":
  5424. _formdiv = new U.UF.UI.form(
  5425. "思维导图",
  5426. $$("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"
  5427. "id": "mind",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _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); } }
  5434. break;
  5435. case "doc":
  5436. // U.MD.D.I.isRoom();
  5437. _formdiv = new U.UF.UI.form(
  5438. "协同文档",
  5439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5440. "id": "doc",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5447. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5448. })
  5449. _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); } }
  5450. break;
  5451. case "train": //好友打开
  5452. _formdiv = new U.UF.UI.form(
  5453. "训练平台",
  5454. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5455. "id": "train",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5462. break;
  5463. case "studentStudy":
  5464. _formdiv = new U.UF.UI.form(
  5465. "课程中心",
  5466. $$("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
  5467. "id": "studentStudy",
  5468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _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); } }
  5474. break;
  5475. case "mindNetwork": //好友打开
  5476. _formdiv = new U.UF.UI.form(
  5477. "思维网格",
  5478. $$("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 }), {
  5479. "id": "mindNetwork",
  5480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _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); } }
  5486. break;
  5487. case "studentClassRoom": //好友打开
  5488. _formdiv = new U.UF.UI.form(
  5489. "实时课堂",
  5490. $$("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 }), {
  5491. "id": "studentClassRoom",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. _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); } }
  5498. setTimeout(() => {
  5499. U.UF.F.windowZooming(_formdiv)
  5500. }, 0);
  5501. break;
  5502. }
  5503. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5504. //选择应用处理
  5505. switch (str) {
  5506. case "project": //好友打开
  5507. _formdiv = new U.UF.UI.form(
  5508. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5509. $$("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 }), {
  5510. "id": "project",
  5511. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5512. "onresize": function () { }
  5513. }, {
  5514. closecallback: function () { }
  5515. }, { "style": { "height": "36px" } }).form; //创建窗体
  5516. _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); } }
  5517. break;
  5518. case "student":
  5519. _formdiv = new U.UF.UI.form(
  5520. "学生管理",
  5521. $$("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 }), {
  5522. "id": "student",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. _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); } }
  5529. break;
  5530. case "evaluate":
  5531. _formdiv = new U.UF.UI.form(
  5532. "学生评价",
  5533. $$("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 }), {
  5534. "id": "evaluate",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. case "sys":
  5543. _formdiv = new U.UF.UI.form(
  5544. "目标管理",
  5545. $$("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 }), {
  5546. "id": "sys",
  5547. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5548. "onresize": function () { }
  5549. }, {
  5550. closecallback: function () { }
  5551. }, { "style": { "height": "36px" } }).form; //创建窗体
  5552. _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); } }
  5553. break;
  5554. case "courseDesign":
  5555. _formdiv = new U.UF.UI.form(
  5556. "项目设计",
  5557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5558. "id": "courseDesign",
  5559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5560. "onresize": function () { }
  5561. }, {
  5562. closecallback: function () { }
  5563. }, { "style": { "height": "36px" } }).form; //创建窗体
  5564. _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); } }
  5565. break;
  5566. case "program":
  5567. _formdiv = new U.UF.UI.form(
  5568. "编程平台",
  5569. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5570. "id": "program",
  5571. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. case "class":
  5579. _formdiv = new U.UF.UI.form(
  5580. "班级管理",
  5581. $$("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 }), {
  5582. "id": "class",
  5583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. _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); } }
  5589. break;
  5590. case "Grade":
  5591. _formdiv = new U.UF.UI.form(
  5592. "年级管理",
  5593. $$("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 }), {
  5594. "id": "Grade",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. _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); } }
  5601. break;
  5602. case "teacherOffice":
  5603. _formdiv = new U.UF.UI.form(
  5604. "教研室",
  5605. $$("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 }), {
  5606. "id": "teacherOffice",
  5607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5608. "onresize": function () { }
  5609. }, {
  5610. closecallback: function () { }
  5611. }, { "style": { "height": "36px" } }).form; //创建窗体
  5612. _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); } }
  5613. break;
  5614. case "my":
  5615. _formdiv = new U.UF.UI.form(
  5616. "我的资料",
  5617. $$("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 }), {
  5618. "id": "my",
  5619. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. _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); } }
  5625. break;
  5626. case "notice":
  5627. _formdiv = new U.UF.UI.form(
  5628. "通知公告",
  5629. $$("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 }), {
  5630. "id": "notice",
  5631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //创建窗体
  5636. _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); } }
  5637. break;
  5638. case "library":
  5639. _formdiv = new U.UF.UI.form(
  5640. "素材库",
  5641. $$("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 }), {
  5642. "id": "library",
  5643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //创建窗体
  5648. _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); } }
  5649. break;
  5650. case "whiteboard":
  5651. _formdiv = new U.UF.UI.form(
  5652. "电子白板",
  5653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5654. "id": "whiteboard",
  5655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. _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); } }
  5661. break;
  5662. case "investigation":
  5663. _formdiv = new U.UF.UI.form(
  5664. "问卷调查",
  5665. $$("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 }), {
  5666. "id": "investigation",
  5667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. _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); } }
  5673. break;
  5674. case "note":
  5675. _formdiv = new U.UF.UI.form(
  5676. "便签分类",
  5677. $$("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 }), {
  5678. "id": "note",
  5679. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. _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); } }
  5685. break;
  5686. // case "score":
  5687. // _formdiv = new U.UF.UI.form(
  5688. // "量规评分",
  5689. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5690. // "id": "score",
  5691. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5692. // "onresize": function() {}
  5693. // }, {
  5694. // closecallback: function() {}
  5695. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. // _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); } }
  5697. // break;
  5698. case "mind":
  5699. _formdiv = new U.UF.UI.form(
  5700. "思维导图",
  5701. $$("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"
  5702. "id": "mind",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _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); } }
  5709. break;
  5710. case "doc":
  5711. // U.MD.D.I.isRoom();
  5712. _formdiv = new U.UF.UI.form(
  5713. "协同文档",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5715. "id": "doc",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5722. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5723. })
  5724. _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); } }
  5725. break;
  5726. case "study":
  5727. _formdiv = new U.UF.UI.form(
  5728. "课程中心",
  5729. $$("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
  5730. "id": "study",
  5731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "mindNetwork": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "思维网格",
  5741. $$("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 }), {
  5742. "id": "mindNetwork",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "train": //好友打开
  5751. _formdiv = new U.UF.UI.form(
  5752. "训练平台",
  5753. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5754. "id": "mindNetwork",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "teacherClassRoom": //好友打开
  5763. _formdiv = new U.UF.UI.form(
  5764. "实时课堂",
  5765. $$("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 }), {
  5766. "id": "teacherClassRoom",
  5767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. setTimeout(() => {
  5774. U.UF.F.windowZooming(_formdiv)
  5775. }, 0);
  5776. break;
  5777. }
  5778. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5779. switch (str) {
  5780. case "project": //好友打开
  5781. _formdiv = new U.UF.UI.form(
  5782. "课程管理",
  5783. $$("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 }), {
  5784. "id": "project",
  5785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. _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); } }
  5791. break;
  5792. case "evaluate":
  5793. _formdiv = new U.UF.UI.form(
  5794. "学生评价",
  5795. $$("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 }), {
  5796. "id": "evaluate",
  5797. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () { }
  5801. }, { "style": { "height": "36px" } }).form; //创建窗体
  5802. _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); } }
  5803. break;
  5804. case "notice":
  5805. _formdiv = new U.UF.UI.form(
  5806. "通知公告",
  5807. $$("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 }), {
  5808. "id": "notice",
  5809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //创建窗体
  5814. _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); } }
  5815. break;
  5816. case "stuLibrary":
  5817. _formdiv = new U.UF.UI.form(
  5818. "学习资料",
  5819. $$("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 }), {
  5820. "id": "stuLibrary",
  5821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, { "style": { "height": "36px" } }).form; //创建窗体
  5826. _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); } }
  5827. break;
  5828. case "program":
  5829. _formdiv = new U.UF.UI.form(
  5830. "编程平台",
  5831. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5832. "id": "program",
  5833. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //创建窗体
  5838. _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); } }
  5839. break;
  5840. case "whiteboard":
  5841. _formdiv = new U.UF.UI.form(
  5842. "电子白板",
  5843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5844. "id": "whiteboard",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. _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); } }
  5851. break;
  5852. case "investigation":
  5853. _formdiv = new U.UF.UI.form(
  5854. "问卷调查",
  5855. $$("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 }), {
  5856. "id": "investigation",
  5857. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //创建窗体
  5862. _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); } }
  5863. break;
  5864. case "mind":
  5865. _formdiv = new U.UF.UI.form(
  5866. "思维导图",
  5867. $$("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"
  5868. "id": "mind",
  5869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _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); } }
  5875. break;
  5876. case "doc":
  5877. // U.MD.D.I.isRoom();
  5878. _formdiv = new U.UF.UI.form(
  5879. "协同文档",
  5880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5881. "id": "doc",
  5882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5888. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5889. })
  5890. _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); } }
  5891. break;
  5892. case "study":
  5893. _formdiv = new U.UF.UI.form(
  5894. "课程中心",
  5895. $$("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
  5896. "id": "study",
  5897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _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); } }
  5903. break;
  5904. case "mindNetwork": //好友打开
  5905. _formdiv = new U.UF.UI.form(
  5906. "思维网格",
  5907. $$("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 }), {
  5908. "id": "mindNetwork",
  5909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "train": //好友打开
  5917. _formdiv = new U.UF.UI.form(
  5918. "训练平台",
  5919. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5920. "id": "train",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. case "sys":
  5929. _formdiv = new U.UF.UI.form(
  5930. "目标管理",
  5931. $$("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 }), {
  5932. "id": "sys",
  5933. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //创建窗体
  5938. _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); } }
  5939. break;
  5940. case "courseDesign":
  5941. _formdiv = new U.UF.UI.form(
  5942. "项目设计",
  5943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5944. "id": "courseDesign",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. _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); } }
  5951. break;
  5952. }
  5953. } else if (!_type) {
  5954. switch (str) {
  5955. case "my":
  5956. _formdiv = new U.UF.UI.form(
  5957. "我的资料",
  5958. $$("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 }), {
  5959. "id": "my",
  5960. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. }
  5968. }
  5969. switch (str) {
  5970. // AIprogram2 AI体验 aihub.cocorobo.cn
  5971. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5972. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5973. case "formulaEdi": //公式编辑
  5974. _formdiv = new U.UF.UI.form(
  5975. "公式编辑",
  5976. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5977. "id": "formulaEdi",
  5978. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5979. "onresize": function () { }
  5980. }, {
  5981. closecallback: function () { }
  5982. }, { "style": { "height": "36px" } }).form; //创建窗体
  5983. _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); } }
  5984. break;
  5985. case "molStr": //分子结构
  5986. _formdiv = new U.UF.UI.form(
  5987. "分子结构",
  5988. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5989. "id": "molStr",
  5990. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, { "style": { "height": "36px" } }).form; //创建窗体
  5995. _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); } }
  5996. break;
  5997. case "timeAxis": //时间轴
  5998. _formdiv = new U.UF.UI.form(
  5999. "时间轴",
  6000. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6001. "id": "timeAxis",
  6002. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6003. "onresize": function () { }
  6004. }, {
  6005. closecallback: function () { }
  6006. }, { "style": { "height": "36px" } }).form; //创建窗体
  6007. _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); } }
  6008. break;
  6009. case "AIprogram2": //AI体验
  6010. _formdiv = new U.UF.UI.form(
  6011. "AI体验",
  6012. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6013. "id": "AIprogram2",
  6014. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6015. "onresize": function () { }
  6016. }, {
  6017. closecallback: function () { }
  6018. }, { "style": { "height": "36px" } }).form; //创建窗体
  6019. _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); } }
  6020. break;
  6021. case "Pythonprogram": //python编程
  6022. _formdiv = new U.UF.UI.form(
  6023. "Python编程",
  6024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6025. "id": "Pythonprogram",
  6026. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6027. "onresize": function () { }
  6028. }, {
  6029. closecallback: function () { }
  6030. }, { "style": { "height": "36px" } }).form; //创建窗体
  6031. _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); } }
  6032. break;
  6033. case "AIprogram": //ai编程
  6034. _formdiv = new U.UF.UI.form(
  6035. "AI编程平台",
  6036. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6037. "id": "AIprogram",
  6038. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6039. "onresize": function () { }
  6040. }, {
  6041. closecallback: function () { }
  6042. }, { "style": { "height": "36px" } }).form; //创建窗体
  6043. _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); } }
  6044. break;
  6045. case "CocoPi": //CocoPi
  6046. _formdiv = new U.UF.UI.form(
  6047. "CocoPi",
  6048. $$("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" }), {
  6049. "id": "CocoPi",
  6050. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6051. "onresize": function () { }
  6052. }, {
  6053. closecallback: function () { }
  6054. }, { "style": { "height": "36px" } }).form; //创建窗体
  6055. _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); } }
  6056. break;
  6057. case "Wood": //Wood
  6058. _formdiv = new U.UF.UI.form(
  6059. "海龟编程",
  6060. $$("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/" }), {
  6061. "id": "Wood",
  6062. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6063. "onresize": function () { }
  6064. }, {
  6065. closecallback: function () { }
  6066. }, { "style": { "height": "36px" } }).form; //创建窗体
  6067. _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); } }
  6068. break;
  6069. case "car": //模拟驾驶
  6070. _formdiv = new U.UF.UI.form(
  6071. "模拟驾驶",
  6072. $$("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/" }), {
  6073. "id": "car",
  6074. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. _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); } }
  6080. break;
  6081. case "lineSearch": //路径搜索
  6082. _formdiv = new U.UF.UI.form(
  6083. "路径搜索",
  6084. $$("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/" }), {
  6085. "id": "lineSearch",
  6086. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6092. break;
  6093. case "deepLearning": //深度学习
  6094. _formdiv = new U.UF.UI.form(
  6095. "深度学习",
  6096. $$("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/#" }), {
  6097. "id": "deepLearning",
  6098. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6104. break;
  6105. case "allHistory": //深度学习
  6106. _formdiv = new U.UF.UI.form(
  6107. "全历史",
  6108. $$("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/" }), {
  6109. "id": "allHistory",
  6110. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6116. break;
  6117. case "chatPDF": //ai编程
  6118. _formdiv = new U.UF.UI.form(
  6119. "chatPDF",
  6120. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6121. "id": "chatPDF",
  6122. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6128. break;
  6129. case "resources": //国家教育
  6130. _formdiv = new U.UF.UI.form(
  6131. "国家教育",
  6132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6133. "id": "resources",
  6134. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6140. break;
  6141. case "codeEdit": //源码编辑
  6142. _formdiv = new U.UF.UI.form(
  6143. "源码编辑",
  6144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6145. "id": "codeEdit",
  6146. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6152. break; //
  6153. case "MindMap": //MindMap
  6154. _formdiv = new U.UF.UI.form(
  6155. "MindMap",
  6156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6157. "id": "MindMap",
  6158. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6164. break;
  6165. case "netWorkPanel": //netWorkPanel
  6166. _formdiv = new U.UF.UI.form(
  6167. "netWorkPanel",
  6168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6169. "id": "netWorkPanel",
  6170. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6176. break;
  6177. case "GeoGebra": //GeoGebra
  6178. _formdiv = new U.UF.UI.form(
  6179. "GeoGebra",
  6180. $$("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" }), {
  6181. "id": "GeoGebra",
  6182. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6188. break;
  6189. case "translation": //翻译
  6190. _formdiv = new U.UF.UI.form(
  6191. "翻译",
  6192. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6193. "id": "translation",
  6194. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6200. break;
  6201. case "mohe": //魔盒
  6202. _formdiv = new U.UF.UI.form(
  6203. "魔盒识字",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6205. "id": "mohe",
  6206. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6212. break;
  6213. case "24game": //24点
  6214. _formdiv = new U.UF.UI.form(
  6215. "24点",
  6216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6217. "id": "24game",
  6218. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6224. break;
  6225. case "case":
  6226. _formdiv = new U.UF.UI.form(
  6227. "课程进展",
  6228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6229. "id": "case",
  6230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6236. break;
  6237. case "snf":
  6238. _formdiv = new U.UF.UI.form(
  6239. "赛诺梵",
  6240. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6241. "id": "snf",
  6242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. "onresize": function () { }
  6244. }, {
  6245. closecallback: function () { }
  6246. }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6248. break;
  6249. case "hanFamily":
  6250. _formdiv = new U.UF.UI.form(
  6251. "汉字家族",
  6252. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6253. "id": "hanFamily",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6260. break;
  6261. case "hanClassics":
  6262. _formdiv = new U.UF.UI.form(
  6263. "国学经典",
  6264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6265. "id": "hanClassics",
  6266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6267. "onresize": function () { }
  6268. }, {
  6269. closecallback: function () { }
  6270. }, { "style": { "height": "36px" } }).form; //创建窗体
  6271. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6272. break;
  6273. case "hanTraining":
  6274. _formdiv = new U.UF.UI.form(
  6275. "笔画训练",
  6276. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6277. "id": "hanTraining",
  6278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, { "style": { "height": "36px" } }).form; //创建窗体
  6283. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6284. break;
  6285. case "hanClass":
  6286. _formdiv = new U.UF.UI.form(
  6287. "书法课堂",
  6288. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6289. "id": "hanClass",
  6290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6291. "onresize": function () { }
  6292. }, {
  6293. closecallback: function () { }
  6294. }, { "style": { "height": "36px" } }).form; //创建窗体
  6295. _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); } }
  6296. break;
  6297. case "han":
  6298. _formdiv = new U.UF.UI.form(
  6299. "汉字宫",
  6300. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6301. "id": "han",
  6302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //创建窗体
  6307. _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); } }
  6308. break;
  6309. case "projectGM": //课程管理
  6310. _formdiv = new U.UF.UI.form(
  6311. "课程管理",
  6312. $$("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 }), {
  6313. "id": "projectGM",
  6314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //创建窗体
  6319. _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); } }
  6320. break;
  6321. case "studyGM": //课程中心
  6322. _formdiv = new U.UF.UI.form(
  6323. "课程中心",
  6324. $$("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
  6325. "id": "study",
  6326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6327. "onresize": function () { }
  6328. }, {
  6329. closecallback: function () { }
  6330. }, { "style": { "height": "36px" } }).form; //创建窗体
  6331. _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); } }
  6332. break;
  6333. // studentGM
  6334. case "studentGM": //学生管理
  6335. _formdiv = new U.UF.UI.form(
  6336. "学生管理",
  6337. $$("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 }), {
  6338. "id": "studentGM",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _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); } }
  6345. break;
  6346. case "evaluateGM": //学生评价
  6347. _formdiv = new U.UF.UI.form(
  6348. "学生评价",
  6349. $$("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 }), {
  6350. "id": "evaluateGM",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _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); } }
  6357. break;
  6358. // classGM
  6359. case "classGM": //班级管理
  6360. _formdiv = new U.UF.UI.form(
  6361. "班级管理",
  6362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6363. "id": "classGM",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6370. break;
  6371. // dataGM
  6372. case "dataGM":
  6373. _formdiv = new U.UF.UI.form(
  6374. "我的资料",
  6375. $$("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 }), {
  6376. "id": "dataGM",
  6377. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _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); } }
  6383. break;
  6384. // caseGM
  6385. case "caseGM": //课程进展
  6386. _formdiv = new U.UF.UI.form(
  6387. "课程进展",
  6388. $$("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 }), {
  6389. "id": "caseGM",
  6390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. // meterialGM
  6398. case "meterialGM": //素材库
  6399. _formdiv = new U.UF.UI.form(
  6400. "素材库",
  6401. $$("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 }), {
  6402. "id": "meterialGM",
  6403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //创建窗体
  6408. _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); } }
  6409. break;
  6410. // evaluateSGM
  6411. case "evaluateSGM": //我的评价
  6412. _formdiv = new U.UF.UI.form(
  6413. "我的评价",
  6414. $$("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 }), {
  6415. "id": "evaluateSGM",
  6416. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6417. "onresize": function () { }
  6418. }, {
  6419. closecallback: function () { }
  6420. }, { "style": { "height": "36px" } }).form; //创建窗体
  6421. _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); } }
  6422. break;
  6423. case "jupyter": //jupyter
  6424. _formdiv = new U.UF.UI.form(
  6425. "jupyter",
  6426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6427. "id": "jupyter",
  6428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _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); } }
  6434. break;
  6435. case "number": //数字实验室
  6436. _formdiv = new U.UF.UI.form(
  6437. "数字实验室",
  6438. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6439. "id": "number",
  6440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _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); } }
  6446. break;
  6447. case "studentCourse": //项目管理 学生
  6448. _formdiv = new U.UF.UI.form(
  6449. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6450. $$("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 }), {
  6451. "id": "studentCourse",
  6452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _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); } }
  6458. break;
  6459. case "studentCourseS": //项目管理 老师
  6460. _formdiv = new U.UF.UI.form(
  6461. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6462. $$("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 }), {
  6463. "id": "studentCourseS",
  6464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. _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); } }
  6470. break;
  6471. case "studentIndex": //项目中心
  6472. _formdiv = new U.UF.UI.form(
  6473. "项目中心",
  6474. $$("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 }), {
  6475. "id": "studentIndex",
  6476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6477. "onresize": function () { }
  6478. }, {
  6479. closecallback: function () { }
  6480. }, { "style": { "height": "36px" } }).form; //创建窗体
  6481. _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); } }
  6482. break;
  6483. case "CaseDesignS":
  6484. _formdiv = new U.UF.UI.form(
  6485. "项目进展",
  6486. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6487. "id": "case",
  6488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, { "style": { "height": "36px" } }).form; //创建窗体
  6493. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6494. break;
  6495. case "tcStudent": //腾讯学生管理
  6496. _formdiv = new U.UF.UI.form(
  6497. "学生管理",
  6498. $$("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 }), {
  6499. "id": "tcStudent",
  6500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, { "style": { "height": "36px" } }).form; //创建窗体
  6505. _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); } }
  6506. break;
  6507. case "tcSchool": //腾讯学校管理
  6508. _formdiv = new U.UF.UI.form(
  6509. "学校管理",
  6510. $$("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 }), {
  6511. "id": "tcSchool",
  6512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6513. "onresize": function () { }
  6514. }, {
  6515. closecallback: function () { }
  6516. }, { "style": { "height": "36px" } }).form; //创建窗体
  6517. _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); } }
  6518. break;
  6519. case "tcTeacher": //腾讯学校管理
  6520. _formdiv = new U.UF.UI.form(
  6521. "教师管理",
  6522. $$("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 }), {
  6523. "id": "tcTeacher",
  6524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6525. "onresize": function () { }
  6526. }, {
  6527. closecallback: function () { }
  6528. }, { "style": { "height": "36px" } }).form; //创建窗体
  6529. _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); } }
  6530. break;
  6531. case "teacher":
  6532. _formdiv = new U.UF.UI.form(
  6533. "教师管理",
  6534. $$("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 }), {
  6535. "id": "teacher",
  6536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6537. "onresize": function () { }
  6538. }, {
  6539. closecallback: function () { }
  6540. }, { "style": { "height": "36px" } }).form; //创建窗体
  6541. _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); } }
  6542. break;
  6543. case "tcData": //腾讯我的资料
  6544. _formdiv = new U.UF.UI.form(
  6545. "我的资料",
  6546. $$("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 }), {
  6547. "id": "tcData",
  6548. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6549. "onresize": function () { }
  6550. }, {
  6551. closecallback: function () { }
  6552. }, { "style": { "height": "36px" } }).form; //创建窗体
  6553. _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); } }
  6554. break;
  6555. case "tcNotice": //腾讯消息通知
  6556. _formdiv = new U.UF.UI.form(
  6557. "消息通知",
  6558. $$("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 }), {
  6559. "id": "tcNotice",
  6560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6561. "onresize": function () { }
  6562. }, {
  6563. closecallback: function () { }
  6564. }, { "style": { "height": "36px" } }).form; //创建窗体
  6565. _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); } }
  6566. break;
  6567. case "myReport": //好友打开
  6568. _formdiv = new U.UF.UI.form(
  6569. "我的评价",
  6570. $$("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 }), {
  6571. "id": "myReport",
  6572. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6573. "onresize": function () { }
  6574. }, {
  6575. closecallback: function () { }
  6576. }, { "style": { "height": "36px" } }).form; //创建窗体
  6577. _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); } }
  6578. break;
  6579. case "learnAna": //好友打开
  6580. _formdiv = new U.UF.UI.form(
  6581. "学习分析",
  6582. $$("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 }), {
  6583. "id": "learnAna",
  6584. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6585. "onresize": function () { }
  6586. }, {
  6587. closecallback: function () { }
  6588. }, { "style": { "height": "36px" } }).form; //创建窗体
  6589. _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); } }
  6590. break;
  6591. case "AIChat": //AI共创
  6592. _formdiv = new U.UF.UI.form(
  6593. "AI共创",
  6594. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6595. "id": "AIChat",
  6596. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6597. "onresize": function () { }
  6598. }, {
  6599. istop: true,
  6600. closecallback: function () { $("#aichat_icon").remove(); },
  6601. narrowcallback: function () {
  6602. if (!$("#aichat_icon")[0]) {
  6603. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6604. }
  6605. },
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. case "ainew": //AI共创
  6610. _formdiv = new U.UF.UI.form(
  6611. "AI协同",
  6612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6613. "id": "ainew",
  6614. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _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); } }
  6620. break;
  6621. case "gpt4": //gpt4
  6622. _formdiv = new U.UF.UI.form(
  6623. "AI助手",
  6624. $$("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 }), {
  6625. "id": "gpt4",
  6626. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "aigpt": //gpt4
  6634. _formdiv = new U.UF.UI.form(
  6635. "AI助手+",
  6636. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6637. "id": "aigpt",
  6638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () {
  6642. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6643. }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6647. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6648. })
  6649. break;
  6650. case "aiKnowledge": //aiKnowledge
  6651. _formdiv = new U.UF.UI.form(
  6652. "知识建构",
  6653. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6654. "id": "aiKnowledge",
  6655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. case "futureClass": //AI共创
  6663. _formdiv = new U.UF.UI.form(
  6664. "协同建构",
  6665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6666. "id": "synergyCourse",
  6667. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6668. "onresize": function () { }
  6669. }, {
  6670. closecallback: function () {
  6671. $("iframe", _formdiv)[0].contentWindow.loginout();
  6672. }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. case "aiagent": //ai agent
  6677. _formdiv = new U.UF.UI.form(
  6678. "AI Agent",
  6679. $$("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" }), {
  6680. "id": "AIAgent",
  6681. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, { "style": { "height": "36px" } }).form; //创建窗体
  6686. _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); } }
  6687. break;
  6688. case "dataBoard": //数据看板
  6689. _formdiv = new U.UF.UI.form(
  6690. "数据看板",
  6691. $$("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 }), {
  6692. "id": "dataBoard",
  6693. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. closecallback: function () { }
  6697. }, { "style": { "height": "36px" } }).form; //创建窗体
  6698. _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); } }
  6699. break;
  6700. case "dataBoardSies": //数据融合
  6701. _formdiv = new U.UF.UI.form(
  6702. "数据融合",
  6703. $$("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 }), {
  6704. "id": "dataBoardSies",
  6705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6706. "onresize": function () { }
  6707. }, {
  6708. closecallback: function () { }
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. _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); } }
  6711. break;
  6712. case "dataBoardNew": //数据看板
  6713. _formdiv = new U.UF.UI.form(
  6714. "综合看板",
  6715. $$("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 }), {
  6716. "id": "dataBoardNew",
  6717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6718. "onresize": function () { }
  6719. }, {
  6720. closecallback: function () { }
  6721. }, { "style": { "height": "36px" } }).form; //创建窗体
  6722. _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); } }
  6723. break;
  6724. case "dataBoardTest": //数据看板
  6725. _formdiv = new U.UF.UI.form(
  6726. "评测看板",
  6727. $$("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 }), {
  6728. "id": "dataBoardTest",
  6729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _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); } }
  6735. break;
  6736. case "AIAnalyse": //AI共创
  6737. _formdiv = new U.UF.UI.form(
  6738. "AI分析",
  6739. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6740. "id": "AIAnalyse",
  6741. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6742. "onresize": function () { }
  6743. }, {
  6744. closecallback: function () { }
  6745. }, { "style": { "height": "36px" } }).form; //创建窗体
  6746. _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); } }
  6747. break;
  6748. case "studioCourse": //AI共创
  6749. _formdiv = new U.UF.UI.form(
  6750. "工作管理",
  6751. $$("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 }), {
  6752. "id": "studioCourse",
  6753. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6754. "onresize": function () { }
  6755. }, {
  6756. closecallback: function () { }
  6757. }, { "style": { "height": "36px" } }).form; //创建窗体
  6758. _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); } }
  6759. break;
  6760. case "studioIndex": //AI共创
  6761. _formdiv = new U.UF.UI.form(
  6762. "工作中心",
  6763. $$("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 }), {
  6764. "id": "studioIndex",
  6765. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6766. "onresize": function () { }
  6767. }, {
  6768. closecallback: function () { }
  6769. }, { "style": { "height": "36px" } }).form; //创建窗体
  6770. _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); } }
  6771. break;
  6772. case "source":
  6773. _formdiv = new U.UF.UI.form(
  6774. "教学资源",
  6775. $$("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 }), {
  6776. "id": "source",
  6777. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6778. "onresize": function () { }
  6779. }, {
  6780. closecallback: function () { }
  6781. }, { "style": { "height": "36px" } }).form; //创建窗体
  6782. _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); } }
  6783. break;
  6784. case "testTeacher":
  6785. _formdiv = new U.UF.UI.form(
  6786. "智能表单",
  6787. $$("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 }), {
  6788. "id": "testTeacher",
  6789. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6790. "onresize": function () { }
  6791. }, {
  6792. closecallback: function () { }
  6793. }, { "style": { "height": "36px" } }).form; //创建窗体
  6794. _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); } }
  6795. break;
  6796. case "testStudent":
  6797. _formdiv = new U.UF.UI.form(
  6798. "教师中心",
  6799. $$("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 }), {
  6800. "id": "testStudent",
  6801. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _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); } }
  6807. break;
  6808. case "testTeacherSies":
  6809. _formdiv = new U.UF.UI.form(
  6810. "教师管理",
  6811. $$("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 }), {
  6812. "id": "testTeacherSies",
  6813. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. case "testStudentSies":
  6821. _formdiv = new U.UF.UI.form(
  6822. "教师中心",
  6823. $$("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 }), {
  6824. "id": "testStudentSies",
  6825. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "ytpbl": //消息通知
  6833. _formdiv = new U.UF.UI.form(
  6834. "案例征集",
  6835. $$("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 }), {
  6836. "id": "ytpbl",
  6837. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. // 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");
  6844. break;
  6845. case "aiCourseResource": //人工智能窗体
  6846. _formdiv = new U.UF.UI.form(
  6847. false,
  6848. $$("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 }), {
  6849. "id": "aiCourseResource",
  6850. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6851. "onresize": function () { },
  6852. "isdrag": false,
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _taskbar = ''
  6857. break;
  6858. case "szdjgCocooroboX": //图形化编程
  6859. _formdiv = new U.UF.UI.form(
  6860. "图形化编程",
  6861. $$("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" }), {
  6862. "id": "szdjgCocooroboX",
  6863. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _taskbar = ''
  6869. break;
  6870. case "szdjgPython": //python编程
  6871. _formdiv = new U.UF.UI.form(
  6872. "Python编程",
  6873. $$("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" }), {
  6874. "id": "szdjgPython",
  6875. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _taskbar = ''
  6881. break;
  6882. case "Record":
  6883. _formdiv = new U.UF.UI.form(
  6884. "观察记录",
  6885. $$("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 }), {
  6886. "id": "Record",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. case "aigptCourse":
  6895. _formdiv = new U.UF.UI.form(
  6896. "AI智能体",
  6897. $$("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' }), {
  6898. "id": "aigptCourse",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _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); } }
  6905. break;
  6906. case "classroomObservation":
  6907. _formdiv = new U.UF.UI.form(
  6908. "课堂观察",
  6909. $$("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 }), {
  6910. "id": "classroomObservation",
  6911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _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); } }
  6917. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6918. break;
  6919. case "pblCourse":
  6920. _formdiv = new U.UF.UI.form(
  6921. "学生PBL",
  6922. $$("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 }), {
  6923. "id": "pblCourse",
  6924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6925. "onresize": function () { }
  6926. }, {
  6927. closecallback: function () { }
  6928. }, { "style": { "height": "36px" } }).form; //创建窗体
  6929. _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); } }
  6930. break;
  6931. case "appStore":
  6932. _formdiv = new U.UF.UI.form(
  6933. "工作流中心",
  6934. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/appCenter?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6935. "id": "pblCourse",
  6936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6937. "onresize": function () { }
  6938. }, {
  6939. closecallback: function () { }
  6940. }, { "style": { "height": "36px" } }).form; //创建窗体
  6941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "工作流中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6942. break;
  6943. }
  6944. //U.MD.D.I.openClick(str);
  6945. //如果有任务栏信息
  6946. if (_taskbar) {
  6947. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6948. }
  6949. }
  6950. // U.MD.D.I.openClick = function(str){
  6951. // var click = '';
  6952. // switch(str){
  6953. // case 'friend':
  6954. // click = '我的好友';
  6955. // break;
  6956. // case 'domain':
  6957. // click = '域名管理';
  6958. // break;
  6959. // case 'disk':
  6960. // click = '我的云盘';
  6961. // break;
  6962. // case 'word':
  6963. // click = 'Word';
  6964. // break;
  6965. // case 'excel':
  6966. // click = 'Execl';
  6967. // break;
  6968. // case 'txt':
  6969. // click = '文本文件';
  6970. // break;
  6971. // case 'lookupFriend':
  6972. // click = '查找好友';
  6973. // break;
  6974. // case 'ftp':
  6975. // click = 'FTP';
  6976. // break;
  6977. // case 'group':
  6978. // click = '群组';
  6979. // break;
  6980. // case 'set':
  6981. // click = '我的设置';
  6982. // break;
  6983. // case 'systemSet':
  6984. // click = '系统设置';
  6985. // break;
  6986. // case 'boomYun':
  6987. // click = '互联办公';
  6988. // break;
  6989. // case 'xz':
  6990. // click = '云端下载';
  6991. // break;
  6992. // case 'client':
  6993. // click = '有思浏览器';
  6994. // break;
  6995. // case 'backEndProgramming':
  6996. // click = '在线后台编程';
  6997. // break;
  6998. // case 'frontEndProgramming':
  6999. // click = '在线前端编程';
  7000. // break;
  7001. // default: break;
  7002. // }
  7003. // if(U.MD.D.I.Ip && click){
  7004. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7005. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7006. // })
  7007. // }
  7008. // }
  7009. /**
  7010. *函数作用:ajax简易函数,使用post格式
  7011. *@param url {data} 后台地址
  7012. *@param data {data} 参数json
  7013. *@param fn {data} 回调函数
  7014. *
  7015. */
  7016. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7017. // var xhr = new XMLHttpRequest();
  7018. // xhr.open("GET",url,true);
  7019. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7020. // xhr.onreadystatechange = function(){
  7021. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7022. // fn.call(this,xhr.responseText);
  7023. // }
  7024. // };
  7025. // xhr.send();
  7026. // }
  7027. /*判断是否是内网IP*/
  7028. // U.MD.D.I.isInnerIPFn = function(str){
  7029. // var curPageUrl = str;
  7030. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7031. // curPageUrl =curPageUrl.replace(reg1,'');
  7032. // // console.log('curPageUrl-1 '+curPageUrl);
  7033. // var reg2 = /\:+/g;//替换冒号为一点
  7034. // curPageUrl =curPageUrl.replace(reg2,'.');
  7035. // // console.log('curPageUrl-2 '+curPageUrl);
  7036. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7037. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7038. // if(curPageUrl[2] != '16'){
  7039. // return ipAddress;
  7040. // }else{
  7041. // return false;
  7042. // }
  7043. // }
  7044. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7045. // //compatibility for firefox and chrome
  7046. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7047. // var pc = new myPeerConnection({
  7048. // iceServers: []
  7049. // }),
  7050. // noop = function() {},
  7051. // localIPs = {},
  7052. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7053. // key;
  7054. // function iterateIP(ip) {
  7055. // if (!localIPs[ip]) onNewIP(ip);
  7056. // localIPs[ip] = true;
  7057. // }
  7058. // //create a bogus data channel
  7059. // pc.createDataChannel("");
  7060. // // create offer and set local description
  7061. // pc.createOffer().then(function(sdp) {
  7062. // sdp.sdp.split('\n').forEach(function(line) {
  7063. // if (line.indexOf('candidate') < 0) return;
  7064. // line.match(ipRegex).forEach(iterateIP);
  7065. // });
  7066. // pc.setLocalDescription(sdp, noop, noop);
  7067. // }).catch(function(reason) {
  7068. // // An error occurred, so handle the failure to connect
  7069. // });
  7070. // //sten for candidate events
  7071. // pc.onicecandidate = function(ice) {
  7072. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7073. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7074. // };
  7075. // }
  7076. // U.MD.D.I.getUserIpBool = function(callback){
  7077. // U.MD.D.I.getUserIP(function(ip){
  7078. // alert("Got IP! :" + ip);
  7079. // });
  7080. //}
  7081. //#endregion
  7082. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7083. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7084. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7085. _userinfo = US.userInfo, //登录用户信息
  7086. _userid = US.userInfo.userid //登录用户id
  7087. let _iframe;
  7088. let _cid = cid,
  7089. _stage = stage,
  7090. _task = task,
  7091. _tool = tool;
  7092. var _jie = $$("div", {
  7093. "style": {
  7094. "position": "absolute",
  7095. "bottom": "50px",
  7096. "right": "50px",
  7097. "zIndex": "9999",
  7098. "backgroundColor": "#2268bc",
  7099. "color": "#fff",
  7100. "padding": "12px 20px",
  7101. "cursor": "pointer",
  7102. "borderRadius": "4px",
  7103. },
  7104. "innerHTML": "提交作业"
  7105. })
  7106. let aTool = ''
  7107. let _loading = document.createElement('div')
  7108. _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;"
  7109. // _loading.id = "";
  7110. let _lchild = document.createElement('div')
  7111. let _limg = document.createElement('img')
  7112. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7113. _limg.style = "width: 26px;margin-right: 10px;"
  7114. _lchild.appendChild(_limg)
  7115. let _lspan = document.createElement('span')
  7116. _lspan.innerHTML = "上传中..."
  7117. _lchild.appendChild(_lspan)
  7118. _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%);"
  7119. _loading.appendChild(_lchild)
  7120. var _box = $$('div', {
  7121. "style": {
  7122. "position": "relative",
  7123. "width": "100%",
  7124. "height": "100%",
  7125. },
  7126. })
  7127. _box.appendChild(_loading)
  7128. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7129. switch (str) {
  7130. case "whiteboard":
  7131. aTool = 1;
  7132. _iframe = $$("iframe", {
  7133. "frameborder": "no",
  7134. "border": "0",
  7135. "scrolling ": "no",
  7136. "style": {
  7137. "cssText": "border:0;width:100%;height:100%"
  7138. },
  7139. "src": "https://beta.iwb.cocorobo.cn/"
  7140. })
  7141. _box.appendChild(_iframe);
  7142. _box.appendChild(_jie);
  7143. _formdiv = new U.UF.UI.form(
  7144. "电子白板",
  7145. _box, {
  7146. "id": "whiteboard" + cid + stage + task + tool,
  7147. "style": {
  7148. "width": "90%",
  7149. "height": "90%",
  7150. "overflow": 'hidden'
  7151. },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, {
  7156. "style": {
  7157. "height": "36px"
  7158. }
  7159. }).form; //创建窗体
  7160. _taskbar = {
  7161. "id": str + _formdiv.id,
  7162. "style": {
  7163. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7164. },
  7165. "name": "电子白板",
  7166. "forms": _formdiv,
  7167. "click": function () {
  7168. U.MD.D.I.openApplication(str, obj, info);
  7169. }
  7170. }
  7171. break;
  7172. case "mind":
  7173. aTool = 3;
  7174. _iframe = $$("iframe", {
  7175. "frameborder": "no",
  7176. "border": "0",
  7177. "scrolling ": "no",
  7178. "style": {
  7179. "cssText": "border:0;width:100%;height:100%"
  7180. },
  7181. "src": "/kityminder-editor/dist/index.html"
  7182. })
  7183. _box.appendChild(_iframe);
  7184. _box.appendChild(_jie);
  7185. _formdiv = new U.UF.UI.form(
  7186. "思维导图",
  7187. _box, { //"/jsmind/example/demo.html"
  7188. "id": "mind" + cid + stage + task + tool,
  7189. "style": {
  7190. "width": "90%",
  7191. "height": "90%",
  7192. "overflow": 'hidden'
  7193. },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, {
  7198. "style": {
  7199. "height": "36px"
  7200. }
  7201. }).form; //创建窗体
  7202. _taskbar = {
  7203. "id": str + _formdiv.id,
  7204. "style": {
  7205. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7206. },
  7207. "name": "思维导图",
  7208. "forms": _formdiv,
  7209. "click": function () {
  7210. U.MD.D.I.openApplication(str, obj, info);
  7211. }
  7212. }
  7213. break;
  7214. case "MindMap":
  7215. aTool = 3;
  7216. _iframe = $$("iframe", {
  7217. "frameborder": "no",
  7218. "border": "0",
  7219. "scrolling ": "no",
  7220. "style": {
  7221. "cssText": "border:0;width:100%;height:100%"
  7222. },
  7223. "src": "//cloud.cocorobo.cn/mind/"
  7224. })
  7225. _box.appendChild(_iframe);
  7226. _box.appendChild(_jie);
  7227. _formdiv = new U.UF.UI.form(
  7228. "思维导图",
  7229. _box, { //"/jsmind/example/demo.html"
  7230. "id": "mind" + cid + stage + task + tool,
  7231. "style": {
  7232. "width": "90%",
  7233. "height": "90%",
  7234. "overflow": 'hidden'
  7235. },
  7236. "onresize": function () { }
  7237. }, {
  7238. closecallback: function () { }
  7239. }, {
  7240. "style": {
  7241. "height": "36px"
  7242. }
  7243. }).form; //创建窗体
  7244. _taskbar = {
  7245. "id": str + _formdiv.id,
  7246. "style": {
  7247. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7248. },
  7249. "name": "思维导图",
  7250. "forms": _formdiv,
  7251. "click": function () {
  7252. U.MD.D.I.openApplication(str, obj, info);
  7253. }
  7254. }
  7255. break;
  7256. case "doc":
  7257. aTool = 6;
  7258. _iframe = $$("iframe", {
  7259. "frameborder": "no",
  7260. "border": "0",
  7261. "scrolling ": "no",
  7262. "style": {
  7263. "cssText": "border:0;width:100%;height:100%"
  7264. },
  7265. "src": "/Office/Word/WordEditArea.htm"
  7266. })
  7267. _box.appendChild(_iframe);
  7268. _box.appendChild(_jie);
  7269. _formdiv = new U.UF.UI.form(
  7270. "协同文档",
  7271. _box, {
  7272. "id": "doc" + cid + stage + task + tool,
  7273. "style": {
  7274. "width": "90%",
  7275. "height": "90%",
  7276. "overflow": 'hidden'
  7277. },
  7278. "onresize": function () { }
  7279. }, {
  7280. closecallback: function () { }
  7281. }, {
  7282. "style": {
  7283. "height": "36px"
  7284. }
  7285. }).form; //创建窗体
  7286. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7287. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7288. })
  7289. _taskbar = {
  7290. "id": str + _formdiv.id,
  7291. "style": {
  7292. "backgroundImage": "url(/img/icon/doc.png)"
  7293. },
  7294. "name": "协同文档",
  7295. "forms": _formdiv,
  7296. "click": function () {
  7297. U.MD.D.I.openApplication(str, obj, info);
  7298. }
  7299. }
  7300. break;
  7301. case "mindNetwork": //好友打开
  7302. aTool = 7;
  7303. _iframe = $$("iframe", {
  7304. "webkitallowfullscreen": "",
  7305. "mozallowfullscreen": "",
  7306. "allowfullscreen": "",
  7307. "frameborder": "no",
  7308. "border": "0",
  7309. "scrolling ": "no",
  7310. "style": {
  7311. "cssText": "border:0; width:100%; height:100%;"
  7312. },
  7313. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7314. })
  7315. _box.appendChild(_iframe);
  7316. _box.appendChild(_jie);
  7317. _formdiv = new U.UF.UI.form(
  7318. "思维网格",
  7319. _box, {
  7320. "id": "mindNetwork" + cid + stage + task + tool,
  7321. "style": {
  7322. "width": "90%",
  7323. "height": "90%",
  7324. "overflow": 'hidden'
  7325. },
  7326. "onresize": function () { }
  7327. }, {
  7328. closecallback: function () { }
  7329. }, {
  7330. "style": {
  7331. "height": "36px"
  7332. }
  7333. }).form; //创建窗体
  7334. _taskbar = {
  7335. "id": str + _formdiv.id,
  7336. "style": {
  7337. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7338. },
  7339. "name": "思维网格",
  7340. "forms": _formdiv,
  7341. "click": function () {
  7342. U.MD.D.I.openApplication(str, obj, info);
  7343. }
  7344. }
  7345. break;
  7346. case "courseDesign":
  7347. _iframe = $$("iframe", {
  7348. "webkitallowfullscreen": "",
  7349. "mozallowfullscreen": "",
  7350. "allowfullscreen": "",
  7351. "frameborder": "no",
  7352. "border": "0",
  7353. "scrolling ": "no",
  7354. "style": {
  7355. "cssText": "border:0; width:100%; height:100%;"
  7356. },
  7357. "src": "/course-design-vue"
  7358. })
  7359. _box.appendChild(_iframe);
  7360. _box.appendChild(_jie);
  7361. _formdiv = new U.UF.UI.form(
  7362. "项目设计",
  7363. _box, {
  7364. "id": "courseDesign" + cid + stage + task + tool,
  7365. "style": {
  7366. "width": "90%",
  7367. "height": "90%",
  7368. "overflow": 'hidden'
  7369. },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, {
  7374. "style": {
  7375. "height": "36px"
  7376. }
  7377. }).form; //创建窗体
  7378. _taskbar = {
  7379. "id": str + _formdiv.id,
  7380. "style": {
  7381. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7382. },
  7383. "name": "项目设计",
  7384. "forms": _formdiv,
  7385. "click": function () {
  7386. U.MD.D.I.openApplication(str, obj, info);
  7387. }
  7388. }
  7389. break;
  7390. }
  7391. const script1 = document.createElement("script");
  7392. script1.type = "text/javascript";
  7393. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7394. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7395. const script2 = document.createElement("script");
  7396. script2.type = "text/javascript";
  7397. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7398. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7399. const script3 = document.createElement("script");
  7400. script3.type = "text/javascript";
  7401. script3.charset = "UTF-8";
  7402. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7403. const script4 = document.createElement("script");
  7404. script4.type = "text/javascript";
  7405. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7406. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7407. if (_iframe) {
  7408. if (str == 'doc') {
  7409. _iframe = _formdiv.querySelector('iframe')
  7410. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7411. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7412. _iframe.contentWindow.document.body.appendChild(script1);
  7413. _iframe.contentWindow.document.body.appendChild(script2);
  7414. // _iframe.contentWindow.document.body.appendChild(script3);
  7415. _iframe.contentWindow.document.body.appendChild(script4);
  7416. })
  7417. if (onloadListener) {
  7418. _iframe.contentDocument.location.reload()
  7419. } else {
  7420. _iframe.contentDocument.location.reload()
  7421. }
  7422. } else if (str == 'courseDesign') {
  7423. U.UF.DL.iframeLoad(_iframe, function () {
  7424. // _iframe.contentWindow.U.MD.O.W.load();
  7425. // _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. _iframe.contentWindow.document.body.appendChild(script4);
  7428. })
  7429. } else if (str == 'mind') {
  7430. _iframe = _formdiv.querySelector('iframe')
  7431. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7432. //
  7433. _iframe.contentWindow.document.body.appendChild(script1);
  7434. _iframe.contentWindow.document.body.appendChild(script2);
  7435. _iframe.contentWindow.document.body.appendChild(script4);
  7436. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7437. })
  7438. if (onloadListener) {
  7439. _iframe.contentDocument.location.reload()
  7440. } else {
  7441. _iframe.contentDocument.location.reload()
  7442. }
  7443. } else if (str == 'whiteboard') {
  7444. _iframe = _formdiv.querySelector('iframe')
  7445. let onloadListener = _iframe.onload = () => {
  7446. _iframe.contentWindow.document.body.appendChild(script1);
  7447. _iframe.contentWindow.document.body.appendChild(script2);
  7448. _iframe.contentWindow.document.body.appendChild(script4);
  7449. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7450. };
  7451. // if (onloadListener) {
  7452. // try {
  7453. // _iframe.src += "?cocorobo="+new Date().getTime()
  7454. // _iframe.contentWindow.document.location.reload()
  7455. // } catch (error) {
  7456. // }
  7457. // } else {
  7458. // _iframe.contentDocument.location.reload()
  7459. // }
  7460. } else {
  7461. _iframe.onload = () => {
  7462. _iframe.contentWindow.document.body.appendChild(script1);
  7463. _iframe.contentWindow.document.body.appendChild(script2);
  7464. // _iframe.contentWindow.document.body.appendChild(script3);
  7465. _iframe.contentWindow.document.body.appendChild(script4);
  7466. };
  7467. }
  7468. _jie.onclick = async () => {
  7469. let text = ''
  7470. if (aTool == 1) {
  7471. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7472. } else if (aTool == 6) {
  7473. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7474. } else if (aTool == 3) {
  7475. text = await U.MD.D.I.getEditorContent(_iframe);
  7476. }
  7477. _loading.style.display = 'flex'
  7478. console.log(_loading);
  7479. var _ajs = _iframe.contentWindow.document.createElement("script");
  7480. _ajs.type = "text/javascript";
  7481. _ajs.innerHTML =
  7482. // 'console.log(' + _loading + ');\n' +
  7483. 'var _js = document.createElement("script");\n' +
  7484. '_js.type="text/javascript";\n' +
  7485. '_js.charset="UTF-8";\n' +
  7486. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7487. "_js.onload = function(){\n" +
  7488. ' var a = document.getElementsByTagName("img")\n' +
  7489. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7490. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7491. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7492. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7493. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7494. "beforeUpload_shishi(file," +
  7495. "'" +
  7496. _userid +
  7497. "'" +
  7498. ", " +
  7499. "'" +
  7500. _cid +
  7501. "'" +
  7502. ", " +
  7503. "'" +
  7504. _stage +
  7505. "'" +
  7506. ", " +
  7507. "'" +
  7508. _task +
  7509. "'" +
  7510. ", " +
  7511. "'" +
  7512. _tool +
  7513. "'" +
  7514. ", " +
  7515. "'" +
  7516. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7517. "'" +
  7518. ", " +
  7519. "'" +
  7520. aTool +
  7521. "'" +
  7522. ", " +
  7523. "`" +
  7524. text +
  7525. "`" +
  7526. ")\n" +
  7527. " });\n" +
  7528. "}\n" +
  7529. "document.head.appendChild(_js);\n";
  7530. _iframe.contentWindow.document.head.appendChild(_ajs);
  7531. }
  7532. }
  7533. //U.MD.D.I.openClick(str);
  7534. //如果有任务栏信息
  7535. // if (_taskbar) {
  7536. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7537. // }
  7538. }
  7539. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7540. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7541. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7542. _userinfo = US.userInfo, //登录用户信息
  7543. _userid = US.userInfo.userid //登录用户id
  7544. let _iframe;
  7545. let _cid = cid,
  7546. _stage = stage,
  7547. _task = task,
  7548. _tool = tool;
  7549. var _jie = $$("div", {
  7550. "style": {
  7551. "position": "absolute",
  7552. "bottom": "50px",
  7553. "right": "50px",
  7554. "zIndex": "9999",
  7555. "backgroundColor": "#2268bc",
  7556. "color": "#fff",
  7557. "padding": "12px 20px",
  7558. "cursor": "pointer",
  7559. "borderRadius": "4px",
  7560. },
  7561. "innerHTML": "提交作业"
  7562. })
  7563. let aTool = ''
  7564. let _loading = document.createElement('div')
  7565. _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;"
  7566. // _loading.id = "";
  7567. let _lchild = document.createElement('div')
  7568. let _limg = document.createElement('img')
  7569. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7570. _limg.style = "width: 26px;margin-right: 10px;"
  7571. _lchild.appendChild(_limg)
  7572. let _lspan = document.createElement('span')
  7573. _lspan.innerHTML = "上传中..."
  7574. _lchild.appendChild(_lspan)
  7575. _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%);"
  7576. _loading.appendChild(_lchild)
  7577. let _box = $$('div', {
  7578. "style": {
  7579. "position": "relative",
  7580. "width": "100%",
  7581. "height": "100%",
  7582. },
  7583. })
  7584. _box.appendChild(_loading)
  7585. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7586. switch (str) {
  7587. case "whiteboard":
  7588. aTool = 1;
  7589. _iframe = $$("iframe", {
  7590. "frameborder": "no",
  7591. "border": "0",
  7592. "scrolling ": "no",
  7593. "style": {
  7594. "cssText": "border:0;width:100%;height:100%"
  7595. },
  7596. "src": "https://beta.iwb.cocorobo.cn/"
  7597. })
  7598. _box.appendChild(_iframe);
  7599. _box.appendChild(_jie);
  7600. _formdiv = new U.UF.UI.form(
  7601. "电子白板",
  7602. _box, {
  7603. "id": "whiteboard" + cid + stage + task + tool,
  7604. "style": {
  7605. "width": "90%",
  7606. "height": "90%",
  7607. "overflow": 'hidden'
  7608. },
  7609. "onresize": function () { }
  7610. }, {
  7611. closecallback: function () { }
  7612. }, {
  7613. "style": {
  7614. "height": "36px"
  7615. }
  7616. }).form; //创建窗体
  7617. _taskbar = {
  7618. "id": str + _formdiv.id,
  7619. "style": {
  7620. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7621. },
  7622. "name": "电子白板",
  7623. "forms": _formdiv,
  7624. "click": function () {
  7625. U.MD.D.I.openApplication(str, obj, info);
  7626. }
  7627. }
  7628. break;
  7629. case "mind":
  7630. aTool = 3;
  7631. _iframe = $$("iframe", {
  7632. "frameborder": "no",
  7633. "border": "0",
  7634. "scrolling ": "no",
  7635. "style": {
  7636. "cssText": "border:0;width:100%;height:100%"
  7637. },
  7638. "src": "/kityminder-editor/dist/index.html"
  7639. })
  7640. _box.appendChild(_iframe);
  7641. _box.appendChild(_jie);
  7642. _formdiv = new U.UF.UI.form(
  7643. "思维导图",
  7644. _box, { //"/jsmind/example/demo.html"
  7645. "id": "mind" + cid + stage + task + tool,
  7646. "style": {
  7647. "width": "90%",
  7648. "height": "90%",
  7649. "overflow": 'hidden'
  7650. },
  7651. "onresize": function () { }
  7652. }, {
  7653. closecallback: function () { }
  7654. }, {
  7655. "style": {
  7656. "height": "36px"
  7657. }
  7658. }).form; //创建窗体
  7659. _taskbar = {
  7660. "id": str + _formdiv.id,
  7661. "style": {
  7662. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7663. },
  7664. "name": "思维导图",
  7665. "forms": _formdiv,
  7666. "click": function () {
  7667. U.MD.D.I.openApplication(str, obj, info);
  7668. }
  7669. }
  7670. break;
  7671. case "MindMap":
  7672. aTool = 3;
  7673. _iframe = $$("iframe", {
  7674. "frameborder": "no",
  7675. "border": "0",
  7676. "scrolling ": "no",
  7677. "style": {
  7678. "cssText": "border:0;width:100%;height:100%"
  7679. },
  7680. "src": "//cloud.cocorobo.cn/mind/"
  7681. })
  7682. _box.appendChild(_iframe);
  7683. _box.appendChild(_jie);
  7684. _formdiv = new U.UF.UI.form(
  7685. "思维导图",
  7686. _box, { //"/jsmind/example/demo.html"
  7687. "id": "mind" + cid + stage + task + tool,
  7688. "style": {
  7689. "width": "90%",
  7690. "height": "90%",
  7691. "overflow": 'hidden'
  7692. },
  7693. "onresize": function () { }
  7694. }, {
  7695. closecallback: function () { }
  7696. }, {
  7697. "style": {
  7698. "height": "36px"
  7699. }
  7700. }).form; //创建窗体
  7701. _taskbar = {
  7702. "id": str + _formdiv.id,
  7703. "style": {
  7704. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7705. },
  7706. "name": "思维导图",
  7707. "forms": _formdiv,
  7708. "click": function () {
  7709. U.MD.D.I.openApplication(str, obj, info);
  7710. }
  7711. }
  7712. break;
  7713. case "doc":
  7714. aTool = 6;
  7715. _iframe = $$("iframe", {
  7716. "frameborder": "no",
  7717. "border": "0",
  7718. "scrolling ": "no",
  7719. "style": {
  7720. "cssText": "border:0;width:100%;height:100%"
  7721. },
  7722. "src": "/Office/Word/WordEditArea.htm"
  7723. })
  7724. _box.appendChild(_iframe);
  7725. _box.appendChild(_jie);
  7726. _formdiv = new U.UF.UI.form(
  7727. "协同文档",
  7728. _box, {
  7729. "id": "doc" + cid + stage + task + tool,
  7730. "style": {
  7731. "width": "90%",
  7732. "height": "90%",
  7733. "overflow": 'hidden'
  7734. },
  7735. "onresize": function () { }
  7736. }, {
  7737. closecallback: function () { }
  7738. }, {
  7739. "style": {
  7740. "height": "36px"
  7741. }
  7742. }).form; //创建窗体
  7743. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7744. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7745. })
  7746. _taskbar = {
  7747. "id": str + _formdiv.id,
  7748. "style": {
  7749. "backgroundImage": "url(/img/icon/doc.png)"
  7750. },
  7751. "name": "协同文档",
  7752. "forms": _formdiv,
  7753. "click": function () {
  7754. U.MD.D.I.openApplication(str, obj, info);
  7755. }
  7756. }
  7757. break;
  7758. case "mindNetwork": //好友打开
  7759. aTool = 7;
  7760. _iframe = $$("iframe", {
  7761. "webkitallowfullscreen": "",
  7762. "mozallowfullscreen": "",
  7763. "allowfullscreen": "",
  7764. "frameborder": "no",
  7765. "border": "0",
  7766. "scrolling ": "no",
  7767. "style": {
  7768. "cssText": "border:0; width:100%; height:100%;"
  7769. },
  7770. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7771. })
  7772. _box.appendChild(_iframe);
  7773. _box.appendChild(_jie);
  7774. _formdiv = new U.UF.UI.form(
  7775. "思维网格",
  7776. _box, {
  7777. "id": "mindNetwork" + cid + stage + task + tool,
  7778. "style": {
  7779. "width": "90%",
  7780. "height": "90%",
  7781. "overflow": 'hidden'
  7782. },
  7783. "onresize": function () { }
  7784. }, {
  7785. closecallback: function () { }
  7786. }, {
  7787. "style": {
  7788. "height": "36px"
  7789. }
  7790. }).form; //创建窗体
  7791. _taskbar = {
  7792. "id": str + _formdiv.id,
  7793. "style": {
  7794. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7795. },
  7796. "name": "思维网格",
  7797. "forms": _formdiv,
  7798. "click": function () {
  7799. U.MD.D.I.openApplication(str, obj, info);
  7800. }
  7801. }
  7802. break;
  7803. case "courseDesign":
  7804. _iframe = $$("iframe", {
  7805. "webkitallowfullscreen": "",
  7806. "mozallowfullscreen": "",
  7807. "allowfullscreen": "",
  7808. "frameborder": "no",
  7809. "border": "0",
  7810. "scrolling ": "no",
  7811. "style": {
  7812. "cssText": "border:0; width:100%; height:100%;"
  7813. },
  7814. "src": "/course-design-vue"
  7815. })
  7816. _box.appendChild(_iframe);
  7817. _box.appendChild(_jie);
  7818. _formdiv = new U.UF.UI.form(
  7819. "项目设计",
  7820. _box, {
  7821. "id": "courseDesign" + cid + stage + task + tool,
  7822. "style": {
  7823. "width": "90%",
  7824. "height": "90%",
  7825. "overflow": 'hidden'
  7826. },
  7827. "onresize": function () { }
  7828. }, {
  7829. closecallback: function () { }
  7830. }, {
  7831. "style": {
  7832. "height": "36px"
  7833. }
  7834. }).form; //创建窗体
  7835. _taskbar = {
  7836. "id": str + _formdiv.id,
  7837. "style": {
  7838. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7839. },
  7840. "name": "项目设计",
  7841. "forms": _formdiv,
  7842. "click": function () {
  7843. U.MD.D.I.openApplication(str, obj, info);
  7844. }
  7845. }
  7846. break;
  7847. }
  7848. const script1 = document.createElement("script");
  7849. script1.type = "text/javascript";
  7850. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7851. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7852. const script2 = document.createElement("script");
  7853. script2.type = "text/javascript";
  7854. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7855. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7856. const script3 = document.createElement("script");
  7857. script3.type = "text/javascript";
  7858. script3.charset = "UTF-8";
  7859. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7860. const script4 = document.createElement("script");
  7861. script4.type = "text/javascript";
  7862. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7863. script4.src = window.origin + "/js/Common/jietu2E.js";
  7864. if (_iframe) {
  7865. if (str == 'doc') {
  7866. _iframe = _formdiv.querySelector('iframe')
  7867. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7868. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7869. _iframe.contentWindow.document.body.appendChild(script1);
  7870. _iframe.contentWindow.document.body.appendChild(script2);
  7871. // _iframe.contentWindow.document.body.appendChild(script3);
  7872. _iframe.contentWindow.document.body.appendChild(script4);
  7873. })
  7874. if (onloadListener) {
  7875. _iframe.contentDocument.location.reload()
  7876. } else {
  7877. _iframe.contentDocument.location.reload()
  7878. }
  7879. } else if (str == 'courseDesign') {
  7880. U.UF.DL.iframeLoad(_iframe, function () {
  7881. // _iframe.contentWindow.U.MD.O.W.load();
  7882. // _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. })
  7886. } else if (str == 'mind') {
  7887. _iframe = _formdiv.querySelector('iframe')
  7888. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7889. //
  7890. _iframe.contentWindow.document.body.appendChild(script1);
  7891. _iframe.contentWindow.document.body.appendChild(script2);
  7892. _iframe.contentWindow.document.body.appendChild(script4);
  7893. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7894. })
  7895. if (onloadListener) {
  7896. _iframe.contentDocument.location.reload()
  7897. } else {
  7898. _iframe.contentDocument.location.reload()
  7899. }
  7900. } else if (str == 'whiteboard') {
  7901. _iframe = _formdiv.querySelector('iframe')
  7902. let onloadListener = _iframe.onload = () => {
  7903. _iframe.contentWindow.document.body.appendChild(script1);
  7904. _iframe.contentWindow.document.body.appendChild(script2);
  7905. _iframe.contentWindow.document.body.appendChild(script4);
  7906. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7907. };
  7908. // if (onloadListener) {
  7909. // try {
  7910. // _iframe.src += "?cocorobo="+new Date().getTime()
  7911. // _iframe.contentWindow.document.location.reload()
  7912. // } catch (error) {
  7913. // }
  7914. // } else {
  7915. // _iframe.contentDocument.location.reload()
  7916. // }
  7917. } else {
  7918. _iframe.onload = () => {
  7919. _iframe.contentWindow.document.body.appendChild(script1);
  7920. _iframe.contentWindow.document.body.appendChild(script2);
  7921. // _iframe.contentWindow.document.body.appendChild(script3);
  7922. _iframe.contentWindow.document.body.appendChild(script4);
  7923. };
  7924. }
  7925. _jie.onclick = async () => {
  7926. let text = ''
  7927. if (aTool == 1) {
  7928. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7929. } else if (aTool == 6) {
  7930. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7931. } else if (aTool == 3) {
  7932. text = await U.MD.D.I.getEditorContent(_iframe);
  7933. }
  7934. _loading.style.display = 'flex'
  7935. console.log(_loading);
  7936. var _ajs = _iframe.contentWindow.document.createElement("script");
  7937. _ajs.type = "text/javascript";
  7938. _ajs.innerHTML =
  7939. // 'console.log(' + _loading + ');\n' +
  7940. 'var _js = document.createElement("script");\n' +
  7941. '_js.type="text/javascript";\n' +
  7942. '_js.charset="UTF-8";\n' +
  7943. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7944. "_js.onload = function(){\n" +
  7945. ' var a = document.getElementsByTagName("img")\n' +
  7946. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7947. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7948. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7949. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7950. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7951. "beforeUpload_shishi(file," +
  7952. "'" +
  7953. _userid +
  7954. "'" +
  7955. ", " +
  7956. "'" +
  7957. _cid +
  7958. "'" +
  7959. ", " +
  7960. "'" +
  7961. _stage +
  7962. "'" +
  7963. ", " +
  7964. "'" +
  7965. _task +
  7966. "'" +
  7967. ", " +
  7968. "'" +
  7969. _tool +
  7970. "'" +
  7971. ", " +
  7972. "'" +
  7973. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7974. "'" +
  7975. ", " +
  7976. "'" +
  7977. aTool +
  7978. "'" +
  7979. ", " +
  7980. "`" +
  7981. text +
  7982. "`" +
  7983. ")\n" +
  7984. " });\n" +
  7985. "}\n" +
  7986. "document.head.appendChild(_js);\n";
  7987. _iframe.contentWindow.document.head.appendChild(_ajs);
  7988. }
  7989. }
  7990. //U.MD.D.I.openClick(str);
  7991. //如果有任务栏信息
  7992. // if (_taskbar) {
  7993. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7994. // }
  7995. }
  7996. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7997. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7998. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7999. _userid = student.userid, //登录用户id
  8000. _username = student.student //用户名字
  8001. let _iframe;
  8002. let _cid = cid,
  8003. _stage = stage,
  8004. _task = task,
  8005. _tool = tool;
  8006. var _jie = $$("div", {
  8007. "style": {
  8008. "position": "absolute",
  8009. "bottom": "50px",
  8010. "right": "50px",
  8011. "zIndex": "9999",
  8012. "backgroundColor": "#2268bc",
  8013. "color": "#fff",
  8014. "padding": "12px 20px",
  8015. "cursor": "pointer",
  8016. "borderRadius": "4px",
  8017. },
  8018. "innerHTML": "提交作业"
  8019. })
  8020. let aTool = ''
  8021. let _loading = document.createElement('div')
  8022. _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;"
  8023. // _loading.id = "";
  8024. let _lchild = document.createElement('div')
  8025. let _limg = document.createElement('img')
  8026. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8027. _limg.style = "width: 26px;margin-right: 10px;"
  8028. _lchild.appendChild(_limg)
  8029. let _lspan = document.createElement('span')
  8030. _lspan.innerHTML = "上传中..."
  8031. _lchild.appendChild(_lspan)
  8032. _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%);"
  8033. _loading.appendChild(_lchild)
  8034. var _box = $$('div', {
  8035. "style": {
  8036. "position": "relative",
  8037. "width": "100%",
  8038. "height": "100%",
  8039. },
  8040. })
  8041. _box.appendChild(_loading)
  8042. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8043. switch (str) {
  8044. case "whiteboard":
  8045. aTool = 1;
  8046. _iframe = $$("iframe", {
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0;width:100%;height:100%"
  8052. },
  8053. "src": "https://beta.iwb.cocorobo.cn/"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "电子白板-" + _username,
  8059. _box, {
  8060. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //创建窗体
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8078. },
  8079. "name": "电子白板",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. case "mind":
  8087. aTool = 3;
  8088. _iframe = $$("iframe", {
  8089. "frameborder": "no",
  8090. "border": "0",
  8091. "scrolling ": "no",
  8092. "style": {
  8093. "cssText": "border:0;width:100%;height:100%"
  8094. },
  8095. "src": "/kityminder-editor/dist/index.html"
  8096. })
  8097. _box.appendChild(_iframe);
  8098. _box.appendChild(_jie);
  8099. _formdiv = new U.UF.UI.form(
  8100. "思维导图-" + _username,
  8101. _box, { //"/jsmind/example/demo.html"
  8102. "id": "mind" + cid + stage + task + tool + _userid,
  8103. "style": {
  8104. "width": "90%",
  8105. "height": "90%",
  8106. "overflow": 'hidden'
  8107. },
  8108. "onresize": function () { }
  8109. }, {
  8110. closecallback: function () { }
  8111. }, {
  8112. "style": {
  8113. "height": "36px"
  8114. }
  8115. }).form; //创建窗体
  8116. _taskbar = {
  8117. "id": str + _formdiv.id,
  8118. "style": {
  8119. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8120. },
  8121. "name": "思维导图",
  8122. "forms": _formdiv,
  8123. "click": function () {
  8124. U.MD.D.I.openApplication(str, obj, info);
  8125. }
  8126. }
  8127. break;
  8128. case "MindMap":
  8129. aTool = 3;
  8130. _iframe = $$("iframe", {
  8131. "frameborder": "no",
  8132. "border": "0",
  8133. "scrolling ": "no",
  8134. "style": {
  8135. "cssText": "border:0;width:100%;height:100%"
  8136. },
  8137. "src": "//cloud.cocorobo.cn/mind/"
  8138. })
  8139. _box.appendChild(_iframe);
  8140. _box.appendChild(_jie);
  8141. _formdiv = new U.UF.UI.form(
  8142. "思维导图-" + _username,
  8143. _box, { //"/jsmind/example/demo.html"
  8144. "id": "mind" + cid + stage + task + tool + _userid,
  8145. "style": {
  8146. "width": "90%",
  8147. "height": "90%",
  8148. "overflow": 'hidden'
  8149. },
  8150. "onresize": function () { }
  8151. }, {
  8152. closecallback: function () { }
  8153. }, {
  8154. "style": {
  8155. "height": "36px"
  8156. }
  8157. }).form; //创建窗体
  8158. _taskbar = {
  8159. "id": str + _formdiv.id,
  8160. "style": {
  8161. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8162. },
  8163. "name": "思维导图",
  8164. "forms": _formdiv,
  8165. "click": function () {
  8166. U.MD.D.I.openApplication(str, obj, info);
  8167. }
  8168. }
  8169. break;
  8170. case "doc":
  8171. aTool = 6;
  8172. _iframe = $$("iframe", {
  8173. "frameborder": "no",
  8174. "border": "0",
  8175. "scrolling ": "no",
  8176. "style": {
  8177. "cssText": "border:0;width:100%;height:100%"
  8178. },
  8179. "src": "/Office/Word/WordEditArea.htm"
  8180. })
  8181. _box.appendChild(_iframe);
  8182. _box.appendChild(_jie);
  8183. _formdiv = new U.UF.UI.form(
  8184. "协同文档-" + _username,
  8185. _box, {
  8186. "id": "doc" + cid + stage + task + tool + _userid,
  8187. "style": {
  8188. "width": "90%",
  8189. "height": "90%",
  8190. "overflow": 'hidden'
  8191. },
  8192. "onresize": function () { }
  8193. }, {
  8194. closecallback: function () { }
  8195. }, {
  8196. "style": {
  8197. "height": "36px"
  8198. }
  8199. }).form; //创建窗体
  8200. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8201. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8202. })
  8203. _taskbar = {
  8204. "id": str + _formdiv.id,
  8205. "style": {
  8206. "backgroundImage": "url(/img/icon/doc.png)"
  8207. },
  8208. "name": "协同文档",
  8209. "forms": _formdiv,
  8210. "click": function () {
  8211. U.MD.D.I.openApplication(str, obj, info);
  8212. }
  8213. }
  8214. break;
  8215. case "mindNetwork": //好友打开
  8216. aTool = 7;
  8217. _iframe = $$("iframe", {
  8218. "webkitallowfullscreen": "",
  8219. "mozallowfullscreen": "",
  8220. "allowfullscreen": "",
  8221. "frameborder": "no",
  8222. "border": "0",
  8223. "scrolling ": "no",
  8224. "style": {
  8225. "cssText": "border:0; width:100%; height:100%;"
  8226. },
  8227. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8228. })
  8229. _box.appendChild(_iframe);
  8230. _box.appendChild(_jie);
  8231. _formdiv = new U.UF.UI.form(
  8232. "思维网格-" + _username,
  8233. _box, {
  8234. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8235. "style": {
  8236. "width": "90%",
  8237. "height": "90%",
  8238. "overflow": 'hidden'
  8239. },
  8240. "onresize": function () { }
  8241. }, {
  8242. closecallback: function () { }
  8243. }, {
  8244. "style": {
  8245. "height": "36px"
  8246. }
  8247. }).form; //创建窗体
  8248. _taskbar = {
  8249. "id": str + _formdiv.id,
  8250. "style": {
  8251. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8252. },
  8253. "name": "思维网格",
  8254. "forms": _formdiv,
  8255. "click": function () {
  8256. U.MD.D.I.openApplication(str, obj, info);
  8257. }
  8258. }
  8259. break;
  8260. case "courseDesign":
  8261. _iframe = $$("iframe", {
  8262. "webkitallowfullscreen": "",
  8263. "mozallowfullscreen": "",
  8264. "allowfullscreen": "",
  8265. "frameborder": "no",
  8266. "border": "0",
  8267. "scrolling ": "no",
  8268. "style": {
  8269. "cssText": "border:0; width:100%; height:100%;"
  8270. },
  8271. "src": "/course-design-vue"
  8272. })
  8273. _box.appendChild(_iframe);
  8274. _box.appendChild(_jie);
  8275. _formdiv = new U.UF.UI.form(
  8276. "项目设计-" + _username,
  8277. _box, {
  8278. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8279. "style": {
  8280. "width": "90%",
  8281. "height": "90%",
  8282. "overflow": 'hidden'
  8283. },
  8284. "onresize": function () { }
  8285. }, {
  8286. closecallback: function () { }
  8287. }, {
  8288. "style": {
  8289. "height": "36px"
  8290. }
  8291. }).form; //创建窗体
  8292. _taskbar = {
  8293. "id": str + _formdiv.id,
  8294. "style": {
  8295. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8296. },
  8297. "name": "项目设计",
  8298. "forms": _formdiv,
  8299. "click": function () {
  8300. U.MD.D.I.openApplication(str, obj, info);
  8301. }
  8302. }
  8303. break;
  8304. }
  8305. const script1 = document.createElement("script");
  8306. script1.type = "text/javascript";
  8307. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8308. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8309. const script2 = document.createElement("script");
  8310. script2.type = "text/javascript";
  8311. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8312. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8313. const script3 = document.createElement("script");
  8314. script3.type = "text/javascript";
  8315. script3.charset = "UTF-8";
  8316. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8317. const script4 = document.createElement("script");
  8318. script4.type = "text/javascript";
  8319. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8320. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8321. if (_iframe) {
  8322. if (str == 'doc') {
  8323. _iframe = _formdiv.querySelector('iframe')
  8324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8325. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8326. _iframe.contentWindow.document.body.appendChild(script1);
  8327. _iframe.contentWindow.document.body.appendChild(script2);
  8328. // _iframe.contentWindow.document.body.appendChild(script3);
  8329. _iframe.contentWindow.document.body.appendChild(script4);
  8330. })
  8331. if (onloadListener) {
  8332. _iframe.contentDocument.location.reload()
  8333. } else {
  8334. _iframe.contentDocument.location.reload()
  8335. }
  8336. } else if (str == 'courseDesign') {
  8337. U.UF.DL.iframeLoad(_iframe, function () {
  8338. // _iframe.contentWindow.U.MD.O.W.load();
  8339. // _iframe.contentWindow.document.body.appendChild(script1);
  8340. _iframe.contentWindow.document.body.appendChild(script2);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. })
  8343. } else if (str == 'mind') {
  8344. _iframe = _formdiv.querySelector('iframe')
  8345. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8346. //
  8347. _iframe.contentWindow.document.body.appendChild(script1);
  8348. _iframe.contentWindow.document.body.appendChild(script2);
  8349. _iframe.contentWindow.document.body.appendChild(script4);
  8350. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8351. })
  8352. if (onloadListener) {
  8353. _iframe.contentDocument.location.reload()
  8354. } else {
  8355. _iframe.contentDocument.location.reload()
  8356. }
  8357. } else if (str == 'whiteboard') {
  8358. _iframe = _formdiv.querySelector('iframe')
  8359. let onloadListener = _iframe.onload = () => {
  8360. _iframe.contentWindow.document.body.appendChild(script1);
  8361. _iframe.contentWindow.document.body.appendChild(script2);
  8362. _iframe.contentWindow.document.body.appendChild(script4);
  8363. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8364. };
  8365. // if (onloadListener) {
  8366. // try {
  8367. // _iframe.src += "?cocorobo="+new Date().getTime()
  8368. // _iframe.contentWindow.document.location.reload()
  8369. // } catch (error) {
  8370. // }
  8371. // } else {
  8372. // _iframe.contentDocument.location.reload()
  8373. // }
  8374. } else {
  8375. _iframe.onload = () => {
  8376. _iframe.contentWindow.document.body.appendChild(script1);
  8377. _iframe.contentWindow.document.body.appendChild(script2);
  8378. // _iframe.contentWindow.document.body.appendChild(script3);
  8379. _iframe.contentWindow.document.body.appendChild(script4);
  8380. };
  8381. }
  8382. _jie.onclick = async () => {
  8383. let text = ''
  8384. if (aTool == 1) {
  8385. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8386. } else if (aTool == 6) {
  8387. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8388. } else if (aTool == 3) {
  8389. text = await U.MD.D.I.getEditorContent(_iframe);
  8390. }
  8391. _loading.style.display = 'flex'
  8392. console.log(_loading);
  8393. var _ajs = _iframe.contentWindow.document.createElement("script");
  8394. _ajs.type = "text/javascript";
  8395. _ajs.innerHTML =
  8396. // 'console.log(' + _loading + ');\n' +
  8397. 'var _js = document.createElement("script");\n' +
  8398. '_js.type="text/javascript";\n' +
  8399. '_js.charset="UTF-8";\n' +
  8400. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8401. "_js.onload = function(){\n" +
  8402. ' var a = document.getElementsByTagName("img")\n' +
  8403. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8404. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8405. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8406. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8407. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8408. "beforeUpload_shishi(file," +
  8409. "'" +
  8410. _userid +
  8411. "'" +
  8412. ", " +
  8413. "'" +
  8414. _cid +
  8415. "'" +
  8416. ", " +
  8417. "'" +
  8418. _stage +
  8419. "'" +
  8420. ", " +
  8421. "'" +
  8422. _task +
  8423. "'" +
  8424. ", " +
  8425. "'" +
  8426. _tool +
  8427. "'" +
  8428. ", " +
  8429. "'" +
  8430. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8431. "'" +
  8432. ", " +
  8433. "'" +
  8434. aTool +
  8435. "'" +
  8436. ", " +
  8437. "`" +
  8438. text +
  8439. "`" +
  8440. ")\n" +
  8441. " });\n" +
  8442. "}\n" +
  8443. "document.head.appendChild(_js);\n";
  8444. _iframe.contentWindow.document.head.appendChild(_ajs);
  8445. }
  8446. }
  8447. }
  8448. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8449. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8450. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8451. _userid = student.userid, //登录用户id
  8452. _username = student.student //用户名字
  8453. let _iframe;
  8454. let _cid = cid,
  8455. _stage = stage,
  8456. _task = task,
  8457. _tool = tool;
  8458. var _jie = $$("div", {
  8459. "style": {
  8460. "position": "absolute",
  8461. "bottom": "50px",
  8462. "right": "50px",
  8463. "zIndex": "9999",
  8464. "backgroundColor": "#2268bc",
  8465. "color": "#fff",
  8466. "padding": "12px 20px",
  8467. "cursor": "pointer",
  8468. "borderRadius": "4px",
  8469. },
  8470. "innerHTML": "提交作业"
  8471. })
  8472. let aTool = ''
  8473. let _loading = document.createElement('div')
  8474. _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;"
  8475. // _loading.id = "";
  8476. let _lchild = document.createElement('div')
  8477. let _limg = document.createElement('img')
  8478. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8479. _limg.style = "width: 26px;margin-right: 10px;"
  8480. _lchild.appendChild(_limg)
  8481. let _lspan = document.createElement('span')
  8482. _lspan.innerHTML = "上传中..."
  8483. _lchild.appendChild(_lspan)
  8484. _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%);"
  8485. _loading.appendChild(_lchild)
  8486. var _box = $$('div', {
  8487. "style": {
  8488. "position": "relative",
  8489. "width": "100%",
  8490. "height": "100%",
  8491. },
  8492. })
  8493. _box.appendChild(_loading)
  8494. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8495. switch (str) {
  8496. case "whiteboard":
  8497. aTool = 1;
  8498. _iframe = $$("iframe", {
  8499. "frameborder": "no",
  8500. "border": "0",
  8501. "scrolling ": "no",
  8502. "style": {
  8503. "cssText": "border:0;width:100%;height:100%"
  8504. },
  8505. "src": "https://beta.iwb.cocorobo.cn/"
  8506. })
  8507. _box.appendChild(_iframe);
  8508. _box.appendChild(_jie);
  8509. _formdiv = new U.UF.UI.form(
  8510. "电子白板-" + _username,
  8511. _box, {
  8512. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8513. "style": {
  8514. "width": "90%",
  8515. "height": "90%",
  8516. "overflow": 'hidden'
  8517. },
  8518. "onresize": function () { }
  8519. }, {
  8520. closecallback: function () { }
  8521. }, {
  8522. "style": {
  8523. "height": "36px"
  8524. }
  8525. }).form; //创建窗体
  8526. _taskbar = {
  8527. "id": str + _formdiv.id,
  8528. "style": {
  8529. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8530. },
  8531. "name": "电子白板",
  8532. "forms": _formdiv,
  8533. "click": function () {
  8534. U.MD.D.I.openApplication(str, obj, info);
  8535. }
  8536. }
  8537. break;
  8538. case "mind":
  8539. aTool = 3;
  8540. _iframe = $$("iframe", {
  8541. "frameborder": "no",
  8542. "border": "0",
  8543. "scrolling ": "no",
  8544. "style": {
  8545. "cssText": "border:0;width:100%;height:100%"
  8546. },
  8547. "src": "/kityminder-editor/dist/index.html"
  8548. })
  8549. _box.appendChild(_iframe);
  8550. _box.appendChild(_jie);
  8551. _formdiv = new U.UF.UI.form(
  8552. "思维导图-" + _username,
  8553. _box, { //"/jsmind/example/demo.html"
  8554. "id": "mind" + cid + stage + task + tool + _userid,
  8555. "style": {
  8556. "width": "90%",
  8557. "height": "90%",
  8558. "overflow": 'hidden'
  8559. },
  8560. "onresize": function () { }
  8561. }, {
  8562. closecallback: function () { }
  8563. }, {
  8564. "style": {
  8565. "height": "36px"
  8566. }
  8567. }).form; //创建窗体
  8568. _taskbar = {
  8569. "id": str + _formdiv.id,
  8570. "style": {
  8571. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8572. },
  8573. "name": "思维导图",
  8574. "forms": _formdiv,
  8575. "click": function () {
  8576. U.MD.D.I.openApplication(str, obj, info);
  8577. }
  8578. }
  8579. break;
  8580. case "MindMap":
  8581. aTool = 3;
  8582. _iframe = $$("iframe", {
  8583. "frameborder": "no",
  8584. "border": "0",
  8585. "scrolling ": "no",
  8586. "style": {
  8587. "cssText": "border:0;width:100%;height:100%"
  8588. },
  8589. "src": "//cloud.cocorobo.cn/mind/"
  8590. })
  8591. _box.appendChild(_iframe);
  8592. _box.appendChild(_jie);
  8593. _formdiv = new U.UF.UI.form(
  8594. "思维导图-" + _username,
  8595. _box, { //"/jsmind/example/demo.html"
  8596. "id": "mind" + cid + stage + task + tool + _userid,
  8597. "style": {
  8598. "width": "90%",
  8599. "height": "90%",
  8600. "overflow": 'hidden'
  8601. },
  8602. "onresize": function () { }
  8603. }, {
  8604. closecallback: function () { }
  8605. }, {
  8606. "style": {
  8607. "height": "36px"
  8608. }
  8609. }).form; //创建窗体
  8610. _taskbar = {
  8611. "id": str + _formdiv.id,
  8612. "style": {
  8613. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8614. },
  8615. "name": "思维导图",
  8616. "forms": _formdiv,
  8617. "click": function () {
  8618. U.MD.D.I.openApplication(str, obj, info);
  8619. }
  8620. }
  8621. break;
  8622. case "doc":
  8623. aTool = 6;
  8624. _iframe = $$("iframe", {
  8625. "frameborder": "no",
  8626. "border": "0",
  8627. "scrolling ": "no",
  8628. "style": {
  8629. "cssText": "border:0;width:100%;height:100%"
  8630. },
  8631. "src": "/Office/Word/WordEditArea.htm"
  8632. })
  8633. _box.appendChild(_iframe);
  8634. _box.appendChild(_jie);
  8635. _formdiv = new U.UF.UI.form(
  8636. "协同文档-" + _username,
  8637. _box, {
  8638. "id": "doc" + cid + stage + task + tool + _userid,
  8639. "style": {
  8640. "width": "90%",
  8641. "height": "90%",
  8642. "overflow": 'hidden'
  8643. },
  8644. "onresize": function () { }
  8645. }, {
  8646. closecallback: function () { }
  8647. }, {
  8648. "style": {
  8649. "height": "36px"
  8650. }
  8651. }).form; //创建窗体
  8652. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8653. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8654. })
  8655. _taskbar = {
  8656. "id": str + _formdiv.id,
  8657. "style": {
  8658. "backgroundImage": "url(/img/icon/doc.png)"
  8659. },
  8660. "name": "协同文档",
  8661. "forms": _formdiv,
  8662. "click": function () {
  8663. U.MD.D.I.openApplication(str, obj, info);
  8664. }
  8665. }
  8666. break;
  8667. case "mindNetwork": //好友打开
  8668. aTool = 7;
  8669. _iframe = $$("iframe", {
  8670. "webkitallowfullscreen": "",
  8671. "mozallowfullscreen": "",
  8672. "allowfullscreen": "",
  8673. "frameborder": "no",
  8674. "border": "0",
  8675. "scrolling ": "no",
  8676. "style": {
  8677. "cssText": "border:0; width:100%; height:100%;"
  8678. },
  8679. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8680. })
  8681. _box.appendChild(_iframe);
  8682. _box.appendChild(_jie);
  8683. _formdiv = new U.UF.UI.form(
  8684. "思维网格-" + _username,
  8685. _box, {
  8686. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8687. "style": {
  8688. "width": "90%",
  8689. "height": "90%",
  8690. "overflow": 'hidden'
  8691. },
  8692. "onresize": function () { }
  8693. }, {
  8694. closecallback: function () { }
  8695. }, {
  8696. "style": {
  8697. "height": "36px"
  8698. }
  8699. }).form; //创建窗体
  8700. _taskbar = {
  8701. "id": str + _formdiv.id,
  8702. "style": {
  8703. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8704. },
  8705. "name": "思维网格",
  8706. "forms": _formdiv,
  8707. "click": function () {
  8708. U.MD.D.I.openApplication(str, obj, info);
  8709. }
  8710. }
  8711. break;
  8712. case "courseDesign":
  8713. _iframe = $$("iframe", {
  8714. "webkitallowfullscreen": "",
  8715. "mozallowfullscreen": "",
  8716. "allowfullscreen": "",
  8717. "frameborder": "no",
  8718. "border": "0",
  8719. "scrolling ": "no",
  8720. "style": {
  8721. "cssText": "border:0; width:100%; height:100%;"
  8722. },
  8723. "src": "/course-design-vue"
  8724. })
  8725. _box.appendChild(_iframe);
  8726. _box.appendChild(_jie);
  8727. _formdiv = new U.UF.UI.form(
  8728. "项目设计-" + _username,
  8729. _box, {
  8730. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8731. "style": {
  8732. "width": "90%",
  8733. "height": "90%",
  8734. "overflow": 'hidden'
  8735. },
  8736. "onresize": function () { }
  8737. }, {
  8738. closecallback: function () { }
  8739. }, {
  8740. "style": {
  8741. "height": "36px"
  8742. }
  8743. }).form; //创建窗体
  8744. _taskbar = {
  8745. "id": str + _formdiv.id,
  8746. "style": {
  8747. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8748. },
  8749. "name": "项目设计",
  8750. "forms": _formdiv,
  8751. "click": function () {
  8752. U.MD.D.I.openApplication(str, obj, info);
  8753. }
  8754. }
  8755. break;
  8756. }
  8757. const script1 = document.createElement("script");
  8758. script1.type = "text/javascript";
  8759. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8760. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8761. const script2 = document.createElement("script");
  8762. script2.type = "text/javascript";
  8763. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8764. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8765. const script3 = document.createElement("script");
  8766. script3.type = "text/javascript";
  8767. script3.charset = "UTF-8";
  8768. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8769. const script4 = document.createElement("script");
  8770. script4.type = "text/javascript";
  8771. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8772. script4.src = window.origin + "/js/Common/jietu2E.js";
  8773. if (_iframe) {
  8774. if (str == 'doc') {
  8775. _iframe = _formdiv.querySelector('iframe')
  8776. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8777. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8778. _iframe.contentWindow.document.body.appendChild(script1);
  8779. _iframe.contentWindow.document.body.appendChild(script2);
  8780. // _iframe.contentWindow.document.body.appendChild(script3);
  8781. _iframe.contentWindow.document.body.appendChild(script4);
  8782. })
  8783. if (onloadListener) {
  8784. _iframe.contentDocument.location.reload()
  8785. } else {
  8786. _iframe.contentDocument.location.reload()
  8787. }
  8788. } else if (str == 'courseDesign') {
  8789. U.UF.DL.iframeLoad(_iframe, function () {
  8790. // _iframe.contentWindow.U.MD.O.W.load();
  8791. // _iframe.contentWindow.document.body.appendChild(script1);
  8792. _iframe.contentWindow.document.body.appendChild(script2);
  8793. _iframe.contentWindow.document.body.appendChild(script4);
  8794. })
  8795. } else if (str == 'mind') {
  8796. _iframe = _formdiv.querySelector('iframe')
  8797. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8798. //
  8799. _iframe.contentWindow.document.body.appendChild(script1);
  8800. _iframe.contentWindow.document.body.appendChild(script2);
  8801. _iframe.contentWindow.document.body.appendChild(script4);
  8802. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8803. })
  8804. if (onloadListener) {
  8805. _iframe.contentDocument.location.reload()
  8806. } else {
  8807. _iframe.contentDocument.location.reload()
  8808. }
  8809. } else if (str == 'whiteboard') {
  8810. _iframe = _formdiv.querySelector('iframe')
  8811. let onloadListener = _iframe.onload = () => {
  8812. _iframe.contentWindow.document.body.appendChild(script1);
  8813. _iframe.contentWindow.document.body.appendChild(script2);
  8814. _iframe.contentWindow.document.body.appendChild(script4);
  8815. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8816. };
  8817. // if (onloadListener) {
  8818. // try {
  8819. // _iframe.src += "?cocorobo="+new Date().getTime()
  8820. // _iframe.contentWindow.document.location.reload()
  8821. // } catch (error) {
  8822. // }
  8823. // } else {
  8824. // _iframe.contentDocument.location.reload()
  8825. // }
  8826. } else {
  8827. _iframe.onload = () => {
  8828. _iframe.contentWindow.document.body.appendChild(script1);
  8829. _iframe.contentWindow.document.body.appendChild(script2);
  8830. // _iframe.contentWindow.document.body.appendChild(script3);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. };
  8833. }
  8834. _jie.onclick = async () => {
  8835. let text = ''
  8836. if (aTool == 1) {
  8837. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8838. } else if (aTool == 6) {
  8839. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8840. } else if (aTool == 3) {
  8841. text = await U.MD.D.I.getEditorContent(_iframe);
  8842. }
  8843. _loading.style.display = 'flex'
  8844. console.log(_loading);
  8845. var _ajs = _iframe.contentWindow.document.createElement("script");
  8846. _ajs.type = "text/javascript";
  8847. _ajs.innerHTML =
  8848. // 'console.log(' + _loading + ');\n' +
  8849. 'var _js = document.createElement("script");\n' +
  8850. '_js.type="text/javascript";\n' +
  8851. '_js.charset="UTF-8";\n' +
  8852. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8853. "_js.onload = function(){\n" +
  8854. ' var a = document.getElementsByTagName("img")\n' +
  8855. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8856. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8857. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8858. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8859. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8860. "beforeUpload_shishi(file," +
  8861. "'" +
  8862. _userid +
  8863. "'" +
  8864. ", " +
  8865. "'" +
  8866. _cid +
  8867. "'" +
  8868. ", " +
  8869. "'" +
  8870. _stage +
  8871. "'" +
  8872. ", " +
  8873. "'" +
  8874. _task +
  8875. "'" +
  8876. ", " +
  8877. "'" +
  8878. _tool +
  8879. "'" +
  8880. ", " +
  8881. "'" +
  8882. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8883. "'" +
  8884. ", " +
  8885. "'" +
  8886. aTool +
  8887. "'" +
  8888. ", " +
  8889. "`" +
  8890. text +
  8891. "`" +
  8892. ")\n" +
  8893. " });\n" +
  8894. "}\n" +
  8895. "document.head.appendChild(_js);\n";
  8896. _iframe.contentWindow.document.head.appendChild(_ajs);
  8897. }
  8898. }
  8899. }
  8900. U.MD.D.I.getEditorContent = function (iframe) {
  8901. return new Promise((resolve, reject) => {
  8902. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8903. console.log(content);
  8904. resolve(content)
  8905. });
  8906. });
  8907. }
  8908. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8909. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8910. // if (res.value[0].length > 0) {
  8911. // // resolve(res.value[0][0].text);
  8912. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8913. // $(fileInput).val('');
  8914. // });
  8915. // }
  8916. // }, [], { "type": "GET", "withCredentials": true });
  8917. var xmlhttp;
  8918. var Mac, Sn, DeviceId
  8919. if (window.XMLHttpRequest) {
  8920. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8921. xmlhttp = new XMLHttpRequest();
  8922. } else {
  8923. // IE6, IE5 浏览器执行代码
  8924. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8925. }
  8926. xmlhttp.onreadystatechange = function () {
  8927. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8928. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8929. // resolve(res.value[0][0].text);
  8930. if (type == '2') {
  8931. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8932. } else if (type == '3') {
  8933. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8934. }
  8935. } else {
  8936. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8937. }
  8938. }
  8939. }
  8940. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8941. xmlhttp.send();
  8942. }
  8943. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8944. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8945. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8946. _userinfo = US.userInfo, //登录用户信息
  8947. _userid = US.userInfo.userid //登录用户id
  8948. let _iframe;
  8949. let _cid = cid,
  8950. _stage = stage,
  8951. _task = task,
  8952. _tool = tool;
  8953. var _jie = $$("div", {
  8954. "style": {
  8955. "position": "absolute",
  8956. "bottom": "50px",
  8957. "right": "50px",
  8958. "zIndex": "9999",
  8959. "backgroundColor": "#2268bc",
  8960. "color": "#fff",
  8961. "padding": "12px 20px",
  8962. "cursor": "pointer",
  8963. "borderRadius": "4px",
  8964. },
  8965. "innerHTML": "确认并提交"
  8966. })
  8967. let aTool = ''
  8968. let _loading = document.createElement('div')
  8969. _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;"
  8970. // _loading.id = "";
  8971. let _lchild = document.createElement('div')
  8972. let _limg = document.createElement('img')
  8973. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8974. _limg.style = "width: 26px;margin-right: 10px;"
  8975. _lchild.appendChild(_limg)
  8976. let _lspan = document.createElement('span')
  8977. _lspan.innerHTML = "上传中..."
  8978. _lchild.appendChild(_lspan)
  8979. _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%);"
  8980. _loading.appendChild(_lchild)
  8981. var _box = $$('div', {
  8982. "style": {
  8983. "position": "relative",
  8984. "width": "100%",
  8985. "height": "100%",
  8986. },
  8987. })
  8988. _box.appendChild(_loading)
  8989. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8990. switch (str) {
  8991. case "whiteboard":
  8992. aTool = 1;
  8993. _iframe = $$("iframe", {
  8994. "frameborder": "no",
  8995. "border": "0",
  8996. "scrolling ": "no",
  8997. "style": {
  8998. "cssText": "border:0;width:100%;height:100%"
  8999. },
  9000. "src": "https://beta.iwb.cocorobo.cn/"
  9001. })
  9002. _box.appendChild(_iframe);
  9003. _box.appendChild(_jie);
  9004. _formdiv = new U.UF.UI.form(
  9005. "电子白板",
  9006. _box, {
  9007. "id": "whiteboards" + cid + stage + task + tool,
  9008. "style": {
  9009. "width": "90%",
  9010. "height": "90%",
  9011. "overflow": 'hidden'
  9012. },
  9013. "onresize": function () { }
  9014. }, {
  9015. closecallback: function () { }
  9016. }, {
  9017. "style": {
  9018. "height": "36px"
  9019. }
  9020. }).form; //创建窗体
  9021. _taskbar = {
  9022. "id": str + _formdiv.id,
  9023. "style": {
  9024. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9025. },
  9026. "name": "电子白板",
  9027. "forms": _formdiv,
  9028. "click": function () {
  9029. U.MD.D.I.openApplication(str, obj, info);
  9030. }
  9031. }
  9032. break;
  9033. case "mind":
  9034. aTool = 3;
  9035. _iframe = $$("iframe", {
  9036. "frameborder": "no",
  9037. "border": "0",
  9038. "scrolling ": "no",
  9039. "style": {
  9040. "cssText": "border:0;width:100%;height:100%"
  9041. },
  9042. "src": "/kityminder-editor/dist/index.html"
  9043. });
  9044. _box.appendChild(_iframe);
  9045. _box.appendChild(_jie);
  9046. _formdiv = new U.UF.UI.form(
  9047. "思维导图",
  9048. _box, { //"/jsmind/example/demo.html"
  9049. "id": "minds" + cid + stage + task + tool,
  9050. "style": {
  9051. "width": "90%",
  9052. "height": "90%",
  9053. "overflow": 'hidden'
  9054. },
  9055. "onresize": function () { }
  9056. }, {
  9057. closecallback: function () { }
  9058. }, {
  9059. "style": {
  9060. "height": "36px"
  9061. }
  9062. }).form; //创建窗体
  9063. _taskbar = {
  9064. "id": str + _formdiv.id,
  9065. "style": {
  9066. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9067. },
  9068. "name": "思维导图",
  9069. "forms": _formdiv,
  9070. "click": function () {
  9071. U.MD.D.I.openApplication(str, obj, info);
  9072. }
  9073. }
  9074. break;
  9075. case "doc":
  9076. aTool = 6;
  9077. _iframe = $$("iframe", {
  9078. "frameborder": "no",
  9079. "border": "0",
  9080. "scrolling ": "no",
  9081. "style": {
  9082. "cssText": "border:0;width:100%;height:100%"
  9083. },
  9084. "src": "/Office/Word/WordEditArea.htm"
  9085. })
  9086. _box.appendChild(_iframe);
  9087. _box.appendChild(_jie);
  9088. _formdiv = new U.UF.UI.form(
  9089. "协同文档",
  9090. _box, {
  9091. "id": "docs" + cid + stage + task + tool,
  9092. "style": {
  9093. "width": "90%",
  9094. "height": "90%",
  9095. "overflow": 'hidden'
  9096. },
  9097. "onresize": function () { }
  9098. }, {
  9099. closecallback: function () { }
  9100. }, {
  9101. "style": {
  9102. "height": "36px"
  9103. }
  9104. }).form; //创建窗体
  9105. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9106. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9107. })
  9108. _taskbar = {
  9109. "id": str + _formdiv.id,
  9110. "style": {
  9111. "backgroundImage": "url(/img/icon/doc.png)"
  9112. },
  9113. "name": "协同文档",
  9114. "forms": _formdiv,
  9115. "click": function () {
  9116. U.MD.D.I.openApplication(str, obj, info);
  9117. }
  9118. }
  9119. break;
  9120. }
  9121. const script1 = document.createElement("script");
  9122. script1.type = "text/javascript";
  9123. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9124. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9125. const script2 = document.createElement("script");
  9126. script2.type = "text/javascript";
  9127. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9128. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9129. const script3 = document.createElement("script");
  9130. script3.type = "text/javascript";
  9131. script3.charset = "UTF-8";
  9132. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9133. const script4 = document.createElement("script");
  9134. script4.type = "text/javascript";
  9135. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9136. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9137. if (_iframe) {
  9138. if (str == 'doc') {
  9139. _iframe = _formdiv.querySelector('iframe')
  9140. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9141. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9142. _iframe.contentWindow.document.body.appendChild(script1);
  9143. _iframe.contentWindow.document.body.appendChild(script2);
  9144. // _iframe.contentWindow.document.body.appendChild(script3);
  9145. _iframe.contentWindow.document.body.appendChild(script4);
  9146. })
  9147. if (onloadListener) {
  9148. _iframe.contentDocument.location.reload()
  9149. } else {
  9150. _iframe.contentDocument.location.reload()
  9151. }
  9152. } else if (str == 'mind') {
  9153. _iframe = _formdiv.querySelector('iframe')
  9154. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9155. _iframe.contentWindow.document.body.appendChild(script1);
  9156. _iframe.contentWindow.document.body.appendChild(script2);
  9157. _iframe.contentWindow.document.body.appendChild(script4);
  9158. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9159. })
  9160. if (onloadListener) {
  9161. _iframe.contentDocument.location.reload()
  9162. } else {
  9163. _iframe.contentDocument.location.reload()
  9164. }
  9165. } else {
  9166. _iframe.onload = () => {
  9167. _iframe.contentWindow.document.body.appendChild(script1);
  9168. _iframe.contentWindow.document.body.appendChild(script2);
  9169. // _iframe.contentWindow.document.body.appendChild(script3);
  9170. _iframe.contentWindow.document.body.appendChild(script4);
  9171. };
  9172. }
  9173. _jie.onclick = async () => {
  9174. let text = ''
  9175. if (aTool == 6) {
  9176. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9177. } else if (aTool == 3) {
  9178. text = await U.MD.D.I.getEditorContent(_iframe);
  9179. }
  9180. _loading.style.display = 'flex'
  9181. console.log(_loading);
  9182. var _ajs = _iframe.contentWindow.document.createElement("script");
  9183. _ajs.type = "text/javascript";
  9184. _ajs.innerHTML =
  9185. // 'console.log(' + _loading + ');\n' +
  9186. 'var _js = document.createElement("script");\n' +
  9187. '_js.type="text/javascript";\n' +
  9188. '_js.charset="UTF-8";\n' +
  9189. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9190. "_js.onload = function(){\n" +
  9191. ' var a = document.getElementsByTagName("img")\n' +
  9192. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9193. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9194. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9195. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9196. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9197. "beforeUpload_shishi(file," +
  9198. "'" +
  9199. _userid +
  9200. "'" +
  9201. ", " +
  9202. "'" +
  9203. _cid +
  9204. "'" +
  9205. ", " +
  9206. "'" +
  9207. _stage +
  9208. "'" +
  9209. ", " +
  9210. "'" +
  9211. _task +
  9212. "'" +
  9213. ", " +
  9214. "'" +
  9215. _tool +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9220. "'" +
  9221. ", " +
  9222. "'" +
  9223. aTool +
  9224. "'" +
  9225. ", " +
  9226. "`" +
  9227. text +
  9228. "`" +
  9229. ")\n" +
  9230. " });\n" +
  9231. "}\n" +
  9232. "document.head.appendChild(_js);\n";
  9233. _iframe.contentWindow.document.head.appendChild(_ajs);
  9234. }
  9235. }
  9236. //U.MD.D.I.openClick(str);
  9237. //如果有任务栏信息
  9238. // if (_taskbar) {
  9239. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9240. // }
  9241. }
  9242. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9243. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9244. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9245. _userinfo = US.userInfo, //登录用户信息
  9246. _userid = US.userInfo.userid //登录用户id
  9247. let _iframe;
  9248. let _cid = cid,
  9249. _stage = stage,
  9250. _task = task,
  9251. _tool = tool;
  9252. var _jie = $$("div", {
  9253. "style": {
  9254. "position": "absolute",
  9255. "bottom": "50px",
  9256. "right": "50px",
  9257. "zIndex": "9999",
  9258. "backgroundColor": "#2268bc",
  9259. "color": "#fff",
  9260. "padding": "12px 20px",
  9261. "cursor": "pointer",
  9262. "borderRadius": "4px",
  9263. },
  9264. "innerHTML": "确认并提交"
  9265. })
  9266. let aTool = ''
  9267. let _loading = document.createElement('div')
  9268. _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;"
  9269. // _loading.id = "";
  9270. let _lchild = document.createElement('div')
  9271. let _limg = document.createElement('img')
  9272. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9273. _limg.style = "width: 26px;margin-right: 10px;"
  9274. _lchild.appendChild(_limg)
  9275. let _lspan = document.createElement('span')
  9276. _lspan.innerHTML = "上传中..."
  9277. _lchild.appendChild(_lspan)
  9278. _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%);"
  9279. _loading.appendChild(_lchild)
  9280. var _box = $$('div', {
  9281. "style": {
  9282. "position": "relative",
  9283. "width": "100%",
  9284. "height": "100%",
  9285. },
  9286. })
  9287. _box.appendChild(_loading)
  9288. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9289. switch (str) {
  9290. case "whiteboard":
  9291. aTool = 1;
  9292. _iframe = $$("iframe", {
  9293. "frameborder": "no",
  9294. "border": "0",
  9295. "scrolling ": "no",
  9296. "style": {
  9297. "cssText": "border:0;width:100%;height:100%"
  9298. },
  9299. "src": "https://beta.iwb.cocorobo.cn/"
  9300. })
  9301. _box.appendChild(_iframe);
  9302. _box.appendChild(_jie);
  9303. _formdiv = new U.UF.UI.form(
  9304. "电子白板",
  9305. _box, {
  9306. "id": "whiteboards" + cid + stage + task + tool,
  9307. "style": {
  9308. "width": "90%",
  9309. "height": "90%",
  9310. "overflow": 'hidden'
  9311. },
  9312. "onresize": function () { }
  9313. }, {
  9314. closecallback: function () { }
  9315. }, {
  9316. "style": {
  9317. "height": "36px"
  9318. }
  9319. }).form; //创建窗体
  9320. _taskbar = {
  9321. "id": str + _formdiv.id,
  9322. "style": {
  9323. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9324. },
  9325. "name": "电子白板",
  9326. "forms": _formdiv,
  9327. "click": function () {
  9328. U.MD.D.I.openApplication(str, obj, info);
  9329. }
  9330. }
  9331. break;
  9332. case "mind":
  9333. aTool = 3;
  9334. _iframe = $$("iframe", {
  9335. "frameborder": "no",
  9336. "border": "0",
  9337. "scrolling ": "no",
  9338. "style": {
  9339. "cssText": "border:0;width:100%;height:100%"
  9340. },
  9341. "src": "/kityminder-editor/dist/index.html"
  9342. });
  9343. _box.appendChild(_iframe);
  9344. _box.appendChild(_jie);
  9345. _formdiv = new U.UF.UI.form(
  9346. "思维导图",
  9347. _box, { //"/jsmind/example/demo.html"
  9348. "id": "minds" + cid + stage + task + tool,
  9349. "style": {
  9350. "width": "90%",
  9351. "height": "90%",
  9352. "overflow": 'hidden'
  9353. },
  9354. "onresize": function () { }
  9355. }, {
  9356. closecallback: function () { }
  9357. }, {
  9358. "style": {
  9359. "height": "36px"
  9360. }
  9361. }).form; //创建窗体
  9362. _taskbar = {
  9363. "id": str + _formdiv.id,
  9364. "style": {
  9365. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9366. },
  9367. "name": "思维导图",
  9368. "forms": _formdiv,
  9369. "click": function () {
  9370. U.MD.D.I.openApplication(str, obj, info);
  9371. }
  9372. }
  9373. break;
  9374. case "doc":
  9375. aTool = 6;
  9376. _iframe = $$("iframe", {
  9377. "frameborder": "no",
  9378. "border": "0",
  9379. "scrolling ": "no",
  9380. "style": {
  9381. "cssText": "border:0;width:100%;height:100%"
  9382. },
  9383. "src": "/Office/Word/WordEditArea.htm"
  9384. })
  9385. _box.appendChild(_iframe);
  9386. _box.appendChild(_jie);
  9387. _formdiv = new U.UF.UI.form(
  9388. "协同文档",
  9389. _box, {
  9390. "id": "docs" + cid + stage + task + tool,
  9391. "style": {
  9392. "width": "90%",
  9393. "height": "90%",
  9394. "overflow": 'hidden'
  9395. },
  9396. "onresize": function () { }
  9397. }, {
  9398. closecallback: function () { }
  9399. }, {
  9400. "style": {
  9401. "height": "36px"
  9402. }
  9403. }).form; //创建窗体
  9404. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9405. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9406. })
  9407. _taskbar = {
  9408. "id": str + _formdiv.id,
  9409. "style": {
  9410. "backgroundImage": "url(/img/icon/doc.png)"
  9411. },
  9412. "name": "协同文档",
  9413. "forms": _formdiv,
  9414. "click": function () {
  9415. U.MD.D.I.openApplication(str, obj, info);
  9416. }
  9417. }
  9418. break;
  9419. }
  9420. const script1 = document.createElement("script");
  9421. script1.type = "text/javascript";
  9422. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9423. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9424. const script2 = document.createElement("script");
  9425. script2.type = "text/javascript";
  9426. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9427. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9428. const script3 = document.createElement("script");
  9429. script3.type = "text/javascript";
  9430. script3.charset = "UTF-8";
  9431. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9432. const script4 = document.createElement("script");
  9433. script4.type = "text/javascript";
  9434. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9435. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9436. if (_iframe) {
  9437. if (str == 'doc') {
  9438. _iframe = _formdiv.querySelector('iframe')
  9439. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9440. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9441. _iframe.contentWindow.document.body.appendChild(script1);
  9442. _iframe.contentWindow.document.body.appendChild(script2);
  9443. // _iframe.contentWindow.document.body.appendChild(script3);
  9444. _iframe.contentWindow.document.body.appendChild(script4);
  9445. })
  9446. if (onloadListener) {
  9447. _iframe.contentDocument.location.reload()
  9448. } else {
  9449. _iframe.contentDocument.location.reload()
  9450. }
  9451. } else if (str == 'mind') {
  9452. _iframe = _formdiv.querySelector('iframe')
  9453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9454. _iframe.contentWindow.document.body.appendChild(script1);
  9455. _iframe.contentWindow.document.body.appendChild(script2);
  9456. _iframe.contentWindow.document.body.appendChild(script4);
  9457. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9458. })
  9459. if (onloadListener) {
  9460. _iframe.contentDocument.location.reload()
  9461. } else {
  9462. _iframe.contentDocument.location.reload()
  9463. }
  9464. } else {
  9465. _iframe.onload = () => {
  9466. _iframe.contentWindow.document.body.appendChild(script1);
  9467. _iframe.contentWindow.document.body.appendChild(script2);
  9468. // _iframe.contentWindow.document.body.appendChild(script3);
  9469. _iframe.contentWindow.document.body.appendChild(script4);
  9470. };
  9471. }
  9472. _jie.onclick = async () => {
  9473. let text = ''
  9474. if (aTool == 6) {
  9475. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9476. } else if (aTool == 3) {
  9477. text = await U.MD.D.I.getEditorContent(_iframe);
  9478. }
  9479. _loading.style.display = 'flex'
  9480. console.log(_loading);
  9481. var _ajs = _iframe.contentWindow.document.createElement("script");
  9482. _ajs.type = "text/javascript";
  9483. _ajs.innerHTML =
  9484. // 'console.log(' + _loading + ');\n' +
  9485. 'var _js = document.createElement("script");\n' +
  9486. '_js.type="text/javascript";\n' +
  9487. '_js.charset="UTF-8";\n' +
  9488. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9489. "_js.onload = function(){\n" +
  9490. ' var a = document.getElementsByTagName("img")\n' +
  9491. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9492. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9493. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9494. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9495. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9496. "beforeUpload_shishi(file," +
  9497. "'" +
  9498. _userid +
  9499. "'" +
  9500. ", " +
  9501. "'" +
  9502. _cid +
  9503. "'" +
  9504. ", " +
  9505. "'" +
  9506. _stage +
  9507. "'" +
  9508. ", " +
  9509. "'" +
  9510. _task +
  9511. "'" +
  9512. ", " +
  9513. "'" +
  9514. _tool +
  9515. "'" +
  9516. ", " +
  9517. "'" +
  9518. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9519. "'" +
  9520. ", " +
  9521. "'" +
  9522. aTool +
  9523. "'" +
  9524. ", " +
  9525. "`" +
  9526. text +
  9527. "`" +
  9528. ")\n" +
  9529. " });\n" +
  9530. "}\n" +
  9531. "document.head.appendChild(_js);\n";
  9532. _iframe.contentWindow.document.head.appendChild(_ajs);
  9533. }
  9534. }
  9535. //U.MD.D.I.openClick(str);
  9536. //如果有任务栏信息
  9537. // if (_taskbar) {
  9538. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9539. // }
  9540. }
  9541. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9542. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9543. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9544. _userinfo = US.userInfo, //登录用户信息
  9545. _userid = US.userInfo.userid //登录用户id
  9546. let _iframe;
  9547. let _cid = cid,
  9548. _stage = stage,
  9549. _task = task,
  9550. _tool = tool;
  9551. var _jie = $$("div", {
  9552. "style": {
  9553. "position": "absolute",
  9554. "bottom": "50px",
  9555. "right": "50px",
  9556. "zIndex": "9999",
  9557. "backgroundColor": "#2268bc",
  9558. "color": "#fff",
  9559. "padding": "12px 20px",
  9560. "cursor": "pointer",
  9561. "borderRadius": "4px",
  9562. },
  9563. "innerHTML": "上传模板"
  9564. })
  9565. let aTool = ''
  9566. let _loading = document.createElement('div')
  9567. _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;"
  9568. // _loading.id = "";
  9569. let _lchild = document.createElement('div')
  9570. let _limg = document.createElement('img')
  9571. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9572. _limg.style = "width: 26px;margin-right: 10px;"
  9573. _lchild.appendChild(_limg)
  9574. let _lspan = document.createElement('span')
  9575. _lspan.innerHTML = "上传中..."
  9576. _lchild.appendChild(_lspan)
  9577. _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%);"
  9578. _loading.appendChild(_lchild)
  9579. var _box = $$('div', {
  9580. "style": {
  9581. "position": "relative",
  9582. "width": "100%",
  9583. "height": "100%",
  9584. },
  9585. })
  9586. _box.appendChild(_loading)
  9587. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9588. switch (str) {
  9589. case "whiteboard":
  9590. aTool = 1;
  9591. _iframe = $$("iframe", {
  9592. "frameborder": "no",
  9593. "border": "0",
  9594. "scrolling ": "no",
  9595. "style": {
  9596. "cssText": "border:0;width:100%;height:100%"
  9597. },
  9598. "src": "https://beta.iwb.cocorobo.cn/"
  9599. })
  9600. _box.appendChild(_iframe);
  9601. _box.appendChild(_jie);
  9602. _formdiv = new U.UF.UI.form(
  9603. "电子白板",
  9604. _box, {
  9605. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9606. "style": {
  9607. "width": "90%",
  9608. "height": "90%",
  9609. "overflow": 'hidden'
  9610. },
  9611. "onresize": function () { }
  9612. }, {
  9613. closecallback: function () { }
  9614. }, {
  9615. "style": {
  9616. "height": "36px"
  9617. }
  9618. }).form; //创建窗体
  9619. _taskbar = {
  9620. "id": str + _formdiv.id,
  9621. "style": {
  9622. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9623. },
  9624. "name": "电子白板",
  9625. "forms": _formdiv,
  9626. "click": function () {
  9627. U.MD.D.I.openApplication(str, obj, info);
  9628. }
  9629. }
  9630. break;
  9631. case "mind":
  9632. aTool = 3;
  9633. _iframe = $$("iframe", {
  9634. "frameborder": "no",
  9635. "border": "0",
  9636. "scrolling ": "no",
  9637. "style": {
  9638. "cssText": "border:0;width:100%;height:100%"
  9639. },
  9640. "src": "/kityminder-editor/dist/index.html"
  9641. });
  9642. _box.appendChild(_iframe);
  9643. _box.appendChild(_jie);
  9644. _formdiv = new U.UF.UI.form(
  9645. "思维导图",
  9646. _box, { //"/jsmind/example/demo.html"
  9647. "id": "minds_Yu" + cid + stage + task + tool,
  9648. "style": {
  9649. "width": "90%",
  9650. "height": "90%",
  9651. "overflow": 'hidden'
  9652. },
  9653. "onresize": function () { }
  9654. }, {
  9655. closecallback: function () { }
  9656. }, {
  9657. "style": {
  9658. "height": "36px"
  9659. }
  9660. }).form; //创建窗体
  9661. _taskbar = {
  9662. "id": str + _formdiv.id,
  9663. "style": {
  9664. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9665. },
  9666. "name": "思维导图",
  9667. "forms": _formdiv,
  9668. "click": function () {
  9669. U.MD.D.I.openApplication(str, obj, info);
  9670. }
  9671. }
  9672. break;
  9673. case "doc":
  9674. aTool = 6;
  9675. _iframe = $$("iframe", {
  9676. "frameborder": "no",
  9677. "border": "0",
  9678. "scrolling ": "no",
  9679. "style": {
  9680. "cssText": "border:0;width:100%;height:100%"
  9681. },
  9682. "src": "/Office/Word/WordEditArea.htm"
  9683. })
  9684. _box.appendChild(_iframe);
  9685. _box.appendChild(_jie);
  9686. _formdiv = new U.UF.UI.form(
  9687. "协同文档",
  9688. _box, {
  9689. "id": "docs_Yu" + cid + stage + task + tool,
  9690. "style": {
  9691. "width": "90%",
  9692. "height": "90%",
  9693. "overflow": 'hidden'
  9694. },
  9695. "onresize": function () { }
  9696. }, {
  9697. closecallback: function () { }
  9698. }, {
  9699. "style": {
  9700. "height": "36px"
  9701. }
  9702. }).form; //创建窗体
  9703. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9704. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9705. })
  9706. _taskbar = {
  9707. "id": str + _formdiv.id,
  9708. "style": {
  9709. "backgroundImage": "url(/img/icon/doc.png)"
  9710. },
  9711. "name": "协同文档",
  9712. "forms": _formdiv,
  9713. "click": function () {
  9714. U.MD.D.I.openApplication(str, obj, info);
  9715. }
  9716. }
  9717. break;
  9718. case "CocoPi":
  9719. aTool = 57;
  9720. _iframe = $$("iframe", {
  9721. "allowpaymentrequest": "allowpaymentrequest",
  9722. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9723. "webkitallowfullscreen": "",
  9724. "mozallowfullscreen": "",
  9725. "frameborder": "no",
  9726. "border": "0",
  9727. "scrolling ": "no",
  9728. "style": {
  9729. "cssText": "border:0;width:100%;height:100%"
  9730. },
  9731. "src": "https://pi.cocorobo.cn/"
  9732. })
  9733. _box.appendChild(_iframe);
  9734. _box.appendChild(_jie);
  9735. _formdiv = new U.UF.UI.form(
  9736. "CocoPi",
  9737. _box, {
  9738. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9739. "style": {
  9740. "width": "90%",
  9741. "height": "90%",
  9742. "overflow": 'hidden'
  9743. },
  9744. "onresize": function () { }
  9745. }, {
  9746. closecallback: function () { }
  9747. }, {
  9748. "style": {
  9749. "height": "36px"
  9750. }
  9751. }).form; //创建窗体
  9752. _taskbar = {
  9753. "id": str + _formdiv.id,
  9754. "style": {
  9755. "backgroundImage": "url(/img/icon/cocopi.png)"
  9756. },
  9757. "name": "CocoPi",
  9758. "forms": _formdiv,
  9759. "click": function () {
  9760. U.MD.D.I.openApplication(str, obj, info);
  9761. }
  9762. }
  9763. break;
  9764. }
  9765. if (_iframe) {
  9766. if (str == 'doc') {
  9767. _iframe = _formdiv.querySelector('iframe')
  9768. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9769. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9770. })
  9771. if (onloadListener) {
  9772. _iframe.contentDocument.location.reload()
  9773. } else {
  9774. _iframe.contentDocument.location.reload()
  9775. }
  9776. } else if (str == 'mind') {
  9777. _iframe = _formdiv.querySelector('iframe')
  9778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9779. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9780. })
  9781. if (onloadListener) {
  9782. _iframe.contentDocument.location.reload()
  9783. } else {
  9784. _iframe.contentDocument.location.reload()
  9785. }
  9786. } else if (str == 'whiteboard') {
  9787. _iframe = _formdiv.querySelector('iframe')
  9788. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9789. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9790. })
  9791. // if (onloadListener) {
  9792. // try {
  9793. // _iframe.src += "?cocorobo="+new Date().getTime()
  9794. // _iframe.contentWindow.document.location.reload()
  9795. // } catch (error) {
  9796. // }
  9797. // } else {
  9798. // _iframe.contentDocument.location.reload()
  9799. // }
  9800. } else if (str == 'CocoPi') {
  9801. _iframe = _formdiv.querySelector('iframe')
  9802. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9803. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9804. })
  9805. if (onloadListener) {
  9806. _iframe.contentDocument.location.reload()
  9807. } else {
  9808. _iframe.contentDocument.location.reload()
  9809. }
  9810. } else {
  9811. _iframe.onload = () => { };
  9812. }
  9813. _jie.onclick = async () => {
  9814. let text = ''
  9815. let type = '2'
  9816. if (aTool == 1) {
  9817. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9818. type = '3'
  9819. } else if (aTool == 6) {
  9820. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9821. type = '1'
  9822. } else if (aTool == 3) {
  9823. text = await U.MD.D.I.getEditorContent(_iframe);
  9824. type = '2'
  9825. } else if (aTool == 57) {
  9826. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9827. type = '4'
  9828. }
  9829. _loading.style.display = 'flex'
  9830. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9831. }
  9832. }
  9833. //U.MD.D.I.openClick(str);
  9834. //如果有任务栏信息
  9835. // if (_taskbar) {
  9836. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9837. // }
  9838. }
  9839. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9840. var xmlhttp;
  9841. var Mac, Sn, DeviceId
  9842. if (window.XMLHttpRequest) {
  9843. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9844. xmlhttp = new XMLHttpRequest();
  9845. } else {
  9846. // IE6, IE5 浏览器执行代码
  9847. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9848. }
  9849. xmlhttp.onreadystatechange = function () {
  9850. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9851. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9852. // resolve(res.value[0][0].text);
  9853. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9854. }
  9855. }
  9856. }
  9857. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9858. xmlhttp.send();
  9859. }
  9860. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9861. var xmlhttp;
  9862. var Mac, Sn, DeviceId
  9863. if (window.XMLHttpRequest) {
  9864. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9865. xmlhttp = new XMLHttpRequest();
  9866. } else {
  9867. // IE6, IE5 浏览器执行代码
  9868. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9869. }
  9870. xmlhttp.onreadystatechange = function () {
  9871. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9872. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9873. // resolve(res.value[0][0].text);
  9874. if (type == '2') {
  9875. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9876. } else if (type == '3') {
  9877. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9878. } else if (type == '4') {
  9879. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9880. }
  9881. } else {
  9882. if (type == '2') {
  9883. iframe.contentWindow.editor.minder.importData('json', '')
  9884. } else if (type == '3') {
  9885. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9886. } else if (type == '4') {
  9887. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9888. }
  9889. }
  9890. }
  9891. }
  9892. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9893. xmlhttp.send();
  9894. }
  9895. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9896. var xmlhttp;
  9897. var Mac, Sn, DeviceId
  9898. if (window.XMLHttpRequest) {
  9899. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9900. xmlhttp = new XMLHttpRequest();
  9901. } else {
  9902. // IE6, IE5 浏览器执行代码
  9903. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9904. }
  9905. xmlhttp.onreadystatechange = function () {
  9906. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9907. if (xmlhttp.response) {
  9908. // resolve(res.value[0][0].text);
  9909. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9910. // $(fileInput).val('');
  9911. // });
  9912. span.innerHTML = '上传成功'
  9913. setTimeout(() => {
  9914. loading.style.display = 'none'
  9915. }, 1000);
  9916. }
  9917. }
  9918. }
  9919. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9920. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9921. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9922. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9923. // 设置请求头,表示请求体的编码格式
  9924. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9925. // 设置请求体,使用url-encoded格式的数据
  9926. }
  9927. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9928. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9929. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9930. _userinfo = US.userInfo, //登录用户信息
  9931. _userid = US.userInfo.userid //登录用户id
  9932. let _iframe;
  9933. let _cid = cid,
  9934. _stage = stage,
  9935. _task = task,
  9936. _tool = tool;
  9937. var _jie = $$("div", {
  9938. "style": {
  9939. "position": "absolute",
  9940. "bottom": "50px",
  9941. "right": "50px",
  9942. "zIndex": "9999",
  9943. "backgroundColor": "#2268bc",
  9944. "color": "#fff",
  9945. "padding": "12px 20px",
  9946. "cursor": "pointer",
  9947. "borderRadius": "4px",
  9948. },
  9949. "innerHTML": "提交作业"
  9950. })
  9951. let aTool = ''
  9952. let _loading = document.createElement('div')
  9953. _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;"
  9954. // _loading.id = "";
  9955. let _lchild = document.createElement('div')
  9956. let _limg = document.createElement('img')
  9957. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9958. _limg.style = "width: 26px;margin-right: 10px;"
  9959. _lchild.appendChild(_limg)
  9960. let _lspan = document.createElement('span')
  9961. _lspan.innerHTML = "上传中..."
  9962. _lchild.appendChild(_lspan)
  9963. _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%);"
  9964. _loading.appendChild(_lchild)
  9965. var _box = $$('div', {
  9966. "style": {
  9967. "position": "relative",
  9968. "width": "100%",
  9969. "height": "100%",
  9970. },
  9971. })
  9972. _box.appendChild(_loading)
  9973. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9974. switch (str) {
  9975. case "CocoPi":
  9976. aTool = 57;
  9977. _iframe = $$("iframe", {
  9978. "allowpaymentrequest": "allowpaymentrequest",
  9979. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9980. "webkitallowfullscreen": "",
  9981. "mozallowfullscreen": "",
  9982. "frameborder": "no",
  9983. "border": "0",
  9984. "scrolling ": "no",
  9985. "style": {
  9986. "cssText": "border:0;width:100%;height:100%"
  9987. },
  9988. "src": "https://pi.cocorobo.cn/"
  9989. })
  9990. _box.appendChild(_iframe);
  9991. _box.appendChild(_jie);
  9992. _formdiv = new U.UF.UI.form(
  9993. "CocoPi",
  9994. _box, {
  9995. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9996. "style": {
  9997. "width": "90%",
  9998. "height": "90%",
  9999. "overflow": 'hidden'
  10000. },
  10001. "onresize": function () { }
  10002. }, {
  10003. closecallback: function () { }
  10004. }, {
  10005. "style": {
  10006. "height": "36px"
  10007. }
  10008. }).form; //创建窗体
  10009. _taskbar = {
  10010. "id": str + _formdiv.id,
  10011. "style": {
  10012. "backgroundImage": "url(/img/icon/cocopi.png)"
  10013. },
  10014. "name": "CocoPi",
  10015. "forms": _formdiv,
  10016. "click": function () {
  10017. U.MD.D.I.openApplication(str, obj, info);
  10018. }
  10019. }
  10020. break;
  10021. }
  10022. if (_iframe) {
  10023. if (str == 'CocoPi') {
  10024. _iframe = _formdiv.querySelector('iframe')
  10025. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10026. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10027. })
  10028. if (onloadListener) {
  10029. _iframe.contentDocument.location.reload()
  10030. } else {
  10031. _iframe.contentDocument.location.reload()
  10032. }
  10033. }
  10034. _jie.onclick = async () => {
  10035. let text = ''
  10036. if (aTool == 57) {
  10037. text = _iframe.contentWindow.getLoadXmlStr()
  10038. }
  10039. _loading.style.display = 'flex'
  10040. console.log(_loading);
  10041. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10042. _loading.style.display = 'none'
  10043. let _div = document.createElement('div')
  10044. _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;"
  10045. let _inner = document.createElement('div')
  10046. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10047. _inner.innerHTML = "上传成功"
  10048. _div.appendChild(_inner)
  10049. _iframe.contentWindow.window.document.body.appendChild(_div)
  10050. _div.onclick = () => {
  10051. _iframe.contentWindow.window.document.body.removeChild(_div)
  10052. }
  10053. setTimeout(() => {
  10054. _iframe.contentWindow.window.document.body.removeChild(_div)
  10055. }, 1000);
  10056. }, [], { "type": "POST", "withCredentials": true });
  10057. }
  10058. }
  10059. }
  10060. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10061. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10062. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10063. _userid = student.userid, //登录用户id
  10064. _username = student.student //用户名字
  10065. let _iframe;
  10066. let _cid = cid,
  10067. _stage = stage,
  10068. _task = task,
  10069. _tool = tool;
  10070. var _jie = $$("div", {
  10071. "style": {
  10072. "position": "absolute",
  10073. "bottom": "50px",
  10074. "right": "50px",
  10075. "zIndex": "9999",
  10076. "backgroundColor": "#2268bc",
  10077. "color": "#fff",
  10078. "padding": "12px 20px",
  10079. "cursor": "pointer",
  10080. "borderRadius": "4px",
  10081. },
  10082. "innerHTML": "提交作业"
  10083. })
  10084. let aTool = ''
  10085. let _loading = document.createElement('div')
  10086. _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;"
  10087. // _loading.id = "";
  10088. let _lchild = document.createElement('div')
  10089. let _limg = document.createElement('img')
  10090. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10091. _limg.style = "width: 26px;margin-right: 10px;"
  10092. _lchild.appendChild(_limg)
  10093. let _lspan = document.createElement('span')
  10094. _lspan.innerHTML = "上传中..."
  10095. _lchild.appendChild(_lspan)
  10096. _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%);"
  10097. _loading.appendChild(_lchild)
  10098. var _box = $$('div', {
  10099. "style": {
  10100. "position": "relative",
  10101. "width": "100%",
  10102. "height": "100%",
  10103. },
  10104. })
  10105. _box.appendChild(_loading)
  10106. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10107. switch (str) {
  10108. case "CocoPi":
  10109. aTool = 57;
  10110. _iframe = $$("iframe", {
  10111. "allowpaymentrequest": "allowpaymentrequest",
  10112. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10113. "webkitallowfullscreen": "",
  10114. "mozallowfullscreen": "",
  10115. "frameborder": "no",
  10116. "border": "0",
  10117. "scrolling ": "no",
  10118. "style": {
  10119. "cssText": "border:0;width:100%;height:100%"
  10120. },
  10121. "src": "https://pi.cocorobo.cn/"
  10122. })
  10123. _box.appendChild(_iframe);
  10124. _box.appendChild(_jie);
  10125. _formdiv = new U.UF.UI.form(
  10126. "CocoPi-" + _username,
  10127. _box, {
  10128. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10129. "style": {
  10130. "width": "90%",
  10131. "height": "90%",
  10132. "overflow": 'hidden'
  10133. },
  10134. "onresize": function () { }
  10135. }, {
  10136. closecallback: function () { }
  10137. }, {
  10138. "style": {
  10139. "height": "36px"
  10140. }
  10141. }).form; //创建窗体
  10142. _taskbar = {
  10143. "id": str + _formdiv.id,
  10144. "style": {
  10145. "backgroundImage": "url(/img/icon/cocopi.png)"
  10146. },
  10147. "name": "CocoPi",
  10148. "forms": _formdiv,
  10149. "click": function () {
  10150. U.MD.D.I.openApplication(str, obj, info);
  10151. }
  10152. }
  10153. break;
  10154. }
  10155. if (_iframe) {
  10156. if (str == 'CocoPi') {
  10157. _iframe = _formdiv.querySelector('iframe')
  10158. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10159. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10160. })
  10161. if (onloadListener) {
  10162. _iframe.contentDocument.location.reload()
  10163. } else {
  10164. _iframe.contentDocument.location.reload()
  10165. }
  10166. }
  10167. _jie.onclick = async () => {
  10168. let text = ''
  10169. if (aTool == 57) {
  10170. text = _iframe.contentWindow.getLoadXmlStr()
  10171. }
  10172. _loading.style.display = 'flex'
  10173. console.log(_loading);
  10174. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10175. _loading.style.display = 'none'
  10176. let _div = document.createElement('div')
  10177. _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;"
  10178. let _inner = document.createElement('div')
  10179. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10180. _inner.innerHTML = "上传成功"
  10181. _div.appendChild(_inner)
  10182. _iframe.contentWindow.window.document.body.appendChild(_div)
  10183. _div.onclick = () => {
  10184. _iframe.contentWindow.window.document.body.removeChild(_div)
  10185. }
  10186. setTimeout(() => {
  10187. _iframe.contentWindow.window.document.body.removeChild(_div)
  10188. }, 1000);
  10189. }, [], { "type": "POST", "withCredentials": true });
  10190. }
  10191. }
  10192. }
  10193. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10194. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10195. if (res.value[0].length > 0) {
  10196. if (atool == 57) {
  10197. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10198. }
  10199. } else {
  10200. if (atool == 57) {
  10201. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10202. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10203. }
  10204. }
  10205. }, [], { "type": "POST", "withCredentials": true });
  10206. }