DeskTop.js 691 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //ricoh
  694. U.MD.D.I.ricohteacherDeskIcon = [
  695. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  696. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  701. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  703. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  704. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  705. ];
  706. //hk
  707. U.MD.D.I.hkStudentDeskIcon = [
  708. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  709. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  711. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. ];
  715. //hk
  716. U.MD.D.I.hkaceteacherDeskIcon = [
  717. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  718. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  719. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  720. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  721. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  722. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  723. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  724. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  725. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  726. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  727. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  728. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  729. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  730. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  734. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  735. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  736. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  737. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  738. ];
  739. //hk
  740. U.MD.D.I.hkaceStudentDeskIcon = [
  741. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSteacherDeskIcon = [
  750. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  751. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  753. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  757. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  758. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  759. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  760. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  761. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  762. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  763. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  766. ];
  767. //香海正覺蓮社佛教正覺中學
  768. U.MD.D.I.hkZJLSStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  773. ];
  774. //云海
  775. U.MD.D.I.yunhaiTeacherDeskIcon = [
  776. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  777. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  778. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  779. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  783. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  784. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  785. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  786. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  787. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  788. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  789. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanTeacherDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  806. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //福田
  811. U.MD.D.I.heyuanAdminDeskIcon = [
  812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  825. U.MD.D.I.szherTeacherDeskIcon = [
  826. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  833. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //dsei
  839. U.MD.D.I.dseiTeacherDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  843. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  844. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  845. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  846. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  847. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  848. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  849. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  850. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  851. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  852. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  853. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  854. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  855. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  856. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  857. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  858. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  859. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  860. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  861. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  862. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  863. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  864. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  865. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  866. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  867. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  868. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  869. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  870. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  871. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  872. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  873. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  874. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  875. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  876. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  877. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  878. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  880. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  881. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  882. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  883. ];
  884. //dsei
  885. U.MD.D.I.dseiAdminDeskIcon = [
  886. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  887. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  888. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  889. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  890. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  891. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  895. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  896. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  897. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  898. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  899. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  900. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  901. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  902. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  903. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  904. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  905. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  906. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  907. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  908. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  909. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  910. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  911. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  912. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  913. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  914. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  915. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  916. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  917. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  918. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  919. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  920. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  921. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  922. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  923. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  927. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  929. ];
  930. //dsei
  931. U.MD.D.I.dseiStudentDeskIcon = [
  932. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. ];
  939. //未来教育基地
  940. U.MD.D.I.szjkyTeacherDeskIcon = [
  941. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  942. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  948. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  949. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  950. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  951. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  952. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  953. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  954. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  955. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  957. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  958. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  959. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  960. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  961. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  963. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  964. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  965. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  966. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  967. ];
  968. //未来教育基地
  969. U.MD.D.I.szjkyAdminDeskIcon = [
  970. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  971. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  974. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  975. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  978. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  979. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  980. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  981. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  982. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  983. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  986. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  987. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  988. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  989. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  990. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  991. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  992. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  993. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  994. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  995. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  996. ];
  997. //未来教育基地
  998. U.MD.D.I.szjkyStudentDeskIcon = [
  999. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1004. ];
  1005. //成华教育局
  1006. U.MD.D.I.chjyjTeacherDeskIcon = [
  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": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1021. ];
  1022. //成华教育局chjyj
  1023. U.MD.D.I.chjyjAdminDeskIcon = [
  1024. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1025. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1029. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //成华教育局chjyj
  1041. U.MD.D.I.chjyjStudentDeskIcon = [
  1042. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcStudentDeskIcon = [
  1049. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1050. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1051. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1052. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1053. ];
  1054. //tpc
  1055. U.MD.D.I.tpcTeacherDeskIcon = [
  1056. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1061. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1062. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1063. ];
  1064. //tpc
  1065. U.MD.D.I.tpcAdminDeskIcon = [
  1066. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1067. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1068. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1069. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1071. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //THU-IOE
  1075. U.MD.D.I.thuioeTeacherDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1079. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1080. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1081. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1082. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1083. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1086. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1087. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1088. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1089. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1090. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1091. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1092. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1093. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1094. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1095. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1096. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1097. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1098. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1099. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1100. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1101. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1102. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1103. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1104. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1105. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1106. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1107. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1108. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1109. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1110. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1111. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //THU-IOE
  1117. U.MD.D.I.thuioeStudentDeskIcon = [
  1118. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1119. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1120. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylTeacherDeskIcon = [
  1125. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1126. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1128. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1129. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1132. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1133. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1134. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1135. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1136. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1138. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1144. ];
  1145. //jccssyl
  1146. U.MD.D.I.jccssylStudentDeskIcon = [
  1147. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleTeacherDeskIcon = [
  1154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1157. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1158. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1161. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1162. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1163. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1164. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1165. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1166. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1167. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1170. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1171. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1172. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1173. ];
  1174. //cale
  1175. U.MD.D.I.caleStudentDeskIcon = [
  1176. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1177. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1178. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1179. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1180. ];
  1181. //lqwmsgzs
  1182. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1183. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1184. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1185. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1186. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1187. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1188. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1189. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1190. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1191. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1192. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1193. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1194. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1195. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1196. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1197. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1198. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1199. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1200. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1201. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1202. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1203. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1204. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1205. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1206. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1207. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1208. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1209. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1210. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1211. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1212. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1213. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1214. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1215. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1216. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1217. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1220. ];
  1221. //lqwmsgzs
  1222. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyTeacherDeskIcon = [
  1230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1236. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1237. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1238. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1239. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1240. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1241. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyStudentDeskIcon = [
  1246. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. ];
  1250. //scnuai
  1251. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1252. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1253. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1255. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1256. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1257. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1258. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1259. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1260. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1262. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1263. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1264. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1270. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1271. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1274. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1275. ];
  1276. //scnuai
  1277. U.MD.D.I.scnuaiAdminDeskIcon = [
  1278. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1279. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1280. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1281. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1282. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1283. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1284. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1285. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1286. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1287. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1288. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1289. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1290. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1291. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1294. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1295. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1296. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1297. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1298. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1299. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1300. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiStudentDeskIcon = [
  1304. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1305. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1306. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizteacherDeskIcon = [
  1311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1318. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1319. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1320. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1322. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1323. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1324. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1328. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1329. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1330. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1331. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1332. ];
  1333. //cocobiz
  1334. U.MD.D.I.cocobizStudentDeskIcon = [
  1335. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1336. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1337. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1338. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1344. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1345. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1346. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1347. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1348. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1351. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1355. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1356. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1357. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1362. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1363. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1364. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1365. ];
  1366. //xxzjky
  1367. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1368. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1369. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1370. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1371. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //nsfx
  1376. U.MD.D.I.nsfxTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1385. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1386. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1387. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1394. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1395. ];
  1396. //nsfx
  1397. U.MD.D.I.nsfxStudentDeskIcon = [
  1398. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaTeacherDeskIcon = [
  1405. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1415. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1416. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1417. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1418. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1419. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1420. ];
  1421. //stia
  1422. U.MD.D.I.stiaStudentDeskIcon = [
  1423. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //szdjg
  1429. U.MD.D.I.szdjgTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. ];
  1433. //szdjg
  1434. U.MD.D.I.szdjgStudentDeskIcon = [
  1435. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607TeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1450. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010607
  1459. U.MD.D.I.x010607StudentDeskIcon = [
  1460. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //010608
  1466. U.MD.D.I.x010608TeacherDeskIcon = [
  1467. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1470. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1471. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1474. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1475. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1476. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1477. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1478. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1481. ];
  1482. //010608
  1483. U.MD.D.I.x010608StudentDeskIcon = [
  1484. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. ];
  1489. //xhly
  1490. U.MD.D.I.xhlyTeacherDeskIcon = [
  1491. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.xhlyStudentDeskIcon = [
  1495. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. ];
  1497. //北师大
  1498. U.MD.D.I.BSDNSteacherDeskIcon = [
  1499. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1500. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1502. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1503. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1504. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1505. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1506. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1507. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1508. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. ];
  1511. //北师大
  1512. U.MD.D.I.BSDNSstudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1535. ];
  1536. //CUHK_EDU
  1537. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //010503
  1544. U.MD.D.I.x010503TeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1548. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1553. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1554. ];
  1555. //010503
  1556. U.MD.D.I.x010503StudentDeskIcon = [
  1557. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1560. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1564. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1565. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1567. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1568. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1573. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1574. ];
  1575. //SPROUT Lab
  1576. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. ];
  1582. //010204
  1583. U.MD.D.I.x010204TeacherDeskIcon = [
  1584. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1585. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1586. ];
  1587. //010204
  1588. U.MD.D.I.x010204StudentDeskIcon = [
  1589. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //trail
  1595. U.MD.D.I.trailTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1599. ];
  1600. //trail
  1601. U.MD.D.I.trailStudentDeskIcon = [
  1602. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504TeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1618. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1619. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1620. ];
  1621. //010504
  1622. U.MD.D.I.x010504StudentDeskIcon = [
  1623. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //SCNUET
  1629. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1630. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1635. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1636. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1639. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1640. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1642. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1643. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1648. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1649. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1650. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1651. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1652. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1653. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1654. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1655. ];
  1656. //SCNUET
  1657. U.MD.D.I.SCNUETAdminDeskIcon = [
  1658. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1659. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1663. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1664. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1665. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1666. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1669. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1670. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1671. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1672. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1675. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1679. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1680. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.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. //SCNUET
  1685. U.MD.D.I.SCNUETStudentDeskIcon = [
  1686. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1688. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201TeacherDeskIcon = [
  1693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1700. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1703. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1704. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1707. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1708. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1709. ];
  1710. //x020201
  1711. U.MD.D.I.x020201AdminDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1717. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1718. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1723. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1724. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1725. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1726. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1727. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1728. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1729. ];
  1730. //020201
  1731. U.MD.D.I.x020201StudentDeskIcon = [
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //010611
  1738. U.MD.D.I.x010611TeacherDeskIcon = [
  1739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. ];
  1749. //010611
  1750. U.MD.D.I.x010611StudentDeskIcon = [
  1751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1755. ];
  1756. //010612
  1757. U.MD.D.I.x010612TeacherDeskIcon = [
  1758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1768. ];
  1769. //010612
  1770. U.MD.D.I.x010612StudentDeskIcon = [
  1771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1773. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1775. ];
  1776. //tianyuan
  1777. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1780. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1781. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1782. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1783. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1784. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1788. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1789. ];
  1790. //010611
  1791. U.MD.D.I.tianyuanStudentDeskIcon = [
  1792. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. ];
  1797. //320101
  1798. U.MD.D.I.x320101TeacherDeskIcon = [
  1799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1811. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1812. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1813. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1814. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1815. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1816. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1817. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1818. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1819. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1820. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1821. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1822. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1823. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1824. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1825. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1826. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1827. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1828. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1829. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1830. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1831. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1832. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1833. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1834. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1835. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1836. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1837. ];
  1838. //320101
  1839. U.MD.D.I.x320101StudentDeskIcon = [
  1840. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1843. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1844. ];
  1845. //szsy
  1846. U.MD.D.I.szsyTeacherDeskIcon = [
  1847. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1848. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1849. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1852. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1853. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1854. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1855. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1856. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1857. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1860. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1861. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1864. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1865. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1866. ];
  1867. //szsy
  1868. U.MD.D.I.szsyStudentDeskIcon = [
  1869. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1873. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1874. ];
  1875. //010404
  1876. U.MD.D.I.x010404TeacherDeskIcon = [
  1877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1883. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1884. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1885. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1886. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1887. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1888. ];
  1889. //010404
  1890. U.MD.D.I.x010404StudentDeskIcon = [
  1891. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1893. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1894. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1895. ];
  1896. //#region 桌面初始化a
  1897. /**
  1898. * 初始化桌面的起始函数
  1899. *
  1900. */
  1901. U.MD.D.I.init = function () {
  1902. if ($("#U_MD_D_K")[0]) {
  1903. //初始化桌面图标
  1904. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1905. // var clickUrl = ':12588/requestIp.php';
  1906. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1907. // U.MD.D.I.Ip = data;
  1908. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1909. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1910. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1911. // })
  1912. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1913. // })
  1914. }
  1915. }
  1916. /**
  1917. * 模式切换
  1918. *
  1919. */
  1920. U.MD.D.I.ModeCheck = function (type) {
  1921. if (US.Config.type == type) {
  1922. return
  1923. }
  1924. US.Config.type = type
  1925. $('.U_PBL_Check .active')[0].className = ''
  1926. if (type == 1) {
  1927. $('.U_PBL_Check div')[0].className = 'active'
  1928. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1929. } else {
  1930. $('.U_PBL_Check div')[1].className = 'active'
  1931. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1932. }
  1933. //初始化桌面图标
  1934. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1935. if (type == 2) {
  1936. U.MD.D.I.openApplication("project")
  1937. }
  1938. }
  1939. /**
  1940. * 隐藏任务栏
  1941. *
  1942. * @param {element} 桌面元素
  1943. */
  1944. U.MD.D.I.hiddenTaskbar = function (el) {
  1945. //任务栏位置变小
  1946. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1947. //桌面的位置变大
  1948. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1949. }
  1950. /**
  1951. * 隐藏任务栏
  1952. *
  1953. * @param {element} 桌面元素
  1954. */
  1955. U.MD.D.I.hiddenTaskbarout = function (el) {
  1956. //任务栏位置变小
  1957. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1958. //任务栏位置变化
  1959. U.selectEl(el).css({ "bottom": "-60px" });
  1960. //桌面的位置变大
  1961. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1962. }
  1963. }
  1964. /**
  1965. * 初始化打印桌面图标
  1966. *
  1967. * @param {element} 桌面元素
  1968. */
  1969. U.MD.D.I.initDesktopIcons = function (el, type) {
  1970. var i, //用于循环
  1971. _content, //桌面图标元素
  1972. _iconcontent, //桌面图标元素
  1973. _frag = $$("frag"), //定义一个碎片元素
  1974. _type = US.userInfo.type,
  1975. _org = US.userInfo.org,
  1976. _oid = US.userInfo.organizeid,
  1977. _role = US.userInfo.role,
  1978. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1979. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1980. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1981. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1982. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1983. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1984. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1985. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1986. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1987. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1988. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1989. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1990. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1991. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1992. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1993. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1994. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1995. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1996. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1997. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1998. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1999. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2000. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2001. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2002. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2003. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2004. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2005. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2006. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2007. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2008. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2009. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2010. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2011. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2012. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2013. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2014. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2015. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2016. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2017. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2018. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2019. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2020. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2021. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2022. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2023. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2024. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2025. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2026. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2027. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2028. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2029. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2030. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2031. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2032. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2033. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2034. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2035. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2036. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2037. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2038. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2039. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2040. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2041. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2042. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2043. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2044. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2045. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2046. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2047. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2048. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2049. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2050. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2051. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2052. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2053. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2054. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2055. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2056. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2057. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2058. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2059. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2060. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2061. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2062. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2063. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2064. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2065. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2066. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2067. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2068. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2069. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2070. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2071. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2072. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2073. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2074. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2075. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2076. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2077. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2078. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2079. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2080. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2081. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2082. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2083. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2084. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2085. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2086. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2087. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2088. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2089. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2090. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2091. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2092. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2093. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2094. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2095. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2096. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2097. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2098. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926'];
  2099. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2100. //清楚桌面图标
  2101. el.innerHTML = "";
  2102. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2103. _teacherDesktopIconInfo.push(
  2104. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2105. { "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)" } },
  2106. )
  2107. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2108. }
  2109. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926') {
  2110. _teacherDesktopIconInfo.push(
  2111. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2112. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2115. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2116. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2117. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2118. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2119. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2120. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2121. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2123. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2124. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2125. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2126. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2127. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2128. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2129. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2130. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2131. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2132. )
  2133. }
  2134. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2135. _teacherDesktopIconInfo.push(
  2136. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2137. )
  2138. }
  2139. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2140. // _teacherDesktopIconInfo.push(
  2141. // )
  2142. // }
  2143. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2144. _teacherDesktopIconInfo.push(
  2145. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2146. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2147. )
  2148. }
  2149. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2150. _teacherDesktopIconInfo.push(
  2151. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2153. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2155. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2156. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2157. )
  2158. _studentDesktopIconInfo.push(
  2159. )
  2160. }
  2161. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2162. _teacherDesktopIconInfo.push(
  2163. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2164. )
  2165. _studentDesktopIconInfo.push(
  2166. )
  2167. }
  2168. //010606 组织
  2169. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2170. _teacherDesktopIconInfo.push(
  2171. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2172. )
  2173. _studentDesktopIconInfo.push(
  2174. )
  2175. }
  2176. //麒麟二中 和 民新小学
  2177. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2178. _teacherDesktopIconInfo.push(
  2179. )
  2180. }
  2181. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2184. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2185. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2186. )
  2187. }
  2188. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2189. _hkTeacherDeskIconInfo.push(
  2190. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2191. )
  2192. }
  2193. //北师大附中(010601)
  2194. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2195. // _teacherDesktopIconInfo.push(
  2196. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2197. // )
  2198. // _studentDesktopIconInfo.push(
  2199. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2200. // )
  2201. // }
  2202. //樂善堂余近卿中學
  2203. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2204. _teacherDesktopIconInfo.push(
  2205. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2206. )
  2207. }
  2208. // Education Artificial Intelligence
  2209. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2210. _teacherDesktopIconInfo.push(
  2211. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2212. )
  2213. }
  2214. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2215. _teacherDesktopIconInfo.push(
  2216. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2217. )
  2218. }
  2219. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2220. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2221. _teacherDesktopIconInfo.push(
  2222. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2224. )
  2225. }
  2226. //麒麟二中
  2227. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2228. _studentDesktopIconInfo.push(
  2229. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2230. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2231. )
  2232. }
  2233. //万科双语
  2234. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2235. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2236. if (el.Name == '项目管理') {
  2237. el.Name = 'PBL项目'
  2238. }
  2239. return el
  2240. })
  2241. _studentDesktopIconInfo3.push(
  2242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2243. )
  2244. }
  2245. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2246. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2247. return el.Name != '魔盒识字' && el.Name != '24点'
  2248. })
  2249. }
  2250. 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) {
  2251. _studentDesktopIconInfo.push(
  2252. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2253. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2254. )
  2255. }
  2256. //循环创建桌面图标
  2257. if (type == 1) {
  2258. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2259. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_studentDesktopIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_studentDesktopIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2274. }
  2275. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2276. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_hkZJLSStudentDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2291. } //
  2292. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2293. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_ytyStudentDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_ytyStudentDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2308. } //
  2309. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2310. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_jccssylStudentDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_jccssylStudentDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2327. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_scnuaiStudentDeskIconInfo[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_scnuaiStudentDeskIconInfo[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2342. }
  2343. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2344. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_caleStudentDeskIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_caleStudentDeskIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2361. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_thuioeStudentDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_thuioeStudentDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2378. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_tpcStudentDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_tpcStudentDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2393. } //
  2394. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2395. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_chjyjStudentDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_chjyjStudentDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2412. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_szjkyStudentDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_szjkyStudentDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2429. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_x020201StudentDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_x020201StudentDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2444. }
  2445. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2446. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_SCNUETStudentDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_SCNUETStudentDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2463. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_dseiStudentDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_dseiStudentDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2480. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2497. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_nsfxStudentDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_nsfxStudentDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2514. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_stiaStudentDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_stiaStudentDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2531. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_szdjgStudentDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_szdjgStudentDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2548. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_x010607StudentDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_x010607StudentDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2565. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_xhlyStudentDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_xhlyStudentDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2582. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2599. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_x010503StudentDeskIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_x010503StudentDeskIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2616. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_x010504StudentDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_x010504StudentDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2633. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_x010404StudentDeskIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_x010404StudentDeskIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2648. }
  2649. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2650. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010204StudentDeskIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_x010204StudentDeskIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2667. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x320101StudentDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_x320101StudentDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2684. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_trailStudentDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_trailStudentDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2701. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2702. _content = $$("div", {
  2703. className: "U_MD_D_KO",
  2704. "onmousedown": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2708. "onclick": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2712. }, _frag); //
  2713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2716. }
  2717. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2718. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2719. _content = $$("div", {
  2720. className: "U_MD_D_KO",
  2721. "onmousedown": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_szsyStudentDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_szsyStudentDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2735. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2736. _content = $$("div", {
  2737. className: "U_MD_D_KO",
  2738. "onmousedown": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_x010608StudentDeskIconInfo[i]]),
  2742. "onclick": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_x010608StudentDeskIconInfo[i]])
  2746. }, _frag); //
  2747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2750. }
  2751. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2752. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_x010611StudentDeskIconInfo[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_x010611StudentDeskIconInfo[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2767. }
  2768. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2769. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2770. _content = $$("div", {
  2771. className: "U_MD_D_KO",
  2772. "onmousedown": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_x010612StudentDeskIconInfo[i]]),
  2776. "onclick": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_x010612StudentDeskIconInfo[i]])
  2780. }, _frag); //
  2781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2784. }
  2785. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2786. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2787. _content = $$("div", {
  2788. className: "U_MD_D_KO",
  2789. "onmousedown": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_tianyuantudentDeskIconInfo[i]]),
  2793. "onclick": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_tianyuantudentDeskIconInfo[i]])
  2797. }, _frag); //
  2798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2801. }
  2802. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2803. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_siesStudentDeskIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_siesStudentDeskIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2820. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  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. }, [_guzmsStudentDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_guzmsStudentDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2837. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2838. _content = $$("div", {
  2839. className: "U_MD_D_KO",
  2840. "onmousedown": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_hkStudentDeskIconInfo[i]]),
  2844. "onclick": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_hkStudentDeskIconInfo[i]])
  2848. }, _frag); //
  2849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2852. }
  2853. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2854. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_hkaceStudentDeskIconInfo[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_hkaceStudentDeskIconInfo[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2869. }
  2870. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2871. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2872. _content = $$("div", {
  2873. className: "U_MD_D_KO",
  2874. "onmousedown": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2878. "onclick": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_BSDNSstudentDesktopIconInfo[i]])
  2882. }, _frag); //
  2883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2886. }
  2887. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2888. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2889. _content = $$("div", {
  2890. className: "U_MD_D_KO",
  2891. "onmousedown": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_cocobizStudentDeskIconInfo[i]]),
  2895. "onclick": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_cocobizStudentDeskIconInfo[i]])
  2899. }, _frag); //
  2900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2903. }
  2904. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2905. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_xxzjkyStudentDeskIconInfo[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2920. }
  2921. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2922. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_studentDesktopIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_studentDesktopIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2939. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_tcStudentDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_tcStudentDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2956. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2957. _content = $$("div", {
  2958. className: "U_MD_D_KO",
  2959. "onmousedown": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_szscStudentDeskIconInfo[i]]),
  2963. "onclick": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_szscStudentDeskIconInfo[i]])
  2967. }, _frag); //
  2968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2971. }
  2972. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2973. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2974. _content = $$("div", {
  2975. className: "U_MD_D_KO",
  2976. "onmousedown": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_studentDesktopIconInfo3[i]]),
  2980. "onclick": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_studentDesktopIconInfo3[i]])
  2984. }, _frag); //
  2985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2988. }
  2989. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2990. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_studentDesktopIconInfo2[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_studentDesktopIconInfo2[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3005. }
  3006. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3007. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3008. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_wanketeacherDesktopIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_wanketeacherDesktopIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3027. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3028. _content = $$("div", {
  3029. className: "U_MD_D_KO",
  3030. "onmousedown": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_wankeAdminDesktopIconInfo[i]]),
  3034. "onclick": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_wankeAdminDesktopIconInfo[i]])
  3038. }, _frag); //
  3039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3042. }
  3043. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3044. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3045. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3046. continue
  3047. }
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_scnuaiTeacherDeskIconInfo[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3062. }
  3063. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3064. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3065. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3066. continue
  3067. }
  3068. _content = $$("div", {
  3069. className: "U_MD_D_KO",
  3070. "onmousedown": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3074. "onclick": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_BSDNSteacherDesktopIconInfo[i]])
  3078. }, _frag); //
  3079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3082. }
  3083. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3084. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3085. _content = $$("div", {
  3086. className: "U_MD_D_KO",
  3087. "onmousedown": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_scnuaiAdminDeskIconInfo[i]]),
  3091. "onclick": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_scnuaiAdminDeskIconInfo[i]])
  3095. }, _frag); //
  3096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3099. }
  3100. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3101. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3102. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3103. continue
  3104. }
  3105. _content = $$("div", {
  3106. className: "U_MD_D_KO",
  3107. "onmousedown": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_jccssylTeacherDeskIconInfo[i]]),
  3111. "onclick": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_jccssylTeacherDeskIconInfo[i]])
  3115. }, _frag); //
  3116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3119. }
  3120. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3121. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3122. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3123. continue
  3124. }
  3125. _content = $$("div", {
  3126. className: "U_MD_D_KO",
  3127. "onmousedown": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_caleTeacherDeskIconInfo[i]]),
  3131. "onclick": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_caleTeacherDeskIconInfo[i]])
  3135. }, _frag); //
  3136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3139. }
  3140. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3141. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_tpcOrganizerDeskIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_tpcOrganizerDeskIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3158. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3159. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3160. continue
  3161. }
  3162. _content = $$("div", {
  3163. className: "U_MD_D_KO",
  3164. "onmousedown": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_tpcTeacherDeskIconInfo[i]]),
  3168. "onclick": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_tpcTeacherDeskIconInfo[i]])
  3172. }, _frag); //
  3173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3176. }
  3177. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3178. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3179. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3180. continue
  3181. }
  3182. _content = $$("div", {
  3183. className: "U_MD_D_KO",
  3184. "onmousedown": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_teacherDesktopIconInfo2[i]]),
  3188. "onclick": U.UF.C.closure(function (obj) {
  3189. //防止拖动图标即打开了桌面应用
  3190. U.MD.D.click(this, obj);
  3191. }, [_teacherDesktopIconInfo2[i]])
  3192. }, _frag); //
  3193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3196. }
  3197. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3198. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3199. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3200. continue
  3201. }
  3202. _content = $$("div", {
  3203. className: "U_MD_D_KO",
  3204. "onmousedown": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_thuioeTeacherDeskIconInfo[i]]),
  3208. "onclick": U.UF.C.closure(function (obj) {
  3209. //防止拖动图标即打开了桌面应用
  3210. U.MD.D.click(this, obj);
  3211. }, [_thuioeTeacherDeskIconInfo[i]])
  3212. }, _frag); //
  3213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3216. }
  3217. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3218. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3219. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3220. continue
  3221. }
  3222. _content = $$("div", {
  3223. className: "U_MD_D_KO",
  3224. "onmousedown": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_lotechTeacherDeskIconInfo[i]]),
  3228. "onclick": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_lotechTeacherDeskIconInfo[i]])
  3232. }, _frag); //
  3233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3236. }//
  3237. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3238. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3239. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3240. continue
  3241. }
  3242. _content = $$("div", {
  3243. className: "U_MD_D_KO",
  3244. "onmousedown": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3248. "onclick": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3252. }, _frag); //
  3253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3256. }
  3257. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3258. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3259. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3260. continue
  3261. }
  3262. _content = $$("div", {
  3263. className: "U_MD_D_KO",
  3264. "onmousedown": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_siesTeacherDeskIconInfo[i]]),
  3268. "onclick": U.UF.C.closure(function (obj) {
  3269. //防止拖动图标即打开了桌面应用
  3270. U.MD.D.click(this, obj);
  3271. }, [_siesTeacherDeskIconInfo[i]])
  3272. }, _frag); //
  3273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3276. }
  3277. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3278. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3279. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3280. continue
  3281. }
  3282. _content = $$("div", {
  3283. className: "U_MD_D_KO",
  3284. "onmousedown": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_guzmsTeacherDeskIconInfo[i]]),
  3288. "onclick": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_guzmsTeacherDeskIconInfo[i]])
  3292. }, _frag); //
  3293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3296. }
  3297. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3298. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3299. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3300. continue
  3301. }
  3302. _content = $$("div", {
  3303. className: "U_MD_D_KO",
  3304. "onmousedown": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_longhuaTeacherDeskIconInfo[i]]),
  3308. "onclick": U.UF.C.closure(function (obj) {
  3309. //防止拖动图标即打开了桌面应用
  3310. U.MD.D.click(this, obj);
  3311. }, [_longhuaTeacherDeskIconInfo[i]])
  3312. }, _frag); //
  3313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3316. }
  3317. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3318. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3319. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3320. continue
  3321. }
  3322. _content = $$("div", {
  3323. className: "U_MD_D_KO",
  3324. "onmousedown": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_ytyTeacherDeskIconInfo[i]]),
  3328. "onclick": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_ytyTeacherDeskIconInfo[i]])
  3332. }, _frag); //
  3333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3336. }
  3337. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3338. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3339. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3340. continue
  3341. }
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. "onmousedown": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_yunhaiTeacherDeskIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3356. } //_hkStudentDeskIconInfo
  3357. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3358. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3359. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3360. continue
  3361. }
  3362. _content = $$("div", {
  3363. className: "U_MD_D_KO",
  3364. "onmousedown": U.UF.C.closure(function (obj) {
  3365. //防止拖动图标即打开了桌面应用
  3366. U.MD.D.click(this, obj);
  3367. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3368. "onclick": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3372. }, _frag); //
  3373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3376. }
  3377. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3378. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3379. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3380. continue
  3381. }
  3382. _content = $$("div", {
  3383. className: "U_MD_D_KO",
  3384. "onmousedown": U.UF.C.closure(function (obj) {
  3385. //防止拖动图标即打开了桌面应用
  3386. U.MD.D.click(this, obj);
  3387. }, [_ricohTeacherDeskIconInfo[i]]),
  3388. "onclick": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_ricohTeacherDeskIconInfo[i]])
  3392. }, _frag); //
  3393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3396. }
  3397. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3398. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3399. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3400. continue
  3401. }
  3402. _content = $$("div", {
  3403. className: "U_MD_D_KO",
  3404. "onmousedown": U.UF.C.closure(function (obj) {
  3405. //防止拖动图标即打开了桌面应用
  3406. U.MD.D.click(this, obj);
  3407. }, [_hkTeacherDeskIconInfo[i]]),
  3408. "onclick": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_hkTeacherDeskIconInfo[i]])
  3412. }, _frag); //
  3413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3416. }
  3417. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3418. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3419. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3420. continue
  3421. }
  3422. _content = $$("div", {
  3423. className: "U_MD_D_KO",
  3424. "onmousedown": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_hkaceTeacherDeskIconInfo[i]]),
  3428. "onclick": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_hkaceTeacherDeskIconInfo[i]])
  3432. }, _frag); //
  3433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3436. }
  3437. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3438. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3439. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3440. continue
  3441. }
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_cocobizTeacherDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_cocobizTeacherDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3456. }
  3457. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3458. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3459. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3460. continue
  3461. }
  3462. _content = $$("div", {
  3463. className: "U_MD_D_KO",
  3464. "onmousedown": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3468. "onclick": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3472. }, _frag); //
  3473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3476. }
  3477. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3478. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_gdjgAdminDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_gdjgAdminDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3493. }
  3494. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3495. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3496. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3497. continue
  3498. }
  3499. _content = $$("div", {
  3500. className: "U_MD_D_KO",
  3501. "onmousedown": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_gdjgTeacherDeskIconInfo[i]]),
  3505. "onclick": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_gdjgTeacherDeskIconInfo[i]])
  3509. }, _frag); //
  3510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3513. }
  3514. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3515. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3516. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3517. continue
  3518. }
  3519. _content = $$("div", {
  3520. className: "U_MD_D_KO",
  3521. "onmousedown": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_szherTeacherDeskIconInfo[i]]),
  3525. "onclick": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_szherTeacherDeskIconInfo[i]])
  3529. }, _frag); //
  3530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3533. }
  3534. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3535. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_heyuannAdminDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_heyuannAdminDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3552. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3553. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3554. continue
  3555. }
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_heyuanTeacherDeskIconInfo[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_heyuanTeacherDeskIconInfo[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3570. } //
  3571. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3572. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_dseiAdminDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_dseiAdminDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3589. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_dseiTeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_dseiTeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. } //
  3608. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3609. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3610. _content = $$("div", {
  3611. className: "U_MD_D_KO",
  3612. "onmousedown": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_chjyjAdminDeskIconInfo[i]]),
  3616. "onclick": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_chjyjAdminDeskIconInfo[i]])
  3620. }, _frag); //
  3621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3624. }//
  3625. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3626. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3627. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3628. continue
  3629. }
  3630. _content = $$("div", {
  3631. className: "U_MD_D_KO",
  3632. "onmousedown": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_chjyjTeacherDeskIconInfo[i]]),
  3636. "onclick": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_chjyjTeacherDeskIconInfo[i]])
  3640. }, _frag); //
  3641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3644. }
  3645. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3646. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3647. _content = $$("div", {
  3648. className: "U_MD_D_KO",
  3649. "onmousedown": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_szjkyAdminDeskIconInfo[i]]),
  3653. "onclick": U.UF.C.closure(function (obj) {
  3654. //防止拖动图标即打开了桌面应用
  3655. U.MD.D.click(this, obj);
  3656. }, [_szjkyAdminDeskIconInfo[i]])
  3657. }, _frag); //
  3658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3661. }//
  3662. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3663. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3664. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3665. continue
  3666. }
  3667. _content = $$("div", {
  3668. className: "U_MD_D_KO",
  3669. "onmousedown": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_szjkyTeacherDeskIconInfo[i]]),
  3673. "onclick": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_szjkyTeacherDeskIconInfo[i]])
  3677. }, _frag); //
  3678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3681. }
  3682. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3683. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_x020201AdminDeskIconInfo[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_x020201AdminDeskIconInfo[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3698. }//
  3699. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3700. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3701. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3702. continue
  3703. }
  3704. _content = $$("div", {
  3705. className: "U_MD_D_KO",
  3706. "onmousedown": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_x020201TeacherDeskIconInfo[i]]),
  3710. "onclick": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_x020201TeacherDeskIconInfo[i]])
  3714. }, _frag); //
  3715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3718. }
  3719. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3720. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_SCNUETAdminDeskIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_SCNUETAdminDeskIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3735. }//
  3736. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3737. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3738. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_SCNUETTeacherDeskIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3757. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3758. _content = $$("div", {
  3759. className: "U_MD_D_KO",
  3760. "onmousedown": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_futianAdminDeskIconInfo[i]]),
  3764. "onclick": U.UF.C.closure(function (obj) {
  3765. //防止拖动图标即打开了桌面应用
  3766. U.MD.D.click(this, obj);
  3767. }, [_futianAdminDeskIconInfo[i]])
  3768. }, _frag); //
  3769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3772. }
  3773. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3774. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3775. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3776. continue
  3777. }
  3778. _content = $$("div", {
  3779. className: "U_MD_D_KO",
  3780. "onmousedown": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_futianTeacherDeskIconInfo[i]]),
  3784. "onclick": U.UF.C.closure(function (obj) {
  3785. //防止拖动图标即打开了桌面应用
  3786. U.MD.D.click(this, obj);
  3787. }, [_futianTeacherDeskIconInfo[i]])
  3788. }, _frag); //
  3789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3792. }
  3793. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3794. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3795. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3796. continue
  3797. }
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_MingdeTeacherDeskIcon[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_MingdeTeacherDeskIcon[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3812. }
  3813. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3814. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3815. _content = $$("div", {
  3816. className: "U_MD_D_KO",
  3817. "onmousedown": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_lhsAdminDesktopIconInfo[i]]),
  3821. "onclick": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_lhsAdminDesktopIconInfo[i]])
  3825. }, _frag); //
  3826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3829. }
  3830. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3831. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3832. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3833. continue
  3834. }
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_lhsteacherDesktopIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_lhsteacherDesktopIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3849. }
  3850. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3851. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3852. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3853. continue
  3854. }
  3855. _content = $$("div", {
  3856. className: "U_MD_D_KO",
  3857. "onmousedown": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3861. "onclick": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_zhoujiateacherDesktopIconInfo[i]])
  3865. }, _frag); //
  3866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3869. }
  3870. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3871. for (i = 0; i < _hanDeskIcon.length; i++) {
  3872. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3873. continue
  3874. }
  3875. _content = $$("div", {
  3876. className: "U_MD_D_KO",
  3877. "onmousedown": U.UF.C.closure(function (obj) {
  3878. //防止拖动图标即打开了桌面应用
  3879. U.MD.D.click(this, obj);
  3880. }, [_hanDeskIcon[i]]),
  3881. "onclick": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_hanDeskIcon[i]])
  3885. }, _frag); //
  3886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3889. }
  3890. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3891. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3892. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3893. continue
  3894. }
  3895. _content = $$("div", {
  3896. className: "U_MD_D_KO",
  3897. "onmousedown": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_orgStemDeskIcon[i]]),
  3901. "onclick": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_orgStemDeskIcon[i]])
  3905. }, _frag); //
  3906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3909. }
  3910. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3911. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3912. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3913. continue
  3914. }
  3915. _content = $$("div", {
  3916. className: "U_MD_D_KO",
  3917. "onmousedown": U.UF.C.closure(function (obj) {
  3918. //防止拖动图标即打开了桌面应用
  3919. U.MD.D.click(this, obj);
  3920. }, [_szulsDeskIcon[i]]),
  3921. "onclick": U.UF.C.closure(function (obj) {
  3922. //防止拖动图标即打开了桌面应用
  3923. U.MD.D.click(this, obj);
  3924. }, [_szulsDeskIcon[i]])
  3925. }, _frag); //
  3926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3929. }
  3930. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3931. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3932. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3933. continue
  3934. }
  3935. _content = $$("div", {
  3936. className: "U_MD_D_KO",
  3937. "onmousedown": U.UF.C.closure(function (obj) {
  3938. //防止拖动图标即打开了桌面应用
  3939. U.MD.D.click(this, obj);
  3940. }, [_orgDesktopIconInfo[i]]),
  3941. "onclick": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_orgDesktopIconInfo[i]])
  3945. }, _frag); //
  3946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3949. }
  3950. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3951. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3952. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3953. continue
  3954. }
  3955. _content = $$("div", {
  3956. className: "U_MD_D_KO",
  3957. "onmousedown": U.UF.C.closure(function (obj) {
  3958. //防止拖动图标即打开了桌面应用
  3959. U.MD.D.click(this, obj);
  3960. }, [_schoolDesktopIconInfo[i]]),
  3961. "onclick": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_schoolDesktopIconInfo[i]])
  3965. }, _frag); //
  3966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3969. }
  3970. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3971. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3972. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3973. continue
  3974. }
  3975. _content = $$("div", {
  3976. className: "U_MD_D_KO",
  3977. "onmousedown": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_GMteacherDesktopIconInfo[i]]),
  3981. "onclick": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_GMteacherDesktopIconInfo[i]])
  3985. }, _frag); //
  3986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3989. }
  3990. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3991. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3992. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3993. continue
  3994. }
  3995. _content = $$("div", {
  3996. className: "U_MD_D_KO",
  3997. "onmousedown": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_SONGteacherDesktopIconInfo[i]]),
  4001. "onclick": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_SONGteacherDesktopIconInfo[i]])
  4005. }, _frag); //
  4006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4009. }
  4010. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4011. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4012. _content = $$("div", {
  4013. className: "U_MD_D_KO",
  4014. "onmousedown": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_GMstudentDesktopIconInfo[i]]),
  4018. "onclick": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_GMstudentDesktopIconInfo[i]])
  4022. }, _frag); //
  4023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4026. }
  4027. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4028. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4029. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4030. continue
  4031. }
  4032. _content = $$("div", {
  4033. className: "U_MD_D_KO",
  4034. "onmousedown": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_tcTeacherDeskIconInfo[i]]),
  4038. "onclick": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_tcTeacherDeskIconInfo[i]])
  4042. }, _frag); //
  4043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4046. }
  4047. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4048. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4049. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4050. continue
  4051. }
  4052. _content = $$("div", {
  4053. className: "U_MD_D_KO",
  4054. "onmousedown": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_tcOrganizerDeskIconInfo[i]]),
  4058. "onclick": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_tcOrganizerDeskIconInfo[i]])
  4062. }, _frag); //
  4063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4066. }
  4067. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4068. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4069. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4070. continue
  4071. }
  4072. _content = $$("div", {
  4073. className: "U_MD_D_KO",
  4074. "onmousedown": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_szscTeacherDeskIconInfo[i]]),
  4078. "onclick": U.UF.C.closure(function (obj) {
  4079. //防止拖动图标即打开了桌面应用
  4080. U.MD.D.click(this, obj);
  4081. }, [_szscTeacherDeskIconInfo[i]])
  4082. }, _frag); //
  4083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4086. }
  4087. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4088. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4089. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4090. continue
  4091. }
  4092. _content = $$("div", {
  4093. className: "U_MD_D_KO",
  4094. "onmousedown": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_szscOrganizerDeskIconInfo[i]]),
  4098. "onclick": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_szscOrganizerDeskIconInfo[i]])
  4102. }, _frag); //
  4103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4106. }
  4107. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4108. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4109. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4110. continue
  4111. }
  4112. _content = $$("div", {
  4113. className: "U_MD_D_KO",
  4114. "onmousedown": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_nsfxTeacherDeskIconInfo[i]]),
  4118. "onclick": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_nsfxTeacherDeskIconInfo[i]])
  4122. }, _frag); //
  4123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4126. }
  4127. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4128. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4129. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4130. continue
  4131. }
  4132. _content = $$("div", {
  4133. className: "U_MD_D_KO",
  4134. "onmousedown": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_stiaTeacherDeskIconInfo[i]]),
  4138. "onclick": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_stiaTeacherDeskIconInfo[i]])
  4142. }, _frag); //
  4143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4146. }
  4147. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4148. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4149. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4150. continue
  4151. }
  4152. _content = $$("div", {
  4153. className: "U_MD_D_KO",
  4154. "onmousedown": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_szdjgTeacherDeskIconInfo[i]]),
  4158. "onclick": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_szdjgTeacherDeskIconInfo[i]])
  4162. }, _frag); //
  4163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4166. }
  4167. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4168. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4169. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4170. continue
  4171. }
  4172. _content = $$("div", {
  4173. className: "U_MD_D_KO",
  4174. "onmousedown": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_x010607TeacherDeskIconInfo[i]]),
  4178. "onclick": U.UF.C.closure(function (obj) {
  4179. //防止拖动图标即打开了桌面应用
  4180. U.MD.D.click(this, obj);
  4181. }, [_x010607TeacherDeskIconInfo[i]])
  4182. }, _frag); //
  4183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4186. }
  4187. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4188. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4189. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4190. continue
  4191. }
  4192. _content = $$("div", {
  4193. className: "U_MD_D_KO",
  4194. "onmousedown": U.UF.C.closure(function (obj) {
  4195. //防止拖动图标即打开了桌面应用
  4196. U.MD.D.click(this, obj);
  4197. }, [_xhlyTeacherDeskIconInfo[i]]),
  4198. "onclick": U.UF.C.closure(function (obj) {
  4199. //防止拖动图标即打开了桌面应用
  4200. U.MD.D.click(this, obj);
  4201. }, [_xhlyTeacherDeskIconInfo[i]])
  4202. }, _frag); //
  4203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4206. }
  4207. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4208. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4209. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4210. continue
  4211. }
  4212. _content = $$("div", {
  4213. className: "U_MD_D_KO",
  4214. "onmousedown": U.UF.C.closure(function (obj) {
  4215. //防止拖动图标即打开了桌面应用
  4216. U.MD.D.click(this, obj);
  4217. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4218. "onclick": U.UF.C.closure(function (obj) {
  4219. //防止拖动图标即打开了桌面应用
  4220. U.MD.D.click(this, obj);
  4221. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4222. }, _frag); //
  4223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4226. }
  4227. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4228. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4229. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4230. continue
  4231. }
  4232. _content = $$("div", {
  4233. className: "U_MD_D_KO",
  4234. "onmousedown": U.UF.C.closure(function (obj) {
  4235. //防止拖动图标即打开了桌面应用
  4236. U.MD.D.click(this, obj);
  4237. }, [_x010503TeacherDeskIconInfo[i]]),
  4238. "onclick": U.UF.C.closure(function (obj) {
  4239. //防止拖动图标即打开了桌面应用
  4240. U.MD.D.click(this, obj);
  4241. }, [_x010503TeacherDeskIconInfo[i]])
  4242. }, _frag); //
  4243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4246. }
  4247. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4248. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4249. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4250. continue
  4251. }
  4252. _content = $$("div", {
  4253. className: "U_MD_D_KO",
  4254. "onmousedown": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_x010504TeacherDeskIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_x010504TeacherDeskIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4268. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4269. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4270. continue
  4271. }
  4272. _content = $$("div", {
  4273. className: "U_MD_D_KO",
  4274. "onmousedown": U.UF.C.closure(function (obj) {
  4275. //防止拖动图标即打开了桌面应用
  4276. U.MD.D.click(this, obj);
  4277. }, [_x010404TeacherDeskIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_x010404TeacherDeskIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4288. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4289. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4290. continue
  4291. }
  4292. _content = $$("div", {
  4293. className: "U_MD_D_KO",
  4294. "onmousedown": U.UF.C.closure(function (obj) {
  4295. //防止拖动图标即打开了桌面应用
  4296. U.MD.D.click(this, obj);
  4297. }, [_x010204TeacherDeskIconInfo[i]]),
  4298. "onclick": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_x010204TeacherDeskIconInfo[i]])
  4302. }, _frag); //
  4303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4306. }
  4307. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4308. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4309. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4310. continue
  4311. }
  4312. _content = $$("div", {
  4313. className: "U_MD_D_KO",
  4314. "onmousedown": U.UF.C.closure(function (obj) {
  4315. //防止拖动图标即打开了桌面应用
  4316. U.MD.D.click(this, obj);
  4317. }, [_x320101TeacherDeskIconInfo[i]]),
  4318. "onclick": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_x320101TeacherDeskIconInfo[i]])
  4322. }, _frag); //
  4323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4326. }
  4327. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4328. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4329. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4330. continue
  4331. }
  4332. _content = $$("div", {
  4333. className: "U_MD_D_KO",
  4334. "onmousedown": U.UF.C.closure(function (obj) {
  4335. //防止拖动图标即打开了桌面应用
  4336. U.MD.D.click(this, obj);
  4337. }, [_trailTeacherDeskIconInfo[i]]),
  4338. "onclick": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_trailTeacherDeskIconInfo[i]])
  4342. }, _frag); //
  4343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4346. }
  4347. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4348. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4349. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4350. continue
  4351. }
  4352. _content = $$("div", {
  4353. className: "U_MD_D_KO",
  4354. "onmousedown": U.UF.C.closure(function (obj) {
  4355. //防止拖动图标即打开了桌面应用
  4356. U.MD.D.click(this, obj);
  4357. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4358. "onclick": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4362. }, _frag); //
  4363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4366. }
  4367. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4368. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4369. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4370. continue
  4371. }
  4372. _content = $$("div", {
  4373. className: "U_MD_D_KO",
  4374. "onmousedown": U.UF.C.closure(function (obj) {
  4375. //防止拖动图标即打开了桌面应用
  4376. U.MD.D.click(this, obj);
  4377. }, [_szsyTeacherDeskIconInfo[i]]),
  4378. "onclick": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_szsyTeacherDeskIconInfo[i]])
  4382. }, _frag); //
  4383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4386. }
  4387. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4388. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4389. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4390. continue
  4391. }
  4392. _content = $$("div", {
  4393. className: "U_MD_D_KO",
  4394. "onmousedown": U.UF.C.closure(function (obj) {
  4395. //防止拖动图标即打开了桌面应用
  4396. U.MD.D.click(this, obj);
  4397. }, [_x010608TeacherDeskIconInfo[i]]),
  4398. "onclick": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_x010608TeacherDeskIconInfo[i]])
  4402. }, _frag); //
  4403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4406. }
  4407. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4408. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4409. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4410. continue
  4411. }
  4412. _content = $$("div", {
  4413. className: "U_MD_D_KO",
  4414. "onmousedown": U.UF.C.closure(function (obj) {
  4415. //防止拖动图标即打开了桌面应用
  4416. U.MD.D.click(this, obj);
  4417. }, [_x010611TeacherDeskIconInfo[i]]),
  4418. "onclick": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_x010611TeacherDeskIconInfo[i]])
  4422. }, _frag); //
  4423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4426. }
  4427. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4428. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4429. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4430. continue
  4431. }
  4432. _content = $$("div", {
  4433. className: "U_MD_D_KO",
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_x010612TeacherDeskIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_x010612TeacherDeskIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4446. }
  4447. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4448. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4449. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4450. continue
  4451. }
  4452. _content = $$("div", {
  4453. className: "U_MD_D_KO",
  4454. "onmousedown": U.UF.C.closure(function (obj) {
  4455. //防止拖动图标即打开了桌面应用
  4456. U.MD.D.click(this, obj);
  4457. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4458. "onclick": U.UF.C.closure(function (obj) {
  4459. //防止拖动图标即打开了桌面应用
  4460. U.MD.D.click(this, obj);
  4461. }, [_tianyuanTeacherDeskIconInfo[i]])
  4462. }, _frag); //
  4463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4466. }
  4467. } else {
  4468. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4469. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4470. continue
  4471. }
  4472. _content = $$("div", {
  4473. className: "U_MD_D_KO",
  4474. "onmousedown": U.UF.C.closure(function (obj) {
  4475. //防止拖动图标即打开了桌面应用
  4476. U.MD.D.click(this, obj);
  4477. }, [_teacherDesktopIconInfo[i]]),
  4478. "onclick": U.UF.C.closure(function (obj) {
  4479. //防止拖动图标即打开了桌面应用
  4480. U.MD.D.click(this, obj);
  4481. }, [_teacherDesktopIconInfo[i]])
  4482. }, _frag); //
  4483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4486. }
  4487. }
  4488. } else {
  4489. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4490. _content = $$("div", {
  4491. className: "U_MD_D_KO",
  4492. style: { 'width': '124px', 'height': '145px' },
  4493. "onmousedown": U.UF.C.closure(function (obj) {
  4494. //防止拖动图标即打开了桌面应用
  4495. U.MD.D.click(this, obj);
  4496. }, [_easyDesktopIconInfo[i]]),
  4497. "onclick": U.UF.C.closure(function (obj) {
  4498. //防止拖动图标即打开了桌面应用
  4499. U.MD.D.click(this, obj);
  4500. }, [_easyDesktopIconInfo[i]])
  4501. }, _frag); //
  4502. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4505. }
  4506. }
  4507. if (type == 1) {
  4508. //加载好后给图标定位
  4509. U.MD.D.iconPostion($(_frag).Child());
  4510. } else {
  4511. //加载好后给图标定位
  4512. U.MD.D.iconPostion2($(_frag).Child());
  4513. }
  4514. //把图标加载到页面
  4515. el.appendChild(_frag);
  4516. }
  4517. /**
  4518. * 显示任务栏
  4519. *
  4520. * @param {element} 桌面元素
  4521. */
  4522. U.MD.D.I.displayTaskbar = function (el) {
  4523. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4524. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4525. //任务栏位置变化
  4526. U.selectEl(el).css({ "bottom": "0px" });
  4527. //桌面位置变话
  4528. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4529. }
  4530. }
  4531. //#region 桌面图标拖动逻辑
  4532. /**
  4533. * 桌面排列图标
  4534. *
  4535. * @param {element} 桌面元素
  4536. * @param {object} 上下相距的距离
  4537. * @param {object} 左右相距的距离
  4538. * @return {object} 命名空间
  4539. */
  4540. U.MD.D.iconPostion = function (childs, top, left) {
  4541. var i; //用于循环处理
  4542. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4543. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4544. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4545. for (i = 0; i < childs.length; i++) {
  4546. //如果竖排top超过了范围处理
  4547. if (top + 95 > US.height - 10) {
  4548. //left超过了页面范围处理,则向上重叠打印处理
  4549. if ((left + 180) > US.width) {
  4550. top -= 110;
  4551. left -= 90;
  4552. }
  4553. //没有超过范围,那么left+90添加到下一个竖排打印
  4554. else {
  4555. left += 90;
  4556. top = 15;
  4557. };
  4558. }
  4559. //给图标的位置赋值
  4560. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4561. if (i < childs.length - 1) {
  4562. //页面图标每次向下加95
  4563. top += 95;
  4564. }
  4565. }
  4566. //返回最后调用的图标的位置
  4567. return [top, left];
  4568. }
  4569. /**
  4570. * 桌面排列图标
  4571. *
  4572. * @param {element} 桌面元素
  4573. * @param {object} 上下相距的距离
  4574. * @param {object} 左右相距的距离
  4575. * @return {object} 命名空间
  4576. */
  4577. U.MD.D.iconPostion2 = function (childs, top, left) {
  4578. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4579. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4580. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4581. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4582. for (i = 0; i < childs.length; i++) {
  4583. //如果竖排top超过了范围处理
  4584. if (left + 150 > US.width - 10) {
  4585. //left超过了页面范围处理,则向上重叠打印处理
  4586. if ((top + 180) > US.Height) {
  4587. top -= 150;
  4588. left -= 150;
  4589. }
  4590. //没有超过范围,那么left+90添加到下一个竖排打印
  4591. else {
  4592. top += 150;
  4593. left = ol;
  4594. };
  4595. }
  4596. //给图标的位置赋值
  4597. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4598. if (i < childs.length - 1) {
  4599. //页面图标每次向下加95
  4600. left += 150;
  4601. }
  4602. }
  4603. //返回最后调用的图标的位置
  4604. return [top, left];
  4605. }
  4606. /**
  4607. * 桌面点击事件逻辑
  4608. *
  4609. * @param {element} 桌面元素
  4610. * @param {object} 上下相距的距离
  4611. * @param {object} 左右相距的距离
  4612. * @return {object} 命名空间
  4613. */
  4614. U.MD.D.click = function (el, obj) {
  4615. var _buttonnumber = event.button; //点击的按钮的事件值
  4616. var _userinfo = US.userInfo;
  4617. U.UF.EV.stopBubble(); //阻止向上冒泡
  4618. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4619. if (_buttonnumber < 2) {
  4620. //如果是click事件的处理
  4621. if (event.type == "click") {
  4622. //如果元素在mousemove事件中没有移动则出发click事件
  4623. if (!U.MD.D.I.IsDrag) {
  4624. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4625. U.alert("请先登录您的账号!");
  4626. setTimeout(() => {
  4627. U.MD.U.L.login();
  4628. }, 2000);
  4629. } else {
  4630. //打开应用处理
  4631. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4632. }
  4633. }
  4634. }
  4635. //如果是mouse事件的处理
  4636. else {
  4637. if (US.Config.type == '1') {
  4638. //拖动处理,添加拖动和拖动结束事件
  4639. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4640. }
  4641. }
  4642. U.MD.D.I.IsDrag = false;
  4643. }
  4644. }
  4645. /**
  4646. * 拖动的处理
  4647. *
  4648. */
  4649. U.MD.D.iconMove = function () {
  4650. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4651. U.MD.D.I.IsDrag = true;
  4652. }
  4653. /**
  4654. * 拖动结束后,这里是定位处理,以网状的形式定位
  4655. *
  4656. * @param {element} 拖动的元素
  4657. * @return {object} 命名空间
  4658. */
  4659. U.MD.D.iconUp = function (el) {
  4660. var _top = 15,
  4661. _left = 20,
  4662. _margin,
  4663. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4664. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4665. if (_positioninfo["OT"] > 15) {
  4666. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4667. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4668. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4669. }
  4670. if (_positioninfo["OL"] > 20) {
  4671. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4672. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4673. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4674. }
  4675. //while循环判断么一个重叠的元素
  4676. do {
  4677. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4678. _top = _positioninfo[0] + 95; //得到定位后的top
  4679. _left = _positioninfo[1]; //得到定位后的left
  4680. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4681. }
  4682. /**
  4683. * 判断拖动后图标是否重叠
  4684. *
  4685. * @param {element} 拖动的元素
  4686. * @param {element} 桌面所有的元素
  4687. * @param {array} 拖动元素的位置
  4688. ----------[0] 上 top
  4689. ----------[1] 左 left
  4690. * @return {object} 命名空间
  4691. */
  4692. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4693. //循环所有的图标
  4694. for (var i = 0; i < childs.length; i++) {
  4695. //判断有没有和该图标诶子重叠的元素
  4696. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4697. return childs[i]; //如果有返回
  4698. }
  4699. }
  4700. }
  4701. //#endregion
  4702. //#endregion
  4703. //#region 桌面应用
  4704. /**
  4705. * 打开应用
  4706. *
  4707. * @param {string} 类型
  4708. -----------------Disk 网盘系统
  4709. -----------------PDisk 学习系统网盘
  4710. -----------------Poto 图片
  4711. -----------------Video 视频
  4712. -----------------Music 音乐
  4713. -----------------Word word
  4714. -----------------Excel excel
  4715. -----------------Txt 记事本
  4716. -----------------PB 学习系统
  4717. -----------------Blog 朋友圈系统
  4718. -----------------FTP ftp系统
  4719. -----------------Group 好友群
  4720. -----------------SY 首页系统
  4721. -----------------Set 个人设置
  4722. -----------------XSet 系统设置
  4723. -----------------App 我们所有的app
  4724. -----------------BC c.1473.cn 平台
  4725. -----------------CWeb d.1473.cn 变成平台
  4726. -----------------其他的外联系统 我们统一用iframe打开
  4727. * @param {array} 类型
  4728. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4729. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4730. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4731. 如果第一个参数为其他,则无第二个参数
  4732. * @returns {array}
  4733. */
  4734. window.addEventListener('message', function (e) { // 监听 message 事件
  4735. // alert(e.data.type);
  4736. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4737. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4738. //3是展示全部阶段 2学生 1老师 4专家
  4739. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4740. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4741. //3是展示全部阶段 2学生 1老师 4专家
  4742. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4743. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4744. //3是展示全部阶段 2学生 1老师 4专家
  4745. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4746. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4747. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4748. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4749. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4750. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4751. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4752. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4753. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4754. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4755. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4756. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4757. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4758. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4759. //3是展示全部阶段 2学生 1老师 4专家
  4760. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4761. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4762. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4763. U.MD.D.I.selectUser();
  4764. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4765. var _formel = document.getElementById("study");
  4766. U.UF.F.windowZooming(_formel);
  4767. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4768. var _formel = document.getElementById("studyDetail");
  4769. U.UF.F.windowZooming(_formel);
  4770. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4771. var _formel = document.getElementById("studyDetail");
  4772. U.UF.F.windowZooming(_formel);
  4773. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4774. var _formel = document.getElementById("studentStudy");
  4775. U.UF.F.windowZooming(_formel);
  4776. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4777. // var _formel = document.getElementById("study");
  4778. //如果最大化了,那么就把他缩小
  4779. // if (_formel.ismaximize) {
  4780. // return;
  4781. // }
  4782. // U.UF.F.windowZooming(_formel);
  4783. // U.UF.F.topWindow(_formel);
  4784. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4785. // var _formel = document.getElementById("studyDetail");
  4786. //如果最大化了,那么就把他缩小
  4787. // if (_formel.ismaximize) {
  4788. // return;
  4789. // }
  4790. // U.UF.F.windowZooming(_formel);
  4791. // U.UF.F.topWindow(_formel);
  4792. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4793. // var _formel = document.getElementById("studentStudy");
  4794. // if (_formel.ismaximize) {
  4795. // return;
  4796. // }
  4797. // U.UF.F.windowZooming(_formel);
  4798. // U.UF.F.topWindow(_formel);
  4799. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4800. var _formel = document.getElementById("study");
  4801. // if (_formel.ismaximize) {
  4802. // return;
  4803. // }
  4804. // U.UF.F.windowZooming(_formel);
  4805. U.UF.F.topWindow(_formel);
  4806. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4807. var _formel = document.getElementById("studentIndex");
  4808. U.UF.F.windowZooming(_formel);
  4809. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4810. var _formel = document.getElementById("studyDetailS");
  4811. U.UF.F.windowZooming(_formel);
  4812. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4813. var _formel = document.getElementById("studioIndex");
  4814. U.UF.F.windowZooming(_formel);
  4815. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4816. var _formel = document.getElementById("studyDetailStudio");
  4817. U.UF.F.windowZooming(_formel);
  4818. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4819. var _formel = document.getElementById("studyDetailStudio");
  4820. U.UF.F.windowZooming(_formel);
  4821. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4822. var _formel = document.getElementById("studyDetailNT");
  4823. U.UF.F.windowZooming(_formel);
  4824. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4825. var _formel = document.getElementById("studyDetailS");
  4826. U.UF.F.windowZooming(_formel);
  4827. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4828. var _formel = document.getElementById("studyDetailS");
  4829. U.UF.F.topWindow(_formel);
  4830. } else if (e.data.tools && e.data.tools == "1") {
  4831. // U.MD.D.I.openApplication("whiteboard")
  4832. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4833. } else if (e.data.tools && e.data.tools == "2") {
  4834. U.MD.D.I.openApplication("note")
  4835. } else if (e.data.tools && e.data.tools == "3") {
  4836. // U.MD.D.I.openApplication("mind")
  4837. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4838. } else if (e.data.tools && e.data.tools == "4") {
  4839. U.MD.D.I.openApplication("investigation")
  4840. } else if (e.data.tools && e.data.tools == "6") {
  4841. // U.MD.D.I.openApplication("doc")
  4842. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4843. } else if (e.data.tools && e.data.tools == "7") {
  4844. // U.MD.D.I.openApplication("mindNetwork")
  4845. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4846. } else if (e.data.tools && e.data.tools == "8") {
  4847. U.MD.D.I.openApplication("library")
  4848. } else if (e.data.tools && e.data.tools == "17") {
  4849. U.MD.D.I.openApplication("stuLibrary")
  4850. } else if (e.data.tools && e.data.tools == "18") {
  4851. U.MD.D.I.openApplication("train")
  4852. } else if (e.data.tools && e.data.tools == "21") {
  4853. U.MD.D.I.openApplication("program")
  4854. } else if (e.data.tools && e.data.tools == "22") {
  4855. U.MD.D.I.openApplication("AIprogram2")
  4856. } else if (e.data.tools && e.data.tools == "23") {
  4857. U.MD.D.I.openApplication("Pythonprogram")
  4858. } else if (e.data.tools && e.data.tools == "24") {
  4859. U.MD.D.I.openApplication("AIprogram")
  4860. } else if (e.data.tools && e.data.tools == "25") {
  4861. U.MD.D.I.openApplication("sys")
  4862. } else if (e.data.tools && e.data.tools == "26") {
  4863. // U.MD.D.I.openApplication("courseDesign")
  4864. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4865. } else if (e.data.tools && e.data.tools == "31") {
  4866. U.MD.D.I.openApplication("netWorkPanel")
  4867. } else if (e.data.tools && e.data.tools == "32") {
  4868. U.MD.D.I.openApplication("codeEdit")
  4869. } else if (e.data.tools && e.data.tools == "57") {
  4870. U.MD.D.I.openApplication("CocoPi")
  4871. } else if (e.data.tools && e.data.tools == "63") {
  4872. U.MD.D.I.openApplication("Wood")
  4873. } else if (e.data.tools && e.data.tools == "58") {
  4874. U.MD.D.I.openApplication("car")
  4875. } else if (e.data.tools && e.data.tools == "59") {
  4876. U.MD.D.I.openApplication("lineSearch")
  4877. } else if (e.data.tools && e.data.tools == "60") {
  4878. U.MD.D.I.openApplication("deepLearning")
  4879. } else if (e.data.tools && e.data.tools == "61") {
  4880. U.MD.D.I.openApplication("allHistory")
  4881. } else if (e.data.tools && e.data.tools == "28") {
  4882. U.MD.D.I.openApplication("translation")
  4883. } else if (e.data.tools && e.data.tools == "37") {
  4884. U.MD.D.I.openApplication("mohe")
  4885. } else if (e.data.tools && e.data.tools == "38") {
  4886. U.MD.D.I.openApplication("24game")
  4887. } else if (e.data.tools && e.data.tools == "39") {
  4888. U.MD.D.I.openApplication("GeoGebra")
  4889. } else if (e.data.tools && e.data.tools == "43") {
  4890. U.MD.D.I.openApplication("studentEvaluate")
  4891. } else if (e.data.tools && e.data.tools == "44") {
  4892. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4893. } else if (e.data.tools && e.data.tools == "46") {
  4894. U.MD.D.I.openApplication("project")
  4895. } else if (e.data.tools && e.data.tools == "71") {
  4896. U.MD.D.I.openApplication("aigptCourse")
  4897. } else if (e.data.tools && e.data.tools == "1s") {
  4898. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4899. } else if (e.data.tools && e.data.tools == "3s") {
  4900. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4901. } else if (e.data.tools && e.data.tools == "6s") {
  4902. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4903. } else if (e.data.tools && e.data.tools == "1studio") {
  4904. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4905. } else if (e.data.tools && e.data.tools == "3studio") {
  4906. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4907. } else if (e.data.tools && e.data.tools == "6studio") {
  4908. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4909. } else if (e.data.tools && e.data.tools == "3y") {
  4910. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4911. } else if (e.data.tools && e.data.tools == "1y") {
  4912. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4914. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4915. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4916. U.MD.D.I.openApplication("AIAnalyse")
  4917. } else if (e.data.tools && e.data.tools == "1teacher") {
  4918. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4919. } else if (e.data.tools && e.data.tools == "3teacher") {
  4920. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4921. } else if (e.data.tools && e.data.tools == "7teacher") {
  4922. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4923. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4924. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4925. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4926. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4927. } else if (e.data.tools && e.data.tools == "1E") {
  4928. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4929. } else if (e.data.tools && e.data.tools == "3E") {
  4930. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4931. } else if (e.data.tools && e.data.tools == "57y") {
  4932. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4933. } else if (e.data.tools && e.data.tools == "57u") {
  4934. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4935. } else if (e.data.tools && e.data.tools == "57teacher") {
  4936. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4937. } else if (e.data.tools && e.data.tools == "64") {
  4938. U.MD.D.I.openApplication("AIChat")
  4939. } else if (e.data.tools && e.data.tools == "66") {
  4940. U.MD.D.I.openApplication("formulaEdi")
  4941. } else if (e.data.tools && e.data.tools == "67") {
  4942. U.MD.D.I.openApplication("molStr")
  4943. } else if (e.data.tools && e.data.tools == "68") {
  4944. U.MD.D.I.openApplication("timeAxis")
  4945. } else if (e.data.tools && e.data.tools == "openCourse") {
  4946. let _data = {
  4947. typea: e.data.typea || '',
  4948. typeb: e.data.typeb || '',
  4949. typed: e.data.typed || '',
  4950. }
  4951. U.MD.D.I.openInApplication("index", _data)
  4952. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4953. let _data = {
  4954. classid: e.data.classid || '',
  4955. }
  4956. U.MD.D.I.openInApplication("dataClass", _data)
  4957. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4958. let _data = {
  4959. cid: e.data.cid || '',
  4960. gid: e.data.gid || '',
  4961. }
  4962. U.MD.D.I.openInApplication("opencCscl", _data)
  4963. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4964. U.MD.D.I.openApplication("dataBoardTest")
  4965. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4966. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4967. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4968. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4969. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4970. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4971. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4972. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4973. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4974. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4975. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4976. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4977. }else if (e.data.tools && e.data.tools == "loginSz") {
  4978. U.MD.D.I.openInApplication("loginSz")
  4979. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4980. if($('#classroom_observation_board')[0]){
  4981. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4982. }
  4983. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4984. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4985. if($('#classroom_observation_ob_comment')[0]){
  4986. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4987. }
  4988. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4989. }else if (e.data.tools && e.data.tools == "logout"){
  4990. U.MD.U.LO.logoutSystem()
  4991. }else if (e.data.tools && e.data.tools == "getLogin"){
  4992. let _iframe = $('#UI_Login')[0];
  4993. if (_iframe) {
  4994. var userInfo = US.userInfo;
  4995. var type = 2
  4996. if(userInfo && userInfo.userid){
  4997. type = 1
  4998. }
  4999. _contentWindow = _iframe.contentWindow;
  5000. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5001. }
  5002. }
  5003. });
  5004. U.MD.D.I.selectUser = function () {
  5005. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5006. if (res.value[0].length > 0) {
  5007. US.userInfo = res.value[0][0];
  5008. $(".userName")[0].innerHTML = US.userInfo.username;
  5009. }
  5010. }, [], { "type": "GET", "withCredentials": true });
  5011. }
  5012. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5013. var _userinfo = US.userInfo, //登录用户信息
  5014. _userid = US.userInfo.userid, //登录用户id
  5015. _oid = _userinfo.organizeid,
  5016. _type = US.userInfo.type,
  5017. _org = US.userInfo.org,
  5018. _role = US.userInfo.role,
  5019. _classId = US.userInfo.classid;
  5020. if (_type == 4) {
  5021. tType = 4
  5022. }
  5023. switch (str) {
  5024. case "studyDetailNT": //无终端模式
  5025. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5026. setTimeout(() => {
  5027. U.MD.U.L.login();
  5028. }, 2000);
  5029. } else {
  5030. _formdiv = new U.UF.UI.form(
  5031. "课程详情",
  5032. $$("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 }), {
  5033. "id": "studyDetailNT",
  5034. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. _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); } }
  5040. break;
  5041. }
  5042. case "studyDetail":
  5043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5044. setTimeout(() => {
  5045. U.MD.U.L.login();
  5046. }, 2000);
  5047. } else {
  5048. _formdiv = new U.UF.UI.form(
  5049. "课程详情",
  5050. $$("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 }), {
  5051. "id": "studyDetail",
  5052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. _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); } }
  5058. break;
  5059. }
  5060. case "studyDetailTrain":
  5061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5062. setTimeout(() => {
  5063. U.MD.U.L.login();
  5064. }, 2000);
  5065. } else {
  5066. _formdiv = new U.UF.UI.form(
  5067. "培训详情",
  5068. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5069. "id": "studyDetailTrain",
  5070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. _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); } }
  5076. break;
  5077. }
  5078. case "studyDetailS":
  5079. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5080. setTimeout(() => {
  5081. U.MD.U.L.login();
  5082. }, 2000);
  5083. } else {
  5084. _formdiv = new U.UF.UI.form(
  5085. "项目详情",
  5086. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5087. "id": "studyDetailS",
  5088. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. }
  5096. case "studyDetailStudio":
  5097. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5098. setTimeout(() => {
  5099. U.MD.U.L.login();
  5100. }, 2000);
  5101. } else {
  5102. _formdiv = new U.UF.UI.form(
  5103. "工作详情",
  5104. $$("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 }), {
  5105. "id": "studyDetailStudio",
  5106. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _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); } }
  5112. break;
  5113. }
  5114. case "studyDetailS5":
  5115. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5116. setTimeout(() => {
  5117. U.MD.U.L.login();
  5118. }, 2000);
  5119. } else {
  5120. _formdiv = new U.UF.UI.form(
  5121. "项目详情",
  5122. $$("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 }), {
  5123. "id": "studyDetailS",
  5124. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. }
  5132. case "studyDetailGM":
  5133. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5134. setTimeout(() => {
  5135. U.MD.U.L.login();
  5136. }, 2000);
  5137. } else {
  5138. _formdiv = new U.UF.UI.form(
  5139. "课程详情",
  5140. $$("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 }), {
  5141. "id": "studyDetail",
  5142. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5148. break;
  5149. }
  5150. case "hanUrl":
  5151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5152. setTimeout(() => {
  5153. U.MD.U.L.login();
  5154. }, 2000);
  5155. } else {
  5156. _formdiv = new U.UF.UI.form(
  5157. "汉字宫",
  5158. $$("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" }), {
  5159. "id": "hanUrl",
  5160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. }
  5168. case "index":
  5169. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5170. setTimeout(() => {
  5171. U.MD.U.L.login();
  5172. }, 2000);
  5173. } else {
  5174. _formdiv = new U.UF.UI.form(
  5175. "课程中心",
  5176. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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 }), {
  5177. "id": "study",
  5178. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5184. break;
  5185. }
  5186. case "dataClass":
  5187. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5188. setTimeout(() => {
  5189. U.MD.U.L.login();
  5190. }, 2000);
  5191. } else {
  5192. _formdiv = new U.UF.UI.form(
  5193. "数据报告",
  5194. $$("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 }), {
  5195. "id": "dataClass",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. }
  5204. case "opencCscl":
  5205. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5206. setTimeout(() => {
  5207. U.MD.U.L.login();
  5208. }, 2000);
  5209. } else {
  5210. _formdiv = new U.UF.UI.form(
  5211. "协同建构",
  5212. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5213. "id": "futureClass",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _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); } }
  5220. break;
  5221. }
  5222. case "openCourseUpdate":
  5223. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5224. setTimeout(() => {
  5225. U.MD.U.L.login();
  5226. }, 2000);
  5227. } else {
  5228. _formdiv = new U.UF.UI.form(
  5229. "课程管理",
  5230. $$("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 }), {
  5231. "id": "openCourseUpdate",
  5232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. break;
  5238. }
  5239. case "openNewCourseUpdate":
  5240. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5241. setTimeout(() => {
  5242. U.MD.U.L.login();
  5243. }, 2000);
  5244. } else {
  5245. _formdiv = new U.UF.UI.form(
  5246. "课程管理",
  5247. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5248. "id": "openCourseUpdate",
  5249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. break;
  5255. }
  5256. case "openCourseEUpdate":
  5257. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5258. setTimeout(() => {
  5259. U.MD.U.L.login();
  5260. }, 2000);
  5261. } else {
  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-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5265. "id": "openCourseUpdate",
  5266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. break;
  5272. }
  5273. case "openCourseAiUpdate":
  5274. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5275. setTimeout(() => {
  5276. U.MD.U.L.login();
  5277. }, 2000);
  5278. } else {
  5279. _formdiv = new U.UF.UI.form(
  5280. "课程管理",
  5281. $$("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 }), {
  5282. "id": "openCourseUpdate",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. break;
  5289. }
  5290. case "openCourseAiUpdate2":
  5291. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5292. setTimeout(() => {
  5293. U.MD.U.L.login();
  5294. }, 2000);
  5295. } else {
  5296. _formdiv = new U.UF.UI.form(
  5297. "课程管理",
  5298. $$("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 }), {
  5299. "id": "openCourseUpdate",
  5300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5301. "onresize": function () { }
  5302. }, {
  5303. closecallback: function () { }
  5304. }, { "style": { "height": "36px" } }).form; //创建窗体
  5305. break;
  5306. }
  5307. case "openCourseNewUpdate":
  5308. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5309. setTimeout(() => {
  5310. U.MD.U.L.login();
  5311. }, 2000);
  5312. } else {
  5313. _formdiv = new U.UF.UI.form(
  5314. "课程管理",
  5315. $$("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 }), {
  5316. "id": "openCourseUpdate",
  5317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. break;
  5323. }
  5324. case "inviteLoginSz":
  5325. _formdiv = new U.UF.UI.form(
  5326. "随机码登录",
  5327. $$("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 }), {
  5328. "id": "loginSz",
  5329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. break;
  5335. case "loginSz":
  5336. _formdiv = new U.UF.UI.form(
  5337. "教师登录",
  5338. $$("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" }), {
  5339. "id": "loginSz",
  5340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. break;
  5346. case "teacher":
  5347. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5348. setTimeout(() => {
  5349. U.MD.U.L.login();
  5350. }, 2000);
  5351. } else {
  5352. _formdiv = new U.UF.UI.form(
  5353. "教师管理",
  5354. $$("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 }), {
  5355. "id": "teacher",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. break;
  5362. }
  5363. case "dataBoardSZArea":
  5364. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5365. setTimeout(() => {
  5366. U.MD.U.L.login();
  5367. }, 2000);
  5368. } else {
  5369. _formdiv = new U.UF.UI.form(
  5370. "综合数据看板",
  5371. $$("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 }), {
  5372. "id": "dataBoardSZArea",
  5373. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. break;
  5379. }
  5380. case "dataBoardSZCity":
  5381. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5382. setTimeout(() => {
  5383. U.MD.U.L.login();
  5384. }, 2000);
  5385. } else {
  5386. _formdiv = new U.UF.UI.form(
  5387. "综合数据看板",
  5388. $$("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 }), {
  5389. "id": "dataBoardSZCity",
  5390. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. break;
  5396. }
  5397. case "classroom_observation_board":
  5398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5399. setTimeout(() => {
  5400. U.MD.U.L.login();
  5401. }, 2000);
  5402. } else {
  5403. _formdiv = new U.UF.UI.form(
  5404. "课堂观察",
  5405. $$("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 }), {
  5406. "id": "classroom_observation_board",
  5407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. break;
  5413. }
  5414. case "classroom_observation_ob_comment":
  5415. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5416. setTimeout(() => {
  5417. U.MD.U.L.login();
  5418. }, 2000);
  5419. } else {
  5420. _formdiv = new U.UF.UI.form(
  5421. "课堂审核",
  5422. $$("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 }), {
  5423. "id": "classroom_observation_ob_comment",
  5424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. break;
  5430. }
  5431. }
  5432. }
  5433. U.MD.D.I.openApplication = function (str, obj, info) {
  5434. obj = obj || {};
  5435. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5436. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5437. _userinfo = US.userInfo, //登录用户信息
  5438. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5439. _oid = obj.organizeid || _userinfo.organizeid,
  5440. _type = US.userInfo.type,
  5441. _org = US.userInfo.org,
  5442. _role = US.userInfo.role,
  5443. _classId = US.userInfo.classid,
  5444. _TscreenType = 1
  5445. _screenType = 2,
  5446. _SscreenType = 3;
  5447. let iframeBool = true
  5448. if(U.UF.UI.form.allForm[str]){
  5449. iframeBool = false
  5450. }
  5451. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5452. return;
  5453. }
  5454. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5455. switch (str) {
  5456. case "studnetProject": //好友打开
  5457. _formdiv = new U.UF.UI.form(
  5458. "我的项目",
  5459. $$("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 }), {
  5460. "id": "studnetProject",
  5461. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "studentEvaluate": //好友打开
  5469. _formdiv = new U.UF.UI.form(
  5470. "我的评价",
  5471. $$("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 }), {
  5472. "id": "studentEvaluate",
  5473. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _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); } }
  5479. break;
  5480. case "my":
  5481. _formdiv = new U.UF.UI.form(
  5482. "我的资料",
  5483. $$("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 }), {
  5484. "id": "my",
  5485. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. _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); } }
  5491. break;
  5492. case "program":
  5493. _formdiv = new U.UF.UI.form(
  5494. "编程平台",
  5495. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5496. "id": "program",
  5497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _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); } }
  5503. break;
  5504. case "library":
  5505. _formdiv = new U.UF.UI.form(
  5506. "素材库",
  5507. $$("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 }), {
  5508. "id": "library",
  5509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. _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); } }
  5515. break;
  5516. case "whiteboard":
  5517. _formdiv = new U.UF.UI.form(
  5518. "电子白板",
  5519. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5520. "id": "whiteboard",
  5521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _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); } }
  5527. break;
  5528. case "investigation":
  5529. _formdiv = new U.UF.UI.form(
  5530. "问卷调查",
  5531. $$("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 }), {
  5532. "id": "investigation",
  5533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. _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); } }
  5539. break;
  5540. case "note":
  5541. _formdiv = new U.UF.UI.form(
  5542. "便签分类",
  5543. $$("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 }), {
  5544. "id": "note",
  5545. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5546. "onresize": function () { }
  5547. }, {
  5548. closecallback: function () { }
  5549. }, { "style": { "height": "36px" } }).form; //创建窗体
  5550. _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); } }
  5551. break;
  5552. // case "score":
  5553. // _formdiv = new U.UF.UI.form(
  5554. // "量规评分",
  5555. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5556. // "id": "score",
  5557. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5558. // "onresize": function() {}
  5559. // }, {
  5560. // closecallback: function() {}
  5561. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. // _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); } }
  5563. // break;
  5564. case "mind":
  5565. _formdiv = new U.UF.UI.form(
  5566. "思维导图",
  5567. $$("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"
  5568. "id": "mind",
  5569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5570. "onresize": function () { }
  5571. }, {
  5572. closecallback: function () { }
  5573. }, { "style": { "height": "36px" } }).form; //创建窗体
  5574. _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); } }
  5575. break;
  5576. case "doc":
  5577. // U.MD.D.I.isRoom();
  5578. _formdiv = new U.UF.UI.form(
  5579. "协同文档",
  5580. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5581. "id": "doc",
  5582. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5588. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5589. // })
  5590. _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); } }
  5591. break;
  5592. case "studentStudy":
  5593. _formdiv = new U.UF.UI.form(
  5594. "课程中心",
  5595. $$("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
  5596. "id": "studentStudy",
  5597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5598. "onresize": function () { }
  5599. }, {
  5600. closecallback: function () { }
  5601. }, { "style": { "height": "36px" } }).form; //创建窗体
  5602. _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); } }
  5603. break;
  5604. case "train": //好友打开
  5605. _formdiv = new U.UF.UI.form(
  5606. "训练平台",
  5607. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5608. "id": "train",
  5609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5610. "onresize": function () { }
  5611. }, {
  5612. closecallback: function () { }
  5613. }, { "style": { "height": "36px" } }).form; //创建窗体
  5614. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5615. break;
  5616. case "mindNetwork": //好友打开
  5617. _formdiv = new U.UF.UI.form(
  5618. "思维网格",
  5619. $$("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 }), {
  5620. "id": "mindNetwork",
  5621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5627. break;
  5628. case "studentClassRoom": //好友打开
  5629. _formdiv = new U.UF.UI.form(
  5630. "实时课堂",
  5631. $$("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 }), {
  5632. "id": "studentClassRoom",
  5633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5639. setTimeout(() => {
  5640. U.UF.F.windowZooming(_formdiv)
  5641. }, 0);
  5642. break;
  5643. }
  5644. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5645. switch (str) {
  5646. case "studnetProject": //好友打开
  5647. _formdiv = new U.UF.UI.form(
  5648. "我的项目",
  5649. $$("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 }), {
  5650. "id": "studnetProject",
  5651. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "studentEvaluate": //好友打开
  5659. _formdiv = new U.UF.UI.form(
  5660. "我的评价",
  5661. $$("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 }), {
  5662. "id": "studentEvaluate",
  5663. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. case "my":
  5671. _formdiv = new U.UF.UI.form(
  5672. "我的资料",
  5673. $$("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 }), {
  5674. "id": "my",
  5675. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. _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); } }
  5681. break;
  5682. case "program":
  5683. _formdiv = new U.UF.UI.form(
  5684. "编程平台",
  5685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5686. "id": "program",
  5687. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _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); } }
  5693. break;
  5694. case "library":
  5695. _formdiv = new U.UF.UI.form(
  5696. "素材库",
  5697. $$("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 }), {
  5698. "id": "library",
  5699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _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); } }
  5705. break;
  5706. case "whiteboard":
  5707. _formdiv = new U.UF.UI.form(
  5708. "电子白板",
  5709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5710. "id": "whiteboard",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. case "investigation":
  5719. _formdiv = new U.UF.UI.form(
  5720. "问卷调查",
  5721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5722. "id": "investigation",
  5723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _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); } }
  5729. break;
  5730. case "note":
  5731. _formdiv = new U.UF.UI.form(
  5732. "便签分类",
  5733. $$("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 }), {
  5734. "id": "note",
  5735. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _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); } }
  5741. break;
  5742. // case "score":
  5743. // _formdiv = new U.UF.UI.form(
  5744. // "量规评分",
  5745. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5746. // "id": "score",
  5747. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. // "onresize": function() {}
  5749. // }, {
  5750. // closecallback: function() {}
  5751. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. // _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); } }
  5753. // break;
  5754. case "mind":
  5755. _formdiv = new U.UF.UI.form(
  5756. "思维导图",
  5757. $$("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"
  5758. "id": "mind",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "doc":
  5767. // U.MD.D.I.isRoom();
  5768. _formdiv = new U.UF.UI.form(
  5769. "协同文档",
  5770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5771. "id": "doc",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5778. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5779. })
  5780. _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); } }
  5781. break;
  5782. case "train": //好友打开
  5783. _formdiv = new U.UF.UI.form(
  5784. "训练平台",
  5785. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5786. "id": "train",
  5787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5788. "onresize": function () { }
  5789. }, {
  5790. closecallback: function () { }
  5791. }, { "style": { "height": "36px" } }).form; //创建窗体
  5792. _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); } }
  5793. break;
  5794. case "studentStudy":
  5795. _formdiv = new U.UF.UI.form(
  5796. "课程中心",
  5797. $$("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
  5798. "id": "studentStudy",
  5799. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5800. "onresize": function () { }
  5801. }, {
  5802. closecallback: function () { }
  5803. }, { "style": { "height": "36px" } }).form; //创建窗体
  5804. _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); } }
  5805. break;
  5806. case "mindNetwork": //好友打开
  5807. _formdiv = new U.UF.UI.form(
  5808. "思维网格",
  5809. $$("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 }), {
  5810. "id": "mindNetwork",
  5811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5812. "onresize": function () { }
  5813. }, {
  5814. closecallback: function () { }
  5815. }, { "style": { "height": "36px" } }).form; //创建窗体
  5816. _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); } }
  5817. break;
  5818. case "studentClassRoom": //好友打开
  5819. _formdiv = new U.UF.UI.form(
  5820. "实时课堂",
  5821. $$("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 }), {
  5822. "id": "studentClassRoom",
  5823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5824. "onresize": function () { }
  5825. }, {
  5826. closecallback: function () { }
  5827. }, { "style": { "height": "36px" } }).form; //创建窗体
  5828. _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); } }
  5829. setTimeout(() => {
  5830. U.UF.F.windowZooming(_formdiv)
  5831. }, 0);
  5832. break;
  5833. }
  5834. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5835. //选择应用处理
  5836. switch (str) {
  5837. case "project": //好友打开
  5838. _formdiv = new U.UF.UI.form(
  5839. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5840. $$("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 }), {
  5841. "id": "project",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. case "student":
  5850. _formdiv = new U.UF.UI.form(
  5851. "学生管理",
  5852. $$("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 }), {
  5853. "id": "student",
  5854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. _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); } }
  5860. break;
  5861. case "evaluate":
  5862. _formdiv = new U.UF.UI.form(
  5863. "学生评价",
  5864. $$("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 }), {
  5865. "id": "evaluate",
  5866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _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); } }
  5872. break;
  5873. case "sys":
  5874. _formdiv = new U.UF.UI.form(
  5875. "目标管理",
  5876. $$("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 }), {
  5877. "id": "sys",
  5878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _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); } }
  5884. break;
  5885. case "courseDesign":
  5886. _formdiv = new U.UF.UI.form(
  5887. "项目设计",
  5888. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5889. "id": "courseDesign",
  5890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _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); } }
  5896. break;
  5897. case "program":
  5898. _formdiv = new U.UF.UI.form(
  5899. "编程平台",
  5900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5901. "id": "program",
  5902. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _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); } }
  5908. break;
  5909. case "class":
  5910. _formdiv = new U.UF.UI.form(
  5911. "班级管理",
  5912. $$("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 }), {
  5913. "id": "class",
  5914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5915. "onresize": function () { }
  5916. }, {
  5917. closecallback: function () { }
  5918. }, { "style": { "height": "36px" } }).form; //创建窗体
  5919. _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); } }
  5920. break;
  5921. case "Grade":
  5922. _formdiv = new U.UF.UI.form(
  5923. "年级管理",
  5924. $$("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 }), {
  5925. "id": "Grade",
  5926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. _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); } }
  5932. break;
  5933. case "teacherOffice":
  5934. _formdiv = new U.UF.UI.form(
  5935. "教研室",
  5936. $$("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 }), {
  5937. "id": "teacherOffice",
  5938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5939. "onresize": function () { }
  5940. }, {
  5941. closecallback: function () { }
  5942. }, { "style": { "height": "36px" } }).form; //创建窗体
  5943. _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); } }
  5944. break;
  5945. case "my":
  5946. _formdiv = new U.UF.UI.form(
  5947. "我的资料",
  5948. $$("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 }), {
  5949. "id": "my",
  5950. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5951. "onresize": function () { }
  5952. }, {
  5953. closecallback: function () { }
  5954. }, { "style": { "height": "36px" } }).form; //创建窗体
  5955. _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); } }
  5956. break;
  5957. case "notice":
  5958. _formdiv = new U.UF.UI.form(
  5959. "通知公告",
  5960. $$("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 }), {
  5961. "id": "notice",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _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); } }
  5968. break;
  5969. case "library":
  5970. _formdiv = new U.UF.UI.form(
  5971. "素材库",
  5972. $$("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 }), {
  5973. "id": "library",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. _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); } }
  5980. break;
  5981. case "whiteboard":
  5982. _formdiv = new U.UF.UI.form(
  5983. "电子白板",
  5984. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5985. "id": "whiteboard",
  5986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _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); } }
  5992. break;
  5993. case "investigation":
  5994. _formdiv = new U.UF.UI.form(
  5995. "问卷调查",
  5996. $$("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 }), {
  5997. "id": "investigation",
  5998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "note":
  6006. _formdiv = new U.UF.UI.form(
  6007. "便签分类",
  6008. $$("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 }), {
  6009. "id": "note",
  6010. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. // case "score":
  6018. // _formdiv = new U.UF.UI.form(
  6019. // "量规评分",
  6020. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6021. // "id": "score",
  6022. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. // "onresize": function() {}
  6024. // }, {
  6025. // closecallback: function() {}
  6026. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. // _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); } }
  6028. // break;
  6029. case "mind":
  6030. _formdiv = new U.UF.UI.form(
  6031. "思维导图",
  6032. $$("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"
  6033. "id": "mind",
  6034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "doc":
  6042. // U.MD.D.I.isRoom();
  6043. _formdiv = new U.UF.UI.form(
  6044. "协同文档",
  6045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6046. "id": "doc",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6053. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6054. })
  6055. _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); } }
  6056. break;
  6057. case "study":
  6058. _formdiv = new U.UF.UI.form(
  6059. "课程中心",
  6060. $$("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
  6061. "id": "study",
  6062. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6068. break;
  6069. case "mindNetwork": //好友打开
  6070. _formdiv = new U.UF.UI.form(
  6071. "思维网格",
  6072. $$("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 }), {
  6073. "id": "mindNetwork",
  6074. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6080. break;
  6081. case "train": //好友打开
  6082. _formdiv = new U.UF.UI.form(
  6083. "训练平台",
  6084. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6085. "id": "mindNetwork",
  6086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6092. break;
  6093. case "teacherClassRoom": //好友打开
  6094. _formdiv = new U.UF.UI.form(
  6095. "实时课堂",
  6096. $$("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 }), {
  6097. "id": "teacherClassRoom",
  6098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6104. setTimeout(() => {
  6105. U.UF.F.windowZooming(_formdiv)
  6106. }, 0);
  6107. break;
  6108. }
  6109. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6110. switch (str) {
  6111. case "project": //好友打开
  6112. _formdiv = new U.UF.UI.form(
  6113. "课程管理",
  6114. $$("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 }), {
  6115. "id": "project",
  6116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "evaluate":
  6124. _formdiv = new U.UF.UI.form(
  6125. "学生评价",
  6126. $$("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 }), {
  6127. "id": "evaluate",
  6128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "notice":
  6136. _formdiv = new U.UF.UI.form(
  6137. "通知公告",
  6138. $$("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 }), {
  6139. "id": "notice",
  6140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "stuLibrary":
  6148. _formdiv = new U.UF.UI.form(
  6149. "学习资料",
  6150. $$("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 }), {
  6151. "id": "stuLibrary",
  6152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break;
  6159. case "program":
  6160. _formdiv = new U.UF.UI.form(
  6161. "编程平台",
  6162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6163. "id": "program",
  6164. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "whiteboard":
  6172. _formdiv = new U.UF.UI.form(
  6173. "电子白板",
  6174. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6175. "id": "whiteboard",
  6176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "investigation":
  6184. _formdiv = new U.UF.UI.form(
  6185. "问卷调查",
  6186. $$("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 }), {
  6187. "id": "investigation",
  6188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "mind":
  6196. _formdiv = new U.UF.UI.form(
  6197. "思维导图",
  6198. $$("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"
  6199. "id": "mind",
  6200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _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); } }
  6206. break;
  6207. case "doc":
  6208. // U.MD.D.I.isRoom();
  6209. _formdiv = new U.UF.UI.form(
  6210. "协同文档",
  6211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6212. "id": "doc",
  6213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6219. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6220. })
  6221. _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); } }
  6222. break;
  6223. case "study":
  6224. _formdiv = new U.UF.UI.form(
  6225. "课程中心",
  6226. $$("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
  6227. "id": "study",
  6228. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //创建窗体
  6233. _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); } }
  6234. break;
  6235. case "mindNetwork": //好友打开
  6236. _formdiv = new U.UF.UI.form(
  6237. "思维网格",
  6238. $$("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 }), {
  6239. "id": "mindNetwork",
  6240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //创建窗体
  6245. _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); } }
  6246. break;
  6247. case "train": //好友打开
  6248. _formdiv = new U.UF.UI.form(
  6249. "训练平台",
  6250. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6251. "id": "train",
  6252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //创建窗体
  6257. _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); } }
  6258. break;
  6259. case "sys":
  6260. _formdiv = new U.UF.UI.form(
  6261. "目标管理",
  6262. $$("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 }), {
  6263. "id": "sys",
  6264. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. _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); } }
  6270. break;
  6271. case "courseDesign":
  6272. _formdiv = new U.UF.UI.form(
  6273. "项目设计",
  6274. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6275. "id": "courseDesign",
  6276. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _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); } }
  6282. break;
  6283. }
  6284. } else if (!_type) {
  6285. switch (str) {
  6286. case "my":
  6287. _formdiv = new U.UF.UI.form(
  6288. "我的资料",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6290. "id": "my",
  6291. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6297. break;
  6298. }
  6299. }
  6300. switch (str) {
  6301. // AIprogram2 AI体验 aihub.cocorobo.cn
  6302. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6303. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6304. case "formulaEdi": //公式编辑
  6305. _formdiv = new U.UF.UI.form(
  6306. "公式编辑",
  6307. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6308. "id": "formulaEdi",
  6309. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6315. break;
  6316. case "molStr": //分子结构
  6317. _formdiv = new U.UF.UI.form(
  6318. "分子结构",
  6319. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6320. "id": "molStr",
  6321. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6327. break;
  6328. case "timeAxis": //时间轴
  6329. _formdiv = new U.UF.UI.form(
  6330. "时间轴",
  6331. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6332. "id": "timeAxis",
  6333. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6339. break;
  6340. case "AIprogram2": //AI体验
  6341. _formdiv = new U.UF.UI.form(
  6342. "AI体验",
  6343. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6344. "id": "AIprogram2",
  6345. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "Pythonprogram": //python编程
  6353. _formdiv = new U.UF.UI.form(
  6354. "Python编程",
  6355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6356. "id": "Pythonprogram",
  6357. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _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); } }
  6363. break;
  6364. case "AIprogram": //ai编程
  6365. _formdiv = new U.UF.UI.form(
  6366. "AI编程平台",
  6367. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6368. "id": "AIprogram",
  6369. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. case "CocoPi": //CocoPi
  6377. _formdiv = new U.UF.UI.form(
  6378. "CocoPi",
  6379. $$("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" }), {
  6380. "id": "CocoPi",
  6381. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "Wood": //Wood
  6389. _formdiv = new U.UF.UI.form(
  6390. "海龟编程",
  6391. $$("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/" }), {
  6392. "id": "Wood",
  6393. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "car": //模拟驾驶
  6401. _formdiv = new U.UF.UI.form(
  6402. "模拟驾驶",
  6403. $$("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/" }), {
  6404. "id": "car",
  6405. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "lineSearch": //路径搜索
  6413. _formdiv = new U.UF.UI.form(
  6414. "路径搜索",
  6415. $$("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/" }), {
  6416. "id": "lineSearch",
  6417. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6423. break;
  6424. case "deepLearning": //深度学习
  6425. _formdiv = new U.UF.UI.form(
  6426. "深度学习",
  6427. $$("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/#" }), {
  6428. "id": "deepLearning",
  6429. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6435. break;
  6436. case "allHistory": //深度学习
  6437. _formdiv = new U.UF.UI.form(
  6438. "全历史",
  6439. $$("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/" }), {
  6440. "id": "allHistory",
  6441. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6447. break;
  6448. case "chatPDF": //ai编程
  6449. _formdiv = new U.UF.UI.form(
  6450. "chatPDF",
  6451. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6452. "id": "chatPDF",
  6453. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6459. break;
  6460. case "resources": //国家教育
  6461. _formdiv = new U.UF.UI.form(
  6462. "国家教育",
  6463. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6464. "id": "resources",
  6465. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6471. break;
  6472. case "codeEdit": //源码编辑
  6473. _formdiv = new U.UF.UI.form(
  6474. "源码编辑",
  6475. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6476. "id": "codeEdit",
  6477. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6483. break; //
  6484. case "MindMap": //MindMap
  6485. _formdiv = new U.UF.UI.form(
  6486. "MindMap",
  6487. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6488. "id": "MindMap",
  6489. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6495. break;
  6496. case "netWorkPanel": //netWorkPanel
  6497. _formdiv = new U.UF.UI.form(
  6498. "netWorkPanel",
  6499. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6500. "id": "netWorkPanel",
  6501. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6507. break;
  6508. case "GeoGebra": //GeoGebra
  6509. _formdiv = new U.UF.UI.form(
  6510. "GeoGebra",
  6511. $$("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" }), {
  6512. "id": "GeoGebra",
  6513. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6519. break;
  6520. case "translation": //翻译
  6521. _formdiv = new U.UF.UI.form(
  6522. "翻译",
  6523. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6524. "id": "translation",
  6525. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6531. break;
  6532. case "mohe": //魔盒
  6533. _formdiv = new U.UF.UI.form(
  6534. "魔盒识字",
  6535. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6536. "id": "mohe",
  6537. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6543. break;
  6544. case "24game": //24点
  6545. _formdiv = new U.UF.UI.form(
  6546. "24点",
  6547. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6548. "id": "24game",
  6549. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6555. break;
  6556. case "case":
  6557. _formdiv = new U.UF.UI.form(
  6558. "课程进展",
  6559. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6560. "id": "case",
  6561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6567. break;
  6568. case "snf":
  6569. _formdiv = new U.UF.UI.form(
  6570. "赛诺梵",
  6571. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6572. "id": "snf",
  6573. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6579. break;
  6580. case "hanFamily":
  6581. _formdiv = new U.UF.UI.form(
  6582. "汉字家族",
  6583. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6584. "id": "hanFamily",
  6585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6591. break;
  6592. case "hanClassics":
  6593. _formdiv = new U.UF.UI.form(
  6594. "国学经典",
  6595. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6596. "id": "hanClassics",
  6597. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () { }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _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); } }
  6603. break;
  6604. case "hanTraining":
  6605. _formdiv = new U.UF.UI.form(
  6606. "笔画训练",
  6607. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6608. "id": "hanTraining",
  6609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6610. "onresize": function () { }
  6611. }, {
  6612. closecallback: function () { }
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. break;
  6616. case "hanClass":
  6617. _formdiv = new U.UF.UI.form(
  6618. "书法课堂",
  6619. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6620. "id": "hanClass",
  6621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6627. break;
  6628. case "han":
  6629. _formdiv = new U.UF.UI.form(
  6630. "汉字宫",
  6631. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6632. "id": "han",
  6633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6634. "onresize": function () { }
  6635. }, {
  6636. closecallback: function () { }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6639. break;
  6640. case "projectGM": //课程管理
  6641. _formdiv = new U.UF.UI.form(
  6642. "课程管理",
  6643. $$("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 }), {
  6644. "id": "projectGM",
  6645. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () { }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. break;
  6652. case "studyGM": //课程中心
  6653. _formdiv = new U.UF.UI.form(
  6654. "课程中心",
  6655. $$("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
  6656. "id": "study",
  6657. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6658. "onresize": function () { }
  6659. }, {
  6660. closecallback: function () { }
  6661. }, { "style": { "height": "36px" } }).form; //创建窗体
  6662. _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); } }
  6663. break;
  6664. // studentGM
  6665. case "studentGM": //学生管理
  6666. _formdiv = new U.UF.UI.form(
  6667. "学生管理",
  6668. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6669. "id": "studentGM",
  6670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6676. break;
  6677. case "evaluateGM": //学生评价
  6678. _formdiv = new U.UF.UI.form(
  6679. "学生评价",
  6680. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6681. "id": "evaluateGM",
  6682. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6688. break;
  6689. // classGM
  6690. case "classGM": //班级管理
  6691. _formdiv = new U.UF.UI.form(
  6692. "班级管理",
  6693. $$("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 }), {
  6694. "id": "classGM",
  6695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. closecallback: function () { }
  6699. }, { "style": { "height": "36px" } }).form; //创建窗体
  6700. _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); } }
  6701. break;
  6702. // dataGM
  6703. case "dataGM":
  6704. _formdiv = new U.UF.UI.form(
  6705. "我的资料",
  6706. $$("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 }), {
  6707. "id": "dataGM",
  6708. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6709. "onresize": function () { }
  6710. }, {
  6711. closecallback: function () { }
  6712. }, { "style": { "height": "36px" } }).form; //创建窗体
  6713. _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); } }
  6714. break;
  6715. // caseGM
  6716. case "caseGM": //课程进展
  6717. _formdiv = new U.UF.UI.form(
  6718. "课程进展",
  6719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6720. "id": "caseGM",
  6721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //创建窗体
  6726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6727. break;
  6728. // meterialGM
  6729. case "meterialGM": //素材库
  6730. _formdiv = new U.UF.UI.form(
  6731. "素材库",
  6732. $$("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 }), {
  6733. "id": "meterialGM",
  6734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6735. "onresize": function () { }
  6736. }, {
  6737. closecallback: function () { }
  6738. }, { "style": { "height": "36px" } }).form; //创建窗体
  6739. _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); } }
  6740. break;
  6741. // evaluateSGM
  6742. case "evaluateSGM": //我的评价
  6743. _formdiv = new U.UF.UI.form(
  6744. "我的评价",
  6745. $$("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 }), {
  6746. "id": "evaluateSGM",
  6747. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "jupyter": //jupyter
  6755. _formdiv = new U.UF.UI.form(
  6756. "jupyter",
  6757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6758. "id": "jupyter",
  6759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _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); } }
  6765. break;
  6766. case "number": //数字实验室
  6767. _formdiv = new U.UF.UI.form(
  6768. "数字实验室",
  6769. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6770. "id": "number",
  6771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "studentCourse": //项目管理 学生
  6779. _formdiv = new U.UF.UI.form(
  6780. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6781. $$("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 }), {
  6782. "id": "studentCourse",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "studentCourseS": //项目管理 老师
  6791. _formdiv = new U.UF.UI.form(
  6792. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6793. $$("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 }), {
  6794. "id": "studentCourseS",
  6795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6801. break;
  6802. case "studentIndex": //项目中心
  6803. _formdiv = new U.UF.UI.form(
  6804. "项目中心",
  6805. $$("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 }), {
  6806. "id": "studentIndex",
  6807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6813. break;
  6814. case "CaseDesignS":
  6815. _formdiv = new U.UF.UI.form(
  6816. "项目进展",
  6817. $$("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 }), {
  6818. "id": "case",
  6819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6825. break;
  6826. case "tcStudent": //腾讯学生管理
  6827. _formdiv = new U.UF.UI.form(
  6828. "学生管理",
  6829. $$("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 }), {
  6830. "id": "tcStudent",
  6831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6837. break;
  6838. case "tcSchool": //腾讯学校管理
  6839. _formdiv = new U.UF.UI.form(
  6840. "学校管理",
  6841. $$("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 }), {
  6842. "id": "tcSchool",
  6843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6849. break;
  6850. case "tcTeacher": //腾讯学校管理
  6851. _formdiv = new U.UF.UI.form(
  6852. "教师管理",
  6853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6854. "id": "tcTeacher",
  6855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6856. "onresize": function () { }
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6861. break;
  6862. case "teacher":
  6863. _formdiv = new U.UF.UI.form(
  6864. "教师管理",
  6865. $$("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 }), {
  6866. "id": "teacher",
  6867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6873. break;
  6874. case "tcData": //腾讯我的资料
  6875. _formdiv = new U.UF.UI.form(
  6876. "我的资料",
  6877. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6878. "id": "tcData",
  6879. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6885. break;
  6886. case "tcNotice": //腾讯消息通知
  6887. _formdiv = new U.UF.UI.form(
  6888. "消息通知",
  6889. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6890. "id": "tcNotice",
  6891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, { "style": { "height": "36px" } }).form; //创建窗体
  6896. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6897. break;
  6898. case "myReport": //好友打开
  6899. _formdiv = new U.UF.UI.form(
  6900. "我的评价",
  6901. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6902. "id": "myReport",
  6903. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6909. break;
  6910. case "learnAna": //好友打开
  6911. _formdiv = new U.UF.UI.form(
  6912. "学习分析",
  6913. $$("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 }), {
  6914. "id": "learnAna",
  6915. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6921. break;
  6922. case "AIChat": //AI共创
  6923. _formdiv = new U.UF.UI.form(
  6924. "AI共创",
  6925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6926. "id": "AIChat",
  6927. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6928. "onresize": function () { }
  6929. }, {
  6930. istop: true,
  6931. closecallback: function () { $("#aichat_icon").remove(); },
  6932. narrowcallback: function () {
  6933. if (!$("#aichat_icon")[0]) {
  6934. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6935. }
  6936. },
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _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); } }
  6939. break;
  6940. case "ainew": //AI共创
  6941. _formdiv = new U.UF.UI.form(
  6942. "AI协同",
  6943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6944. "id": "ainew",
  6945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _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); } }
  6951. break;
  6952. case "gpt4": //gpt4
  6953. _formdiv = new U.UF.UI.form(
  6954. "AI助手",
  6955. $$("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 }), {
  6956. "id": "gpt4",
  6957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _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); } }
  6963. break;
  6964. case "aigpt": //gpt4
  6965. _formdiv = new U.UF.UI.form(
  6966. "AI助手+",
  6967. $$("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 }), {
  6968. "id": "aigpt",
  6969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () {
  6973. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6974. }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _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); } }
  6977. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6978. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6979. })
  6980. break;
  6981. case "aiKnowledge": //aiKnowledge
  6982. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6983. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6984. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6985. }
  6986. _formdiv = new U.UF.UI.form(
  6987. "知识建构",
  6988. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  6989. "id": "aiKnowledge",
  6990. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6991. "onresize": function () { }
  6992. }, {
  6993. closecallback: function () { }
  6994. }, { "style": { "height": "36px" } }).form; //创建窗体
  6995. _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); } }
  6996. break;
  6997. case "futureClass": //AI共创
  6998. _formdiv = new U.UF.UI.form(
  6999. "协同建构",
  7000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7001. "id": "synergyCourse",
  7002. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7003. "onresize": function () { }
  7004. }, {
  7005. closecallback: function () {
  7006. $("iframe", _formdiv)[0].contentWindow.loginout();
  7007. }
  7008. }, { "style": { "height": "36px" } }).form; //创建窗体
  7009. _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); } }
  7010. break;
  7011. case "aiagent": //ai agent
  7012. _formdiv = new U.UF.UI.form(
  7013. "AI Agent",
  7014. $$("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" }), {
  7015. "id": "AIAgent",
  7016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7017. "onresize": function () { }
  7018. }, {
  7019. closecallback: function () { }
  7020. }, { "style": { "height": "36px" } }).form; //创建窗体
  7021. _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); } }
  7022. break;
  7023. case "dataBoard": //数据看板
  7024. _formdiv = new U.UF.UI.form(
  7025. "数据看板",
  7026. $$("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 }), {
  7027. "id": "dataBoard",
  7028. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //创建窗体
  7033. _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); } }
  7034. break;
  7035. case "dataBoardSies": //数据融合
  7036. _formdiv = new U.UF.UI.form(
  7037. "数据融合",
  7038. $$("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 }), {
  7039. "id": "dataBoardSies",
  7040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //创建窗体
  7045. _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); } }
  7046. break;
  7047. case "dataBoardNew": //数据看板
  7048. _formdiv = new U.UF.UI.form(
  7049. "综合看板",
  7050. $$("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 }), {
  7051. "id": "dataBoardNew",
  7052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, { "style": { "height": "36px" } }).form; //创建窗体
  7057. _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); } }
  7058. break;
  7059. case "dataBoardTest": //数据看板
  7060. _formdiv = new U.UF.UI.form(
  7061. "评测看板",
  7062. $$("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 }), {
  7063. "id": "dataBoardTest",
  7064. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. closecallback: function () { }
  7068. }, { "style": { "height": "36px" } }).form; //创建窗体
  7069. _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); } }
  7070. break;
  7071. case "AIAnalyse": //AI共创
  7072. _formdiv = new U.UF.UI.form(
  7073. "AI分析",
  7074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7075. "id": "AIAnalyse",
  7076. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7077. "onresize": function () { }
  7078. }, {
  7079. closecallback: function () { }
  7080. }, { "style": { "height": "36px" } }).form; //创建窗体
  7081. _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); } }
  7082. break;
  7083. case "studioCourse": //AI共创
  7084. _formdiv = new U.UF.UI.form(
  7085. "工作管理",
  7086. $$("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 }), {
  7087. "id": "studioCourse",
  7088. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //创建窗体
  7093. _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); } }
  7094. break;
  7095. case "studioIndex": //AI共创
  7096. _formdiv = new U.UF.UI.form(
  7097. "工作中心",
  7098. $$("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 }), {
  7099. "id": "studioIndex",
  7100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //创建窗体
  7105. _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); } }
  7106. break;
  7107. case "source":
  7108. _formdiv = new U.UF.UI.form(
  7109. "教学资源",
  7110. $$("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 }), {
  7111. "id": "source",
  7112. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //创建窗体
  7117. _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); } }
  7118. break;
  7119. case "testTeacher":
  7120. _formdiv = new U.UF.UI.form(
  7121. "智能表单",
  7122. $$("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 }), {
  7123. "id": "testTeacher",
  7124. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7125. "onresize": function () { }
  7126. }, {
  7127. closecallback: function () { }
  7128. }, { "style": { "height": "36px" } }).form; //创建窗体
  7129. _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); } }
  7130. break;
  7131. case "testStudent":
  7132. _formdiv = new U.UF.UI.form(
  7133. "教师中心",
  7134. $$("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 }), {
  7135. "id": "testStudent",
  7136. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7137. "onresize": function () { }
  7138. }, {
  7139. closecallback: function () { }
  7140. }, { "style": { "height": "36px" } }).form; //创建窗体
  7141. _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); } }
  7142. break;
  7143. case "testTeacherSies":
  7144. _formdiv = new U.UF.UI.form(
  7145. "教师管理",
  7146. $$("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 }), {
  7147. "id": "testTeacherSies",
  7148. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7149. "onresize": function () { }
  7150. }, {
  7151. closecallback: function () { }
  7152. }, { "style": { "height": "36px" } }).form; //创建窗体
  7153. _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); } }
  7154. break;
  7155. case "testStudentSies":
  7156. _formdiv = new U.UF.UI.form(
  7157. "教师中心",
  7158. $$("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 }), {
  7159. "id": "testStudentSies",
  7160. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7161. "onresize": function () { }
  7162. }, {
  7163. closecallback: function () { }
  7164. }, { "style": { "height": "36px" } }).form; //创建窗体
  7165. _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); } }
  7166. break;
  7167. case "ytpbl": //消息通知
  7168. _formdiv = new U.UF.UI.form(
  7169. "案例征集",
  7170. $$("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 }), {
  7171. "id": "ytpbl",
  7172. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, { "style": { "height": "36px" } }).form; //创建窗体
  7177. _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); } }
  7178. // 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");
  7179. break;
  7180. case "aiCourseResource": //人工智能窗体
  7181. _formdiv = new U.UF.UI.form(
  7182. false,
  7183. $$("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 }), {
  7184. "id": "aiCourseResource",
  7185. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7186. "onresize": function () { },
  7187. "isdrag": false,
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _taskbar = ''
  7192. break;
  7193. case "szdjgCocooroboX": //图形化编程
  7194. _formdiv = new U.UF.UI.form(
  7195. "图形化编程",
  7196. $$("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" }), {
  7197. "id": "szdjgCocooroboX",
  7198. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _taskbar = ''
  7204. break;
  7205. case "szdjgPython": //python编程
  7206. _formdiv = new U.UF.UI.form(
  7207. "Python编程",
  7208. $$("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" }), {
  7209. "id": "szdjgPython",
  7210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _taskbar = ''
  7216. break;
  7217. case "Record":
  7218. _formdiv = new U.UF.UI.form(
  7219. "观察记录",
  7220. $$("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 }), {
  7221. "id": "Record",
  7222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "aigptCourse":
  7230. _formdiv = new U.UF.UI.form(
  7231. "AI智能体",
  7232. $$("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' }), {
  7233. "id": "aigptCourse",
  7234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7240. break;
  7241. case "classroomObservation":
  7242. _formdiv = new U.UF.UI.form(
  7243. "课堂观察",
  7244. $$("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 }), {
  7245. "id": "classroomObservation",
  7246. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7253. break;
  7254. case "pblCourse":
  7255. _formdiv = new U.UF.UI.form(
  7256. "学生PBL",
  7257. $$("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 }), {
  7258. "id": "pblCourse",
  7259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7260. "onresize": function () { }
  7261. }, {
  7262. closecallback: function () { }
  7263. }, { "style": { "height": "36px" } }).form; //创建窗体
  7264. _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); } }
  7265. break;
  7266. case "appStore":
  7267. _formdiv = new U.UF.UI.form(
  7268. "CocoFlow",
  7269. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7270. "id": "appStore",
  7271. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, { "style": { "height": "36px" } }).form; //创建窗体
  7276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7277. break;
  7278. case "sassPlatform":
  7279. _formdiv = new U.UF.UI.form(
  7280. "Sass通用后台管理",
  7281. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7282. "id": "sassPlatform",
  7283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, { "style": { "height": "36px" } }).form; //创建窗体
  7288. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7289. break;
  7290. case "EDU":
  7291. _formdiv = new U.UF.UI.form(
  7292. "EDU",
  7293. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7294. "id": "EDU",
  7295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7296. "onresize": function () { }
  7297. }, {
  7298. closecallback: function () { }
  7299. }, { "style": { "height": "36px" } }).form; //创建窗体
  7300. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7301. break;
  7302. case "knowledge":
  7303. _formdiv = new U.UF.UI.form(
  7304. "知识库",
  7305. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7306. "id": "knowledge",
  7307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7308. "onresize": function () { }
  7309. }, {
  7310. closecallback: function () { }
  7311. }, { "style": { "height": "36px" } }).form; //创建窗体
  7312. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7313. break;
  7314. case "userExamine":
  7315. _formdiv = new U.UF.UI.form(
  7316. "账号申请",
  7317. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7318. "id": "userExamine",
  7319. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7320. "onresize": function () { }
  7321. }, {
  7322. closecallback: function () { }
  7323. }, { "style": { "height": "36px" } }).form; //创建窗体
  7324. break;
  7325. }
  7326. //U.MD.D.I.openClick(str);
  7327. //如果有任务栏信息
  7328. if (_taskbar) {
  7329. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7330. }
  7331. if(iframeBool){
  7332. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7333. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7334. // console.log("iframe进入");
  7335. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7336. // };
  7337. setTimeout(() => {
  7338. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7339. }, 2000);
  7340. }
  7341. }
  7342. // U.MD.D.I.openClick = function(str){
  7343. // var click = '';
  7344. // switch(str){
  7345. // case 'friend':
  7346. // click = '我的好友';
  7347. // break;
  7348. // case 'domain':
  7349. // click = '域名管理';
  7350. // break;
  7351. // case 'disk':
  7352. // click = '我的云盘';
  7353. // break;
  7354. // case 'word':
  7355. // click = 'Word';
  7356. // break;
  7357. // case 'excel':
  7358. // click = 'Execl';
  7359. // break;
  7360. // case 'txt':
  7361. // click = '文本文件';
  7362. // break;
  7363. // case 'lookupFriend':
  7364. // click = '查找好友';
  7365. // break;
  7366. // case 'ftp':
  7367. // click = 'FTP';
  7368. // break;
  7369. // case 'group':
  7370. // click = '群组';
  7371. // break;
  7372. // case 'set':
  7373. // click = '我的设置';
  7374. // break;
  7375. // case 'systemSet':
  7376. // click = '系统设置';
  7377. // break;
  7378. // case 'boomYun':
  7379. // click = '互联办公';
  7380. // break;
  7381. // case 'xz':
  7382. // click = '云端下载';
  7383. // break;
  7384. // case 'client':
  7385. // click = '有思浏览器';
  7386. // break;
  7387. // case 'backEndProgramming':
  7388. // click = '在线后台编程';
  7389. // break;
  7390. // case 'frontEndProgramming':
  7391. // click = '在线前端编程';
  7392. // break;
  7393. // default: break;
  7394. // }
  7395. // if(U.MD.D.I.Ip && click){
  7396. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7397. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7398. // })
  7399. // }
  7400. // }
  7401. /**
  7402. *函数作用:ajax简易函数,使用post格式
  7403. *@param url {data} 后台地址
  7404. *@param data {data} 参数json
  7405. *@param fn {data} 回调函数
  7406. *
  7407. */
  7408. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7409. // var xhr = new XMLHttpRequest();
  7410. // xhr.open("GET",url,true);
  7411. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7412. // xhr.onreadystatechange = function(){
  7413. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7414. // fn.call(this,xhr.responseText);
  7415. // }
  7416. // };
  7417. // xhr.send();
  7418. // }
  7419. /*判断是否是内网IP*/
  7420. // U.MD.D.I.isInnerIPFn = function(str){
  7421. // var curPageUrl = str;
  7422. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7423. // curPageUrl =curPageUrl.replace(reg1,'');
  7424. // // console.log('curPageUrl-1 '+curPageUrl);
  7425. // var reg2 = /\:+/g;//替换冒号为一点
  7426. // curPageUrl =curPageUrl.replace(reg2,'.');
  7427. // // console.log('curPageUrl-2 '+curPageUrl);
  7428. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7429. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7430. // if(curPageUrl[2] != '16'){
  7431. // return ipAddress;
  7432. // }else{
  7433. // return false;
  7434. // }
  7435. // }
  7436. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7437. // //compatibility for firefox and chrome
  7438. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7439. // var pc = new myPeerConnection({
  7440. // iceServers: []
  7441. // }),
  7442. // noop = function() {},
  7443. // localIPs = {},
  7444. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7445. // key;
  7446. // function iterateIP(ip) {
  7447. // if (!localIPs[ip]) onNewIP(ip);
  7448. // localIPs[ip] = true;
  7449. // }
  7450. // //create a bogus data channel
  7451. // pc.createDataChannel("");
  7452. // // create offer and set local description
  7453. // pc.createOffer().then(function(sdp) {
  7454. // sdp.sdp.split('\n').forEach(function(line) {
  7455. // if (line.indexOf('candidate') < 0) return;
  7456. // line.match(ipRegex).forEach(iterateIP);
  7457. // });
  7458. // pc.setLocalDescription(sdp, noop, noop);
  7459. // }).catch(function(reason) {
  7460. // // An error occurred, so handle the failure to connect
  7461. // });
  7462. // //sten for candidate events
  7463. // pc.onicecandidate = function(ice) {
  7464. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7465. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7466. // };
  7467. // }
  7468. // U.MD.D.I.getUserIpBool = function(callback){
  7469. // U.MD.D.I.getUserIP(function(ip){
  7470. // alert("Got IP! :" + ip);
  7471. // });
  7472. //}
  7473. //#endregion
  7474. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7475. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7476. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7477. _userinfo = US.userInfo, //登录用户信息
  7478. _userid = US.userInfo.userid //登录用户id
  7479. let _iframe;
  7480. let _cid = cid,
  7481. _stage = stage,
  7482. _task = task,
  7483. _tool = tool;
  7484. var _jie = $$("div", {
  7485. "style": {
  7486. "position": "absolute",
  7487. "bottom": "50px",
  7488. "right": "50px",
  7489. "zIndex": "9999",
  7490. "backgroundColor": "#2268bc",
  7491. "color": "#fff",
  7492. "padding": "12px 20px",
  7493. "cursor": "pointer",
  7494. "borderRadius": "4px",
  7495. },
  7496. "innerHTML": "提交作业"
  7497. })
  7498. let aTool = ''
  7499. let _loading = document.createElement('div')
  7500. _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;"
  7501. // _loading.id = "";
  7502. let _lchild = document.createElement('div')
  7503. let _limg = document.createElement('img')
  7504. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7505. _limg.style = "width: 26px;margin-right: 10px;"
  7506. _lchild.appendChild(_limg)
  7507. let _lspan = document.createElement('span')
  7508. _lspan.innerHTML = "上传中..."
  7509. _lchild.appendChild(_lspan)
  7510. _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%);"
  7511. _loading.appendChild(_lchild)
  7512. var _box = $$('div', {
  7513. "style": {
  7514. "position": "relative",
  7515. "width": "100%",
  7516. "height": "100%",
  7517. },
  7518. })
  7519. _box.appendChild(_loading)
  7520. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7521. switch (str) {
  7522. case "whiteboard":
  7523. aTool = 1;
  7524. _iframe = $$("iframe", {
  7525. "frameborder": "no",
  7526. "border": "0",
  7527. "scrolling ": "no",
  7528. "style": {
  7529. "cssText": "border:0;width:100%;height:100%"
  7530. },
  7531. "src": "https://beta.iwb.cocorobo.cn/"
  7532. })
  7533. _box.appendChild(_iframe);
  7534. _box.appendChild(_jie);
  7535. _formdiv = new U.UF.UI.form(
  7536. "电子白板",
  7537. _box, {
  7538. "id": "whiteboard" + cid + stage + task + tool,
  7539. "style": {
  7540. "width": "90%",
  7541. "height": "90%",
  7542. "overflow": 'hidden'
  7543. },
  7544. "onresize": function () { }
  7545. }, {
  7546. closecallback: function () { }
  7547. }, {
  7548. "style": {
  7549. "height": "36px"
  7550. }
  7551. }).form; //创建窗体
  7552. _taskbar = {
  7553. "id": str + _formdiv.id,
  7554. "style": {
  7555. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7556. },
  7557. "name": "电子白板",
  7558. "forms": _formdiv,
  7559. "click": function () {
  7560. U.MD.D.I.openApplication(str, obj, info);
  7561. }
  7562. }
  7563. break;
  7564. case "mind":
  7565. aTool = 3;
  7566. _iframe = $$("iframe", {
  7567. "frameborder": "no",
  7568. "border": "0",
  7569. "scrolling ": "no",
  7570. "style": {
  7571. "cssText": "border:0;width:100%;height:100%"
  7572. },
  7573. "src": "/kityminder-editor/dist/index.html"
  7574. })
  7575. _box.appendChild(_iframe);
  7576. _box.appendChild(_jie);
  7577. _formdiv = new U.UF.UI.form(
  7578. "思维导图",
  7579. _box, { //"/jsmind/example/demo.html"
  7580. "id": "mind" + cid + stage + task + tool,
  7581. "style": {
  7582. "width": "90%",
  7583. "height": "90%",
  7584. "overflow": 'hidden'
  7585. },
  7586. "onresize": function () { }
  7587. }, {
  7588. closecallback: function () { }
  7589. }, {
  7590. "style": {
  7591. "height": "36px"
  7592. }
  7593. }).form; //创建窗体
  7594. _taskbar = {
  7595. "id": str + _formdiv.id,
  7596. "style": {
  7597. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7598. },
  7599. "name": "思维导图",
  7600. "forms": _formdiv,
  7601. "click": function () {
  7602. U.MD.D.I.openApplication(str, obj, info);
  7603. }
  7604. }
  7605. break;
  7606. case "MindMap":
  7607. aTool = 3;
  7608. _iframe = $$("iframe", {
  7609. "frameborder": "no",
  7610. "border": "0",
  7611. "scrolling ": "no",
  7612. "style": {
  7613. "cssText": "border:0;width:100%;height:100%"
  7614. },
  7615. "src": "//cloud.cocorobo.cn/mind/"
  7616. })
  7617. _box.appendChild(_iframe);
  7618. _box.appendChild(_jie);
  7619. _formdiv = new U.UF.UI.form(
  7620. "思维导图",
  7621. _box, { //"/jsmind/example/demo.html"
  7622. "id": "mind" + cid + stage + task + tool,
  7623. "style": {
  7624. "width": "90%",
  7625. "height": "90%",
  7626. "overflow": 'hidden'
  7627. },
  7628. "onresize": function () { }
  7629. }, {
  7630. closecallback: function () { }
  7631. }, {
  7632. "style": {
  7633. "height": "36px"
  7634. }
  7635. }).form; //创建窗体
  7636. _taskbar = {
  7637. "id": str + _formdiv.id,
  7638. "style": {
  7639. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7640. },
  7641. "name": "思维导图",
  7642. "forms": _formdiv,
  7643. "click": function () {
  7644. U.MD.D.I.openApplication(str, obj, info);
  7645. }
  7646. }
  7647. break;
  7648. case "doc":
  7649. aTool = 6;
  7650. _iframe = $$("iframe", {
  7651. "frameborder": "no",
  7652. "border": "0",
  7653. "scrolling ": "no",
  7654. "style": {
  7655. "cssText": "border:0;width:100%;height:100%"
  7656. },
  7657. "src": "/Office/Word/WordEditArea.htm"
  7658. })
  7659. _box.appendChild(_iframe);
  7660. _box.appendChild(_jie);
  7661. _formdiv = new U.UF.UI.form(
  7662. "协同文档",
  7663. _box, {
  7664. "id": "doc" + cid + stage + task + tool,
  7665. "style": {
  7666. "width": "90%",
  7667. "height": "90%",
  7668. "overflow": 'hidden'
  7669. },
  7670. "onresize": function () { }
  7671. }, {
  7672. closecallback: function () { }
  7673. }, {
  7674. "style": {
  7675. "height": "36px"
  7676. }
  7677. }).form; //创建窗体
  7678. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7679. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7680. })
  7681. _taskbar = {
  7682. "id": str + _formdiv.id,
  7683. "style": {
  7684. "backgroundImage": "url(/img/icon/doc.png)"
  7685. },
  7686. "name": "协同文档",
  7687. "forms": _formdiv,
  7688. "click": function () {
  7689. U.MD.D.I.openApplication(str, obj, info);
  7690. }
  7691. }
  7692. break;
  7693. case "mindNetwork": //好友打开
  7694. aTool = 7;
  7695. _iframe = $$("iframe", {
  7696. "webkitallowfullscreen": "",
  7697. "mozallowfullscreen": "",
  7698. "allowfullscreen": "",
  7699. "frameborder": "no",
  7700. "border": "0",
  7701. "scrolling ": "no",
  7702. "style": {
  7703. "cssText": "border:0; width:100%; height:100%;"
  7704. },
  7705. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7706. })
  7707. _box.appendChild(_iframe);
  7708. _box.appendChild(_jie);
  7709. _formdiv = new U.UF.UI.form(
  7710. "思维网格",
  7711. _box, {
  7712. "id": "mindNetwork" + cid + stage + task + tool,
  7713. "style": {
  7714. "width": "90%",
  7715. "height": "90%",
  7716. "overflow": 'hidden'
  7717. },
  7718. "onresize": function () { }
  7719. }, {
  7720. closecallback: function () { }
  7721. }, {
  7722. "style": {
  7723. "height": "36px"
  7724. }
  7725. }).form; //创建窗体
  7726. _taskbar = {
  7727. "id": str + _formdiv.id,
  7728. "style": {
  7729. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7730. },
  7731. "name": "思维网格",
  7732. "forms": _formdiv,
  7733. "click": function () {
  7734. U.MD.D.I.openApplication(str, obj, info);
  7735. }
  7736. }
  7737. break;
  7738. case "courseDesign":
  7739. _iframe = $$("iframe", {
  7740. "webkitallowfullscreen": "",
  7741. "mozallowfullscreen": "",
  7742. "allowfullscreen": "",
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0; width:100%; height:100%;"
  7748. },
  7749. "src": "/course-design-vue"
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "项目设计",
  7755. _box, {
  7756. "id": "courseDesign" + cid + stage + task + tool,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //创建窗体
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7774. },
  7775. "name": "项目设计",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. }
  7783. const script1 = document.createElement("script");
  7784. script1.type = "text/javascript";
  7785. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7786. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7787. const script2 = document.createElement("script");
  7788. script2.type = "text/javascript";
  7789. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7790. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7791. const script3 = document.createElement("script");
  7792. script3.type = "text/javascript";
  7793. script3.charset = "UTF-8";
  7794. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7795. const script4 = document.createElement("script");
  7796. script4.type = "text/javascript";
  7797. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7798. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7799. if (_iframe) {
  7800. if (str == 'doc') {
  7801. _iframe = _formdiv.querySelector('iframe')
  7802. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7803. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7804. _iframe.contentWindow.document.body.appendChild(script1);
  7805. _iframe.contentWindow.document.body.appendChild(script2);
  7806. // _iframe.contentWindow.document.body.appendChild(script3);
  7807. _iframe.contentWindow.document.body.appendChild(script4);
  7808. })
  7809. if (onloadListener) {
  7810. _iframe.contentDocument.location.reload()
  7811. } else {
  7812. _iframe.contentDocument.location.reload()
  7813. }
  7814. } else if (str == 'courseDesign') {
  7815. U.UF.DL.iframeLoad(_iframe, function () {
  7816. // _iframe.contentWindow.U.MD.O.W.load();
  7817. // _iframe.contentWindow.document.body.appendChild(script1);
  7818. _iframe.contentWindow.document.body.appendChild(script2);
  7819. _iframe.contentWindow.document.body.appendChild(script4);
  7820. })
  7821. } else if (str == 'mind') {
  7822. _iframe = _formdiv.querySelector('iframe')
  7823. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7824. //
  7825. _iframe.contentWindow.document.body.appendChild(script1);
  7826. _iframe.contentWindow.document.body.appendChild(script2);
  7827. _iframe.contentWindow.document.body.appendChild(script4);
  7828. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7829. })
  7830. if (onloadListener) {
  7831. _iframe.contentDocument.location.reload()
  7832. } else {
  7833. _iframe.contentDocument.location.reload()
  7834. }
  7835. } else if (str == 'whiteboard') {
  7836. _iframe = _formdiv.querySelector('iframe')
  7837. let onloadListener = _iframe.onload = () => {
  7838. _iframe.contentWindow.document.body.appendChild(script1);
  7839. _iframe.contentWindow.document.body.appendChild(script2);
  7840. _iframe.contentWindow.document.body.appendChild(script4);
  7841. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7842. };
  7843. // if (onloadListener) {
  7844. // try {
  7845. // _iframe.src += "?cocorobo="+new Date().getTime()
  7846. // _iframe.contentWindow.document.location.reload()
  7847. // } catch (error) {
  7848. // }
  7849. // } else {
  7850. // _iframe.contentDocument.location.reload()
  7851. // }
  7852. } else {
  7853. _iframe.onload = () => {
  7854. _iframe.contentWindow.document.body.appendChild(script1);
  7855. _iframe.contentWindow.document.body.appendChild(script2);
  7856. // _iframe.contentWindow.document.body.appendChild(script3);
  7857. _iframe.contentWindow.document.body.appendChild(script4);
  7858. };
  7859. }
  7860. _jie.onclick = async () => {
  7861. let text = ''
  7862. if (aTool == 1) {
  7863. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7864. } else if (aTool == 6) {
  7865. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7866. } else if (aTool == 3) {
  7867. text = await U.MD.D.I.getEditorContent(_iframe);
  7868. }
  7869. _loading.style.display = 'flex'
  7870. console.log(_loading);
  7871. var _ajs = _iframe.contentWindow.document.createElement("script");
  7872. _ajs.type = "text/javascript";
  7873. _ajs.innerHTML =
  7874. // 'console.log(' + _loading + ');\n' +
  7875. 'var _js = document.createElement("script");\n' +
  7876. '_js.type="text/javascript";\n' +
  7877. '_js.charset="UTF-8";\n' +
  7878. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7879. "_js.onload = function(){\n" +
  7880. ' var a = document.getElementsByTagName("img")\n' +
  7881. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7882. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7883. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7884. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7885. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7886. "beforeUpload_shishi(file," +
  7887. "'" +
  7888. _userid +
  7889. "'" +
  7890. ", " +
  7891. "'" +
  7892. _cid +
  7893. "'" +
  7894. ", " +
  7895. "'" +
  7896. _stage +
  7897. "'" +
  7898. ", " +
  7899. "'" +
  7900. _task +
  7901. "'" +
  7902. ", " +
  7903. "'" +
  7904. _tool +
  7905. "'" +
  7906. ", " +
  7907. "'" +
  7908. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7909. "'" +
  7910. ", " +
  7911. "'" +
  7912. aTool +
  7913. "'" +
  7914. ", " +
  7915. "`" +
  7916. text +
  7917. "`" +
  7918. ")\n" +
  7919. " });\n" +
  7920. "}\n" +
  7921. "document.head.appendChild(_js);\n";
  7922. _iframe.contentWindow.document.head.appendChild(_ajs);
  7923. }
  7924. }
  7925. //U.MD.D.I.openClick(str);
  7926. //如果有任务栏信息
  7927. // if (_taskbar) {
  7928. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7929. // }
  7930. }
  7931. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7932. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7933. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7934. _userinfo = US.userInfo, //登录用户信息
  7935. _userid = US.userInfo.userid //登录用户id
  7936. let _iframe;
  7937. let _cid = cid,
  7938. _stage = stage,
  7939. _task = task,
  7940. _tool = tool;
  7941. var _jie = $$("div", {
  7942. "style": {
  7943. "position": "absolute",
  7944. "bottom": "50px",
  7945. "right": "50px",
  7946. "zIndex": "9999",
  7947. "backgroundColor": "#2268bc",
  7948. "color": "#fff",
  7949. "padding": "12px 20px",
  7950. "cursor": "pointer",
  7951. "borderRadius": "4px",
  7952. },
  7953. "innerHTML": "提交作业"
  7954. })
  7955. let aTool = ''
  7956. let _loading = document.createElement('div')
  7957. _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;"
  7958. // _loading.id = "";
  7959. let _lchild = document.createElement('div')
  7960. let _limg = document.createElement('img')
  7961. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7962. _limg.style = "width: 26px;margin-right: 10px;"
  7963. _lchild.appendChild(_limg)
  7964. let _lspan = document.createElement('span')
  7965. _lspan.innerHTML = "上传中..."
  7966. _lchild.appendChild(_lspan)
  7967. _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%);"
  7968. _loading.appendChild(_lchild)
  7969. let _box = $$('div', {
  7970. "style": {
  7971. "position": "relative",
  7972. "width": "100%",
  7973. "height": "100%",
  7974. },
  7975. })
  7976. _box.appendChild(_loading)
  7977. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7978. switch (str) {
  7979. case "whiteboard":
  7980. aTool = 1;
  7981. _iframe = $$("iframe", {
  7982. "frameborder": "no",
  7983. "border": "0",
  7984. "scrolling ": "no",
  7985. "style": {
  7986. "cssText": "border:0;width:100%;height:100%"
  7987. },
  7988. "src": "https://beta.iwb.cocorobo.cn/"
  7989. })
  7990. _box.appendChild(_iframe);
  7991. _box.appendChild(_jie);
  7992. _formdiv = new U.UF.UI.form(
  7993. "电子白板",
  7994. _box, {
  7995. "id": "whiteboard" + cid + stage + task + tool,
  7996. "style": {
  7997. "width": "90%",
  7998. "height": "90%",
  7999. "overflow": 'hidden'
  8000. },
  8001. "onresize": function () { }
  8002. }, {
  8003. closecallback: function () { }
  8004. }, {
  8005. "style": {
  8006. "height": "36px"
  8007. }
  8008. }).form; //创建窗体
  8009. _taskbar = {
  8010. "id": str + _formdiv.id,
  8011. "style": {
  8012. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8013. },
  8014. "name": "电子白板",
  8015. "forms": _formdiv,
  8016. "click": function () {
  8017. U.MD.D.I.openApplication(str, obj, info);
  8018. }
  8019. }
  8020. break;
  8021. case "mind":
  8022. aTool = 3;
  8023. _iframe = $$("iframe", {
  8024. "frameborder": "no",
  8025. "border": "0",
  8026. "scrolling ": "no",
  8027. "style": {
  8028. "cssText": "border:0;width:100%;height:100%"
  8029. },
  8030. "src": "/kityminder-editor/dist/index.html"
  8031. })
  8032. _box.appendChild(_iframe);
  8033. _box.appendChild(_jie);
  8034. _formdiv = new U.UF.UI.form(
  8035. "思维导图",
  8036. _box, { //"/jsmind/example/demo.html"
  8037. "id": "mind" + cid + stage + task + tool,
  8038. "style": {
  8039. "width": "90%",
  8040. "height": "90%",
  8041. "overflow": 'hidden'
  8042. },
  8043. "onresize": function () { }
  8044. }, {
  8045. closecallback: function () { }
  8046. }, {
  8047. "style": {
  8048. "height": "36px"
  8049. }
  8050. }).form; //创建窗体
  8051. _taskbar = {
  8052. "id": str + _formdiv.id,
  8053. "style": {
  8054. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8055. },
  8056. "name": "思维导图",
  8057. "forms": _formdiv,
  8058. "click": function () {
  8059. U.MD.D.I.openApplication(str, obj, info);
  8060. }
  8061. }
  8062. break;
  8063. case "MindMap":
  8064. aTool = 3;
  8065. _iframe = $$("iframe", {
  8066. "frameborder": "no",
  8067. "border": "0",
  8068. "scrolling ": "no",
  8069. "style": {
  8070. "cssText": "border:0;width:100%;height:100%"
  8071. },
  8072. "src": "//cloud.cocorobo.cn/mind/"
  8073. })
  8074. _box.appendChild(_iframe);
  8075. _box.appendChild(_jie);
  8076. _formdiv = new U.UF.UI.form(
  8077. "思维导图",
  8078. _box, { //"/jsmind/example/demo.html"
  8079. "id": "mind" + cid + stage + task + tool,
  8080. "style": {
  8081. "width": "90%",
  8082. "height": "90%",
  8083. "overflow": 'hidden'
  8084. },
  8085. "onresize": function () { }
  8086. }, {
  8087. closecallback: function () { }
  8088. }, {
  8089. "style": {
  8090. "height": "36px"
  8091. }
  8092. }).form; //创建窗体
  8093. _taskbar = {
  8094. "id": str + _formdiv.id,
  8095. "style": {
  8096. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8097. },
  8098. "name": "思维导图",
  8099. "forms": _formdiv,
  8100. "click": function () {
  8101. U.MD.D.I.openApplication(str, obj, info);
  8102. }
  8103. }
  8104. break;
  8105. case "doc":
  8106. aTool = 6;
  8107. _iframe = $$("iframe", {
  8108. "frameborder": "no",
  8109. "border": "0",
  8110. "scrolling ": "no",
  8111. "style": {
  8112. "cssText": "border:0;width:100%;height:100%"
  8113. },
  8114. "src": "/Office/Word/WordEditArea.htm"
  8115. })
  8116. _box.appendChild(_iframe);
  8117. _box.appendChild(_jie);
  8118. _formdiv = new U.UF.UI.form(
  8119. "协同文档",
  8120. _box, {
  8121. "id": "doc" + cid + stage + task + tool,
  8122. "style": {
  8123. "width": "90%",
  8124. "height": "90%",
  8125. "overflow": 'hidden'
  8126. },
  8127. "onresize": function () { }
  8128. }, {
  8129. closecallback: function () { }
  8130. }, {
  8131. "style": {
  8132. "height": "36px"
  8133. }
  8134. }).form; //创建窗体
  8135. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8136. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8137. })
  8138. _taskbar = {
  8139. "id": str + _formdiv.id,
  8140. "style": {
  8141. "backgroundImage": "url(/img/icon/doc.png)"
  8142. },
  8143. "name": "协同文档",
  8144. "forms": _formdiv,
  8145. "click": function () {
  8146. U.MD.D.I.openApplication(str, obj, info);
  8147. }
  8148. }
  8149. break;
  8150. case "mindNetwork": //好友打开
  8151. aTool = 7;
  8152. _iframe = $$("iframe", {
  8153. "webkitallowfullscreen": "",
  8154. "mozallowfullscreen": "",
  8155. "allowfullscreen": "",
  8156. "frameborder": "no",
  8157. "border": "0",
  8158. "scrolling ": "no",
  8159. "style": {
  8160. "cssText": "border:0; width:100%; height:100%;"
  8161. },
  8162. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8163. })
  8164. _box.appendChild(_iframe);
  8165. _box.appendChild(_jie);
  8166. _formdiv = new U.UF.UI.form(
  8167. "思维网格",
  8168. _box, {
  8169. "id": "mindNetwork" + cid + stage + task + tool,
  8170. "style": {
  8171. "width": "90%",
  8172. "height": "90%",
  8173. "overflow": 'hidden'
  8174. },
  8175. "onresize": function () { }
  8176. }, {
  8177. closecallback: function () { }
  8178. }, {
  8179. "style": {
  8180. "height": "36px"
  8181. }
  8182. }).form; //创建窗体
  8183. _taskbar = {
  8184. "id": str + _formdiv.id,
  8185. "style": {
  8186. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8187. },
  8188. "name": "思维网格",
  8189. "forms": _formdiv,
  8190. "click": function () {
  8191. U.MD.D.I.openApplication(str, obj, info);
  8192. }
  8193. }
  8194. break;
  8195. case "courseDesign":
  8196. _iframe = $$("iframe", {
  8197. "webkitallowfullscreen": "",
  8198. "mozallowfullscreen": "",
  8199. "allowfullscreen": "",
  8200. "frameborder": "no",
  8201. "border": "0",
  8202. "scrolling ": "no",
  8203. "style": {
  8204. "cssText": "border:0; width:100%; height:100%;"
  8205. },
  8206. "src": "/course-design-vue"
  8207. })
  8208. _box.appendChild(_iframe);
  8209. _box.appendChild(_jie);
  8210. _formdiv = new U.UF.UI.form(
  8211. "项目设计",
  8212. _box, {
  8213. "id": "courseDesign" + cid + stage + task + tool,
  8214. "style": {
  8215. "width": "90%",
  8216. "height": "90%",
  8217. "overflow": 'hidden'
  8218. },
  8219. "onresize": function () { }
  8220. }, {
  8221. closecallback: function () { }
  8222. }, {
  8223. "style": {
  8224. "height": "36px"
  8225. }
  8226. }).form; //创建窗体
  8227. _taskbar = {
  8228. "id": str + _formdiv.id,
  8229. "style": {
  8230. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8231. },
  8232. "name": "项目设计",
  8233. "forms": _formdiv,
  8234. "click": function () {
  8235. U.MD.D.I.openApplication(str, obj, info);
  8236. }
  8237. }
  8238. break;
  8239. }
  8240. const script1 = document.createElement("script");
  8241. script1.type = "text/javascript";
  8242. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8243. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8244. const script2 = document.createElement("script");
  8245. script2.type = "text/javascript";
  8246. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8247. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8248. const script3 = document.createElement("script");
  8249. script3.type = "text/javascript";
  8250. script3.charset = "UTF-8";
  8251. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8252. const script4 = document.createElement("script");
  8253. script4.type = "text/javascript";
  8254. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8255. script4.src = window.origin + "/js/Common/jietu2E.js";
  8256. if (_iframe) {
  8257. if (str == 'doc') {
  8258. _iframe = _formdiv.querySelector('iframe')
  8259. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8260. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8261. _iframe.contentWindow.document.body.appendChild(script1);
  8262. _iframe.contentWindow.document.body.appendChild(script2);
  8263. // _iframe.contentWindow.document.body.appendChild(script3);
  8264. _iframe.contentWindow.document.body.appendChild(script4);
  8265. })
  8266. if (onloadListener) {
  8267. _iframe.contentDocument.location.reload()
  8268. } else {
  8269. _iframe.contentDocument.location.reload()
  8270. }
  8271. } else if (str == 'courseDesign') {
  8272. U.UF.DL.iframeLoad(_iframe, function () {
  8273. // _iframe.contentWindow.U.MD.O.W.load();
  8274. // _iframe.contentWindow.document.body.appendChild(script1);
  8275. _iframe.contentWindow.document.body.appendChild(script2);
  8276. _iframe.contentWindow.document.body.appendChild(script4);
  8277. })
  8278. } else if (str == 'mind') {
  8279. _iframe = _formdiv.querySelector('iframe')
  8280. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8281. //
  8282. _iframe.contentWindow.document.body.appendChild(script1);
  8283. _iframe.contentWindow.document.body.appendChild(script2);
  8284. _iframe.contentWindow.document.body.appendChild(script4);
  8285. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8286. })
  8287. if (onloadListener) {
  8288. _iframe.contentDocument.location.reload()
  8289. } else {
  8290. _iframe.contentDocument.location.reload()
  8291. }
  8292. } else if (str == 'whiteboard') {
  8293. _iframe = _formdiv.querySelector('iframe')
  8294. let onloadListener = _iframe.onload = () => {
  8295. _iframe.contentWindow.document.body.appendChild(script1);
  8296. _iframe.contentWindow.document.body.appendChild(script2);
  8297. _iframe.contentWindow.document.body.appendChild(script4);
  8298. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8299. };
  8300. // if (onloadListener) {
  8301. // try {
  8302. // _iframe.src += "?cocorobo="+new Date().getTime()
  8303. // _iframe.contentWindow.document.location.reload()
  8304. // } catch (error) {
  8305. // }
  8306. // } else {
  8307. // _iframe.contentDocument.location.reload()
  8308. // }
  8309. } else {
  8310. _iframe.onload = () => {
  8311. _iframe.contentWindow.document.body.appendChild(script1);
  8312. _iframe.contentWindow.document.body.appendChild(script2);
  8313. // _iframe.contentWindow.document.body.appendChild(script3);
  8314. _iframe.contentWindow.document.body.appendChild(script4);
  8315. };
  8316. }
  8317. _jie.onclick = async () => {
  8318. let text = ''
  8319. if (aTool == 1) {
  8320. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8321. } else if (aTool == 6) {
  8322. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8323. } else if (aTool == 3) {
  8324. text = await U.MD.D.I.getEditorContent(_iframe);
  8325. }
  8326. _loading.style.display = 'flex'
  8327. console.log(_loading);
  8328. var _ajs = _iframe.contentWindow.document.createElement("script");
  8329. _ajs.type = "text/javascript";
  8330. _ajs.innerHTML =
  8331. // 'console.log(' + _loading + ');\n' +
  8332. 'var _js = document.createElement("script");\n' +
  8333. '_js.type="text/javascript";\n' +
  8334. '_js.charset="UTF-8";\n' +
  8335. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8336. "_js.onload = function(){\n" +
  8337. ' var a = document.getElementsByTagName("img")\n' +
  8338. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8339. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8340. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8341. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8342. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8343. "beforeUpload_shishi(file," +
  8344. "'" +
  8345. _userid +
  8346. "'" +
  8347. ", " +
  8348. "'" +
  8349. _cid +
  8350. "'" +
  8351. ", " +
  8352. "'" +
  8353. _stage +
  8354. "'" +
  8355. ", " +
  8356. "'" +
  8357. _task +
  8358. "'" +
  8359. ", " +
  8360. "'" +
  8361. _tool +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. aTool +
  8370. "'" +
  8371. ", " +
  8372. "`" +
  8373. text +
  8374. "`" +
  8375. ")\n" +
  8376. " });\n" +
  8377. "}\n" +
  8378. "document.head.appendChild(_js);\n";
  8379. _iframe.contentWindow.document.head.appendChild(_ajs);
  8380. }
  8381. }
  8382. //U.MD.D.I.openClick(str);
  8383. //如果有任务栏信息
  8384. // if (_taskbar) {
  8385. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8386. // }
  8387. }
  8388. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8389. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8390. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8391. _userid = student.userid, //登录用户id
  8392. _username = student.student //用户名字
  8393. let _iframe;
  8394. let _cid = cid,
  8395. _stage = stage,
  8396. _task = task,
  8397. _tool = tool;
  8398. var _jie = $$("div", {
  8399. "style": {
  8400. "position": "absolute",
  8401. "bottom": "50px",
  8402. "right": "50px",
  8403. "zIndex": "9999",
  8404. "backgroundColor": "#2268bc",
  8405. "color": "#fff",
  8406. "padding": "12px 20px",
  8407. "cursor": "pointer",
  8408. "borderRadius": "4px",
  8409. },
  8410. "innerHTML": "提交作业"
  8411. })
  8412. let aTool = ''
  8413. let _loading = document.createElement('div')
  8414. _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;"
  8415. // _loading.id = "";
  8416. let _lchild = document.createElement('div')
  8417. let _limg = document.createElement('img')
  8418. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8419. _limg.style = "width: 26px;margin-right: 10px;"
  8420. _lchild.appendChild(_limg)
  8421. let _lspan = document.createElement('span')
  8422. _lspan.innerHTML = "上传中..."
  8423. _lchild.appendChild(_lspan)
  8424. _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%);"
  8425. _loading.appendChild(_lchild)
  8426. var _box = $$('div', {
  8427. "style": {
  8428. "position": "relative",
  8429. "width": "100%",
  8430. "height": "100%",
  8431. },
  8432. })
  8433. _box.appendChild(_loading)
  8434. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8435. switch (str) {
  8436. case "whiteboard":
  8437. aTool = 1;
  8438. _iframe = $$("iframe", {
  8439. "frameborder": "no",
  8440. "border": "0",
  8441. "scrolling ": "no",
  8442. "style": {
  8443. "cssText": "border:0;width:100%;height:100%"
  8444. },
  8445. "src": "https://beta.iwb.cocorobo.cn/"
  8446. })
  8447. _box.appendChild(_iframe);
  8448. _box.appendChild(_jie);
  8449. _formdiv = new U.UF.UI.form(
  8450. "电子白板-" + _username,
  8451. _box, {
  8452. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8453. "style": {
  8454. "width": "90%",
  8455. "height": "90%",
  8456. "overflow": 'hidden'
  8457. },
  8458. "onresize": function () { }
  8459. }, {
  8460. closecallback: function () { }
  8461. }, {
  8462. "style": {
  8463. "height": "36px"
  8464. }
  8465. }).form; //创建窗体
  8466. _taskbar = {
  8467. "id": str + _formdiv.id,
  8468. "style": {
  8469. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8470. },
  8471. "name": "电子白板",
  8472. "forms": _formdiv,
  8473. "click": function () {
  8474. U.MD.D.I.openApplication(str, obj, info);
  8475. }
  8476. }
  8477. break;
  8478. case "mind":
  8479. aTool = 3;
  8480. _iframe = $$("iframe", {
  8481. "frameborder": "no",
  8482. "border": "0",
  8483. "scrolling ": "no",
  8484. "style": {
  8485. "cssText": "border:0;width:100%;height:100%"
  8486. },
  8487. "src": "/kityminder-editor/dist/index.html"
  8488. })
  8489. _box.appendChild(_iframe);
  8490. _box.appendChild(_jie);
  8491. _formdiv = new U.UF.UI.form(
  8492. "思维导图-" + _username,
  8493. _box, { //"/jsmind/example/demo.html"
  8494. "id": "mind" + cid + stage + task + tool + _userid,
  8495. "style": {
  8496. "width": "90%",
  8497. "height": "90%",
  8498. "overflow": 'hidden'
  8499. },
  8500. "onresize": function () { }
  8501. }, {
  8502. closecallback: function () { }
  8503. }, {
  8504. "style": {
  8505. "height": "36px"
  8506. }
  8507. }).form; //创建窗体
  8508. _taskbar = {
  8509. "id": str + _formdiv.id,
  8510. "style": {
  8511. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8512. },
  8513. "name": "思维导图",
  8514. "forms": _formdiv,
  8515. "click": function () {
  8516. U.MD.D.I.openApplication(str, obj, info);
  8517. }
  8518. }
  8519. break;
  8520. case "MindMap":
  8521. aTool = 3;
  8522. _iframe = $$("iframe", {
  8523. "frameborder": "no",
  8524. "border": "0",
  8525. "scrolling ": "no",
  8526. "style": {
  8527. "cssText": "border:0;width:100%;height:100%"
  8528. },
  8529. "src": "//cloud.cocorobo.cn/mind/"
  8530. })
  8531. _box.appendChild(_iframe);
  8532. _box.appendChild(_jie);
  8533. _formdiv = new U.UF.UI.form(
  8534. "思维导图-" + _username,
  8535. _box, { //"/jsmind/example/demo.html"
  8536. "id": "mind" + cid + stage + task + tool + _userid,
  8537. "style": {
  8538. "width": "90%",
  8539. "height": "90%",
  8540. "overflow": 'hidden'
  8541. },
  8542. "onresize": function () { }
  8543. }, {
  8544. closecallback: function () { }
  8545. }, {
  8546. "style": {
  8547. "height": "36px"
  8548. }
  8549. }).form; //创建窗体
  8550. _taskbar = {
  8551. "id": str + _formdiv.id,
  8552. "style": {
  8553. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8554. },
  8555. "name": "思维导图",
  8556. "forms": _formdiv,
  8557. "click": function () {
  8558. U.MD.D.I.openApplication(str, obj, info);
  8559. }
  8560. }
  8561. break;
  8562. case "doc":
  8563. aTool = 6;
  8564. _iframe = $$("iframe", {
  8565. "frameborder": "no",
  8566. "border": "0",
  8567. "scrolling ": "no",
  8568. "style": {
  8569. "cssText": "border:0;width:100%;height:100%"
  8570. },
  8571. "src": "/Office/Word/WordEditArea.htm"
  8572. })
  8573. _box.appendChild(_iframe);
  8574. _box.appendChild(_jie);
  8575. _formdiv = new U.UF.UI.form(
  8576. "协同文档-" + _username,
  8577. _box, {
  8578. "id": "doc" + cid + stage + task + tool + _userid,
  8579. "style": {
  8580. "width": "90%",
  8581. "height": "90%",
  8582. "overflow": 'hidden'
  8583. },
  8584. "onresize": function () { }
  8585. }, {
  8586. closecallback: function () { }
  8587. }, {
  8588. "style": {
  8589. "height": "36px"
  8590. }
  8591. }).form; //创建窗体
  8592. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8593. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8594. })
  8595. _taskbar = {
  8596. "id": str + _formdiv.id,
  8597. "style": {
  8598. "backgroundImage": "url(/img/icon/doc.png)"
  8599. },
  8600. "name": "协同文档",
  8601. "forms": _formdiv,
  8602. "click": function () {
  8603. U.MD.D.I.openApplication(str, obj, info);
  8604. }
  8605. }
  8606. break;
  8607. case "mindNetwork": //好友打开
  8608. aTool = 7;
  8609. _iframe = $$("iframe", {
  8610. "webkitallowfullscreen": "",
  8611. "mozallowfullscreen": "",
  8612. "allowfullscreen": "",
  8613. "frameborder": "no",
  8614. "border": "0",
  8615. "scrolling ": "no",
  8616. "style": {
  8617. "cssText": "border:0; width:100%; height:100%;"
  8618. },
  8619. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8620. })
  8621. _box.appendChild(_iframe);
  8622. _box.appendChild(_jie);
  8623. _formdiv = new U.UF.UI.form(
  8624. "思维网格-" + _username,
  8625. _box, {
  8626. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8627. "style": {
  8628. "width": "90%",
  8629. "height": "90%",
  8630. "overflow": 'hidden'
  8631. },
  8632. "onresize": function () { }
  8633. }, {
  8634. closecallback: function () { }
  8635. }, {
  8636. "style": {
  8637. "height": "36px"
  8638. }
  8639. }).form; //创建窗体
  8640. _taskbar = {
  8641. "id": str + _formdiv.id,
  8642. "style": {
  8643. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8644. },
  8645. "name": "思维网格",
  8646. "forms": _formdiv,
  8647. "click": function () {
  8648. U.MD.D.I.openApplication(str, obj, info);
  8649. }
  8650. }
  8651. break;
  8652. case "courseDesign":
  8653. _iframe = $$("iframe", {
  8654. "webkitallowfullscreen": "",
  8655. "mozallowfullscreen": "",
  8656. "allowfullscreen": "",
  8657. "frameborder": "no",
  8658. "border": "0",
  8659. "scrolling ": "no",
  8660. "style": {
  8661. "cssText": "border:0; width:100%; height:100%;"
  8662. },
  8663. "src": "/course-design-vue"
  8664. })
  8665. _box.appendChild(_iframe);
  8666. _box.appendChild(_jie);
  8667. _formdiv = new U.UF.UI.form(
  8668. "项目设计-" + _username,
  8669. _box, {
  8670. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8671. "style": {
  8672. "width": "90%",
  8673. "height": "90%",
  8674. "overflow": 'hidden'
  8675. },
  8676. "onresize": function () { }
  8677. }, {
  8678. closecallback: function () { }
  8679. }, {
  8680. "style": {
  8681. "height": "36px"
  8682. }
  8683. }).form; //创建窗体
  8684. _taskbar = {
  8685. "id": str + _formdiv.id,
  8686. "style": {
  8687. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8688. },
  8689. "name": "项目设计",
  8690. "forms": _formdiv,
  8691. "click": function () {
  8692. U.MD.D.I.openApplication(str, obj, info);
  8693. }
  8694. }
  8695. break;
  8696. }
  8697. const script1 = document.createElement("script");
  8698. script1.type = "text/javascript";
  8699. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8700. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8701. const script2 = document.createElement("script");
  8702. script2.type = "text/javascript";
  8703. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8704. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8705. const script3 = document.createElement("script");
  8706. script3.type = "text/javascript";
  8707. script3.charset = "UTF-8";
  8708. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8709. const script4 = document.createElement("script");
  8710. script4.type = "text/javascript";
  8711. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8712. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8713. if (_iframe) {
  8714. if (str == 'doc') {
  8715. _iframe = _formdiv.querySelector('iframe')
  8716. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8717. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8718. _iframe.contentWindow.document.body.appendChild(script1);
  8719. _iframe.contentWindow.document.body.appendChild(script2);
  8720. // _iframe.contentWindow.document.body.appendChild(script3);
  8721. _iframe.contentWindow.document.body.appendChild(script4);
  8722. })
  8723. if (onloadListener) {
  8724. _iframe.contentDocument.location.reload()
  8725. } else {
  8726. _iframe.contentDocument.location.reload()
  8727. }
  8728. } else if (str == 'courseDesign') {
  8729. U.UF.DL.iframeLoad(_iframe, function () {
  8730. // _iframe.contentWindow.U.MD.O.W.load();
  8731. // _iframe.contentWindow.document.body.appendChild(script1);
  8732. _iframe.contentWindow.document.body.appendChild(script2);
  8733. _iframe.contentWindow.document.body.appendChild(script4);
  8734. })
  8735. } else if (str == 'mind') {
  8736. _iframe = _formdiv.querySelector('iframe')
  8737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8738. //
  8739. _iframe.contentWindow.document.body.appendChild(script1);
  8740. _iframe.contentWindow.document.body.appendChild(script2);
  8741. _iframe.contentWindow.document.body.appendChild(script4);
  8742. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8743. })
  8744. if (onloadListener) {
  8745. _iframe.contentDocument.location.reload()
  8746. } else {
  8747. _iframe.contentDocument.location.reload()
  8748. }
  8749. } else if (str == 'whiteboard') {
  8750. _iframe = _formdiv.querySelector('iframe')
  8751. let onloadListener = _iframe.onload = () => {
  8752. _iframe.contentWindow.document.body.appendChild(script1);
  8753. _iframe.contentWindow.document.body.appendChild(script2);
  8754. _iframe.contentWindow.document.body.appendChild(script4);
  8755. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8756. };
  8757. // if (onloadListener) {
  8758. // try {
  8759. // _iframe.src += "?cocorobo="+new Date().getTime()
  8760. // _iframe.contentWindow.document.location.reload()
  8761. // } catch (error) {
  8762. // }
  8763. // } else {
  8764. // _iframe.contentDocument.location.reload()
  8765. // }
  8766. } else {
  8767. _iframe.onload = () => {
  8768. _iframe.contentWindow.document.body.appendChild(script1);
  8769. _iframe.contentWindow.document.body.appendChild(script2);
  8770. // _iframe.contentWindow.document.body.appendChild(script3);
  8771. _iframe.contentWindow.document.body.appendChild(script4);
  8772. };
  8773. }
  8774. _jie.onclick = async () => {
  8775. let text = ''
  8776. if (aTool == 1) {
  8777. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8778. } else if (aTool == 6) {
  8779. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8780. } else if (aTool == 3) {
  8781. text = await U.MD.D.I.getEditorContent(_iframe);
  8782. }
  8783. _loading.style.display = 'flex'
  8784. console.log(_loading);
  8785. var _ajs = _iframe.contentWindow.document.createElement("script");
  8786. _ajs.type = "text/javascript";
  8787. _ajs.innerHTML =
  8788. // 'console.log(' + _loading + ');\n' +
  8789. 'var _js = document.createElement("script");\n' +
  8790. '_js.type="text/javascript";\n' +
  8791. '_js.charset="UTF-8";\n' +
  8792. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8793. "_js.onload = function(){\n" +
  8794. ' var a = document.getElementsByTagName("img")\n' +
  8795. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8796. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8797. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8798. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8799. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8800. "beforeUpload_shishi(file," +
  8801. "'" +
  8802. _userid +
  8803. "'" +
  8804. ", " +
  8805. "'" +
  8806. _cid +
  8807. "'" +
  8808. ", " +
  8809. "'" +
  8810. _stage +
  8811. "'" +
  8812. ", " +
  8813. "'" +
  8814. _task +
  8815. "'" +
  8816. ", " +
  8817. "'" +
  8818. _tool +
  8819. "'" +
  8820. ", " +
  8821. "'" +
  8822. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. aTool +
  8827. "'" +
  8828. ", " +
  8829. "`" +
  8830. text +
  8831. "`" +
  8832. ")\n" +
  8833. " });\n" +
  8834. "}\n" +
  8835. "document.head.appendChild(_js);\n";
  8836. _iframe.contentWindow.document.head.appendChild(_ajs);
  8837. }
  8838. }
  8839. }
  8840. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8841. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8842. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8843. _userid = student.userid, //登录用户id
  8844. _username = student.student //用户名字
  8845. let _iframe;
  8846. let _cid = cid,
  8847. _stage = stage,
  8848. _task = task,
  8849. _tool = tool;
  8850. var _jie = $$("div", {
  8851. "style": {
  8852. "position": "absolute",
  8853. "bottom": "50px",
  8854. "right": "50px",
  8855. "zIndex": "9999",
  8856. "backgroundColor": "#2268bc",
  8857. "color": "#fff",
  8858. "padding": "12px 20px",
  8859. "cursor": "pointer",
  8860. "borderRadius": "4px",
  8861. },
  8862. "innerHTML": "提交作业"
  8863. })
  8864. let aTool = ''
  8865. let _loading = document.createElement('div')
  8866. _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;"
  8867. // _loading.id = "";
  8868. let _lchild = document.createElement('div')
  8869. let _limg = document.createElement('img')
  8870. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8871. _limg.style = "width: 26px;margin-right: 10px;"
  8872. _lchild.appendChild(_limg)
  8873. let _lspan = document.createElement('span')
  8874. _lspan.innerHTML = "上传中..."
  8875. _lchild.appendChild(_lspan)
  8876. _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%);"
  8877. _loading.appendChild(_lchild)
  8878. var _box = $$('div', {
  8879. "style": {
  8880. "position": "relative",
  8881. "width": "100%",
  8882. "height": "100%",
  8883. },
  8884. })
  8885. _box.appendChild(_loading)
  8886. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8887. switch (str) {
  8888. case "whiteboard":
  8889. aTool = 1;
  8890. _iframe = $$("iframe", {
  8891. "frameborder": "no",
  8892. "border": "0",
  8893. "scrolling ": "no",
  8894. "style": {
  8895. "cssText": "border:0;width:100%;height:100%"
  8896. },
  8897. "src": "https://beta.iwb.cocorobo.cn/"
  8898. })
  8899. _box.appendChild(_iframe);
  8900. _box.appendChild(_jie);
  8901. _formdiv = new U.UF.UI.form(
  8902. "电子白板-" + _username,
  8903. _box, {
  8904. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8905. "style": {
  8906. "width": "90%",
  8907. "height": "90%",
  8908. "overflow": 'hidden'
  8909. },
  8910. "onresize": function () { }
  8911. }, {
  8912. closecallback: function () { }
  8913. }, {
  8914. "style": {
  8915. "height": "36px"
  8916. }
  8917. }).form; //创建窗体
  8918. _taskbar = {
  8919. "id": str + _formdiv.id,
  8920. "style": {
  8921. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8922. },
  8923. "name": "电子白板",
  8924. "forms": _formdiv,
  8925. "click": function () {
  8926. U.MD.D.I.openApplication(str, obj, info);
  8927. }
  8928. }
  8929. break;
  8930. case "mind":
  8931. aTool = 3;
  8932. _iframe = $$("iframe", {
  8933. "frameborder": "no",
  8934. "border": "0",
  8935. "scrolling ": "no",
  8936. "style": {
  8937. "cssText": "border:0;width:100%;height:100%"
  8938. },
  8939. "src": "/kityminder-editor/dist/index.html"
  8940. })
  8941. _box.appendChild(_iframe);
  8942. _box.appendChild(_jie);
  8943. _formdiv = new U.UF.UI.form(
  8944. "思维导图-" + _username,
  8945. _box, { //"/jsmind/example/demo.html"
  8946. "id": "mind" + cid + stage + task + tool + _userid,
  8947. "style": {
  8948. "width": "90%",
  8949. "height": "90%",
  8950. "overflow": 'hidden'
  8951. },
  8952. "onresize": function () { }
  8953. }, {
  8954. closecallback: function () { }
  8955. }, {
  8956. "style": {
  8957. "height": "36px"
  8958. }
  8959. }).form; //创建窗体
  8960. _taskbar = {
  8961. "id": str + _formdiv.id,
  8962. "style": {
  8963. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8964. },
  8965. "name": "思维导图",
  8966. "forms": _formdiv,
  8967. "click": function () {
  8968. U.MD.D.I.openApplication(str, obj, info);
  8969. }
  8970. }
  8971. break;
  8972. case "MindMap":
  8973. aTool = 3;
  8974. _iframe = $$("iframe", {
  8975. "frameborder": "no",
  8976. "border": "0",
  8977. "scrolling ": "no",
  8978. "style": {
  8979. "cssText": "border:0;width:100%;height:100%"
  8980. },
  8981. "src": "//cloud.cocorobo.cn/mind/"
  8982. })
  8983. _box.appendChild(_iframe);
  8984. _box.appendChild(_jie);
  8985. _formdiv = new U.UF.UI.form(
  8986. "思维导图-" + _username,
  8987. _box, { //"/jsmind/example/demo.html"
  8988. "id": "mind" + cid + stage + task + tool + _userid,
  8989. "style": {
  8990. "width": "90%",
  8991. "height": "90%",
  8992. "overflow": 'hidden'
  8993. },
  8994. "onresize": function () { }
  8995. }, {
  8996. closecallback: function () { }
  8997. }, {
  8998. "style": {
  8999. "height": "36px"
  9000. }
  9001. }).form; //创建窗体
  9002. _taskbar = {
  9003. "id": str + _formdiv.id,
  9004. "style": {
  9005. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9006. },
  9007. "name": "思维导图",
  9008. "forms": _formdiv,
  9009. "click": function () {
  9010. U.MD.D.I.openApplication(str, obj, info);
  9011. }
  9012. }
  9013. break;
  9014. case "doc":
  9015. aTool = 6;
  9016. _iframe = $$("iframe", {
  9017. "frameborder": "no",
  9018. "border": "0",
  9019. "scrolling ": "no",
  9020. "style": {
  9021. "cssText": "border:0;width:100%;height:100%"
  9022. },
  9023. "src": "/Office/Word/WordEditArea.htm"
  9024. })
  9025. _box.appendChild(_iframe);
  9026. _box.appendChild(_jie);
  9027. _formdiv = new U.UF.UI.form(
  9028. "协同文档-" + _username,
  9029. _box, {
  9030. "id": "doc" + cid + stage + task + tool + _userid,
  9031. "style": {
  9032. "width": "90%",
  9033. "height": "90%",
  9034. "overflow": 'hidden'
  9035. },
  9036. "onresize": function () { }
  9037. }, {
  9038. closecallback: function () { }
  9039. }, {
  9040. "style": {
  9041. "height": "36px"
  9042. }
  9043. }).form; //创建窗体
  9044. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9045. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9046. })
  9047. _taskbar = {
  9048. "id": str + _formdiv.id,
  9049. "style": {
  9050. "backgroundImage": "url(/img/icon/doc.png)"
  9051. },
  9052. "name": "协同文档",
  9053. "forms": _formdiv,
  9054. "click": function () {
  9055. U.MD.D.I.openApplication(str, obj, info);
  9056. }
  9057. }
  9058. break;
  9059. case "mindNetwork": //好友打开
  9060. aTool = 7;
  9061. _iframe = $$("iframe", {
  9062. "webkitallowfullscreen": "",
  9063. "mozallowfullscreen": "",
  9064. "allowfullscreen": "",
  9065. "frameborder": "no",
  9066. "border": "0",
  9067. "scrolling ": "no",
  9068. "style": {
  9069. "cssText": "border:0; width:100%; height:100%;"
  9070. },
  9071. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9072. })
  9073. _box.appendChild(_iframe);
  9074. _box.appendChild(_jie);
  9075. _formdiv = new U.UF.UI.form(
  9076. "思维网格-" + _username,
  9077. _box, {
  9078. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9079. "style": {
  9080. "width": "90%",
  9081. "height": "90%",
  9082. "overflow": 'hidden'
  9083. },
  9084. "onresize": function () { }
  9085. }, {
  9086. closecallback: function () { }
  9087. }, {
  9088. "style": {
  9089. "height": "36px"
  9090. }
  9091. }).form; //创建窗体
  9092. _taskbar = {
  9093. "id": str + _formdiv.id,
  9094. "style": {
  9095. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9096. },
  9097. "name": "思维网格",
  9098. "forms": _formdiv,
  9099. "click": function () {
  9100. U.MD.D.I.openApplication(str, obj, info);
  9101. }
  9102. }
  9103. break;
  9104. case "courseDesign":
  9105. _iframe = $$("iframe", {
  9106. "webkitallowfullscreen": "",
  9107. "mozallowfullscreen": "",
  9108. "allowfullscreen": "",
  9109. "frameborder": "no",
  9110. "border": "0",
  9111. "scrolling ": "no",
  9112. "style": {
  9113. "cssText": "border:0; width:100%; height:100%;"
  9114. },
  9115. "src": "/course-design-vue"
  9116. })
  9117. _box.appendChild(_iframe);
  9118. _box.appendChild(_jie);
  9119. _formdiv = new U.UF.UI.form(
  9120. "项目设计-" + _username,
  9121. _box, {
  9122. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9123. "style": {
  9124. "width": "90%",
  9125. "height": "90%",
  9126. "overflow": 'hidden'
  9127. },
  9128. "onresize": function () { }
  9129. }, {
  9130. closecallback: function () { }
  9131. }, {
  9132. "style": {
  9133. "height": "36px"
  9134. }
  9135. }).form; //创建窗体
  9136. _taskbar = {
  9137. "id": str + _formdiv.id,
  9138. "style": {
  9139. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9140. },
  9141. "name": "项目设计",
  9142. "forms": _formdiv,
  9143. "click": function () {
  9144. U.MD.D.I.openApplication(str, obj, info);
  9145. }
  9146. }
  9147. break;
  9148. }
  9149. const script1 = document.createElement("script");
  9150. script1.type = "text/javascript";
  9151. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9152. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9153. const script2 = document.createElement("script");
  9154. script2.type = "text/javascript";
  9155. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9156. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9157. const script3 = document.createElement("script");
  9158. script3.type = "text/javascript";
  9159. script3.charset = "UTF-8";
  9160. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9161. const script4 = document.createElement("script");
  9162. script4.type = "text/javascript";
  9163. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9164. script4.src = window.origin + "/js/Common/jietu2E.js";
  9165. if (_iframe) {
  9166. if (str == 'doc') {
  9167. _iframe = _formdiv.querySelector('iframe')
  9168. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9169. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9170. _iframe.contentWindow.document.body.appendChild(script1);
  9171. _iframe.contentWindow.document.body.appendChild(script2);
  9172. // _iframe.contentWindow.document.body.appendChild(script3);
  9173. _iframe.contentWindow.document.body.appendChild(script4);
  9174. })
  9175. if (onloadListener) {
  9176. _iframe.contentDocument.location.reload()
  9177. } else {
  9178. _iframe.contentDocument.location.reload()
  9179. }
  9180. } else if (str == 'courseDesign') {
  9181. U.UF.DL.iframeLoad(_iframe, function () {
  9182. // _iframe.contentWindow.U.MD.O.W.load();
  9183. // _iframe.contentWindow.document.body.appendChild(script1);
  9184. _iframe.contentWindow.document.body.appendChild(script2);
  9185. _iframe.contentWindow.document.body.appendChild(script4);
  9186. })
  9187. } else if (str == 'mind') {
  9188. _iframe = _formdiv.querySelector('iframe')
  9189. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9190. //
  9191. _iframe.contentWindow.document.body.appendChild(script1);
  9192. _iframe.contentWindow.document.body.appendChild(script2);
  9193. _iframe.contentWindow.document.body.appendChild(script4);
  9194. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9195. })
  9196. if (onloadListener) {
  9197. _iframe.contentDocument.location.reload()
  9198. } else {
  9199. _iframe.contentDocument.location.reload()
  9200. }
  9201. } else if (str == 'whiteboard') {
  9202. _iframe = _formdiv.querySelector('iframe')
  9203. let onloadListener = _iframe.onload = () => {
  9204. _iframe.contentWindow.document.body.appendChild(script1);
  9205. _iframe.contentWindow.document.body.appendChild(script2);
  9206. _iframe.contentWindow.document.body.appendChild(script4);
  9207. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9208. };
  9209. // if (onloadListener) {
  9210. // try {
  9211. // _iframe.src += "?cocorobo="+new Date().getTime()
  9212. // _iframe.contentWindow.document.location.reload()
  9213. // } catch (error) {
  9214. // }
  9215. // } else {
  9216. // _iframe.contentDocument.location.reload()
  9217. // }
  9218. } else {
  9219. _iframe.onload = () => {
  9220. _iframe.contentWindow.document.body.appendChild(script1);
  9221. _iframe.contentWindow.document.body.appendChild(script2);
  9222. // _iframe.contentWindow.document.body.appendChild(script3);
  9223. _iframe.contentWindow.document.body.appendChild(script4);
  9224. };
  9225. }
  9226. _jie.onclick = async () => {
  9227. let text = ''
  9228. if (aTool == 1) {
  9229. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9230. } else if (aTool == 6) {
  9231. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9232. } else if (aTool == 3) {
  9233. text = await U.MD.D.I.getEditorContent(_iframe);
  9234. }
  9235. _loading.style.display = 'flex'
  9236. console.log(_loading);
  9237. var _ajs = _iframe.contentWindow.document.createElement("script");
  9238. _ajs.type = "text/javascript";
  9239. _ajs.innerHTML =
  9240. // 'console.log(' + _loading + ');\n' +
  9241. 'var _js = document.createElement("script");\n' +
  9242. '_js.type="text/javascript";\n' +
  9243. '_js.charset="UTF-8";\n' +
  9244. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9245. "_js.onload = function(){\n" +
  9246. ' var a = document.getElementsByTagName("img")\n' +
  9247. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9248. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9249. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9250. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9251. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9252. "beforeUpload_shishi(file," +
  9253. "'" +
  9254. _userid +
  9255. "'" +
  9256. ", " +
  9257. "'" +
  9258. _cid +
  9259. "'" +
  9260. ", " +
  9261. "'" +
  9262. _stage +
  9263. "'" +
  9264. ", " +
  9265. "'" +
  9266. _task +
  9267. "'" +
  9268. ", " +
  9269. "'" +
  9270. _tool +
  9271. "'" +
  9272. ", " +
  9273. "'" +
  9274. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9275. "'" +
  9276. ", " +
  9277. "'" +
  9278. aTool +
  9279. "'" +
  9280. ", " +
  9281. "`" +
  9282. text +
  9283. "`" +
  9284. ")\n" +
  9285. " });\n" +
  9286. "}\n" +
  9287. "document.head.appendChild(_js);\n";
  9288. _iframe.contentWindow.document.head.appendChild(_ajs);
  9289. }
  9290. }
  9291. }
  9292. U.MD.D.I.getEditorContent = function (iframe) {
  9293. return new Promise((resolve, reject) => {
  9294. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9295. console.log(content);
  9296. resolve(content)
  9297. });
  9298. });
  9299. }
  9300. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9301. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9302. // if (res.value[0].length > 0) {
  9303. // // resolve(res.value[0][0].text);
  9304. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9305. // $(fileInput).val('');
  9306. // });
  9307. // }
  9308. // }, [], { "type": "GET", "withCredentials": true });
  9309. var xmlhttp;
  9310. var Mac, Sn, DeviceId
  9311. if (window.XMLHttpRequest) {
  9312. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9313. xmlhttp = new XMLHttpRequest();
  9314. } else {
  9315. // IE6, IE5 浏览器执行代码
  9316. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9317. }
  9318. xmlhttp.onreadystatechange = function () {
  9319. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9320. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9321. // resolve(res.value[0][0].text);
  9322. if (type == '2') {
  9323. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9324. } else if (type == '3') {
  9325. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9326. }
  9327. } else {
  9328. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9329. }
  9330. }
  9331. }
  9332. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9333. xmlhttp.send();
  9334. }
  9335. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9336. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9337. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9338. _userinfo = US.userInfo, //登录用户信息
  9339. _userid = US.userInfo.userid //登录用户id
  9340. let _iframe;
  9341. let _cid = cid,
  9342. _stage = stage,
  9343. _task = task,
  9344. _tool = tool;
  9345. var _jie = $$("div", {
  9346. "style": {
  9347. "position": "absolute",
  9348. "bottom": "50px",
  9349. "right": "50px",
  9350. "zIndex": "9999",
  9351. "backgroundColor": "#2268bc",
  9352. "color": "#fff",
  9353. "padding": "12px 20px",
  9354. "cursor": "pointer",
  9355. "borderRadius": "4px",
  9356. },
  9357. "innerHTML": "确认并提交"
  9358. })
  9359. let aTool = ''
  9360. let _loading = document.createElement('div')
  9361. _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;"
  9362. // _loading.id = "";
  9363. let _lchild = document.createElement('div')
  9364. let _limg = document.createElement('img')
  9365. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9366. _limg.style = "width: 26px;margin-right: 10px;"
  9367. _lchild.appendChild(_limg)
  9368. let _lspan = document.createElement('span')
  9369. _lspan.innerHTML = "上传中..."
  9370. _lchild.appendChild(_lspan)
  9371. _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%);"
  9372. _loading.appendChild(_lchild)
  9373. var _box = $$('div', {
  9374. "style": {
  9375. "position": "relative",
  9376. "width": "100%",
  9377. "height": "100%",
  9378. },
  9379. })
  9380. _box.appendChild(_loading)
  9381. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9382. switch (str) {
  9383. case "whiteboard":
  9384. aTool = 1;
  9385. _iframe = $$("iframe", {
  9386. "frameborder": "no",
  9387. "border": "0",
  9388. "scrolling ": "no",
  9389. "style": {
  9390. "cssText": "border:0;width:100%;height:100%"
  9391. },
  9392. "src": "https://beta.iwb.cocorobo.cn/"
  9393. })
  9394. _box.appendChild(_iframe);
  9395. _box.appendChild(_jie);
  9396. _formdiv = new U.UF.UI.form(
  9397. "电子白板",
  9398. _box, {
  9399. "id": "whiteboards" + cid + stage + task + tool,
  9400. "style": {
  9401. "width": "90%",
  9402. "height": "90%",
  9403. "overflow": 'hidden'
  9404. },
  9405. "onresize": function () { }
  9406. }, {
  9407. closecallback: function () { }
  9408. }, {
  9409. "style": {
  9410. "height": "36px"
  9411. }
  9412. }).form; //创建窗体
  9413. _taskbar = {
  9414. "id": str + _formdiv.id,
  9415. "style": {
  9416. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9417. },
  9418. "name": "电子白板",
  9419. "forms": _formdiv,
  9420. "click": function () {
  9421. U.MD.D.I.openApplication(str, obj, info);
  9422. }
  9423. }
  9424. break;
  9425. case "mind":
  9426. aTool = 3;
  9427. _iframe = $$("iframe", {
  9428. "frameborder": "no",
  9429. "border": "0",
  9430. "scrolling ": "no",
  9431. "style": {
  9432. "cssText": "border:0;width:100%;height:100%"
  9433. },
  9434. "src": "/kityminder-editor/dist/index.html"
  9435. });
  9436. _box.appendChild(_iframe);
  9437. _box.appendChild(_jie);
  9438. _formdiv = new U.UF.UI.form(
  9439. "思维导图",
  9440. _box, { //"/jsmind/example/demo.html"
  9441. "id": "minds" + cid + stage + task + tool,
  9442. "style": {
  9443. "width": "90%",
  9444. "height": "90%",
  9445. "overflow": 'hidden'
  9446. },
  9447. "onresize": function () { }
  9448. }, {
  9449. closecallback: function () { }
  9450. }, {
  9451. "style": {
  9452. "height": "36px"
  9453. }
  9454. }).form; //创建窗体
  9455. _taskbar = {
  9456. "id": str + _formdiv.id,
  9457. "style": {
  9458. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9459. },
  9460. "name": "思维导图",
  9461. "forms": _formdiv,
  9462. "click": function () {
  9463. U.MD.D.I.openApplication(str, obj, info);
  9464. }
  9465. }
  9466. break;
  9467. case "doc":
  9468. aTool = 6;
  9469. _iframe = $$("iframe", {
  9470. "frameborder": "no",
  9471. "border": "0",
  9472. "scrolling ": "no",
  9473. "style": {
  9474. "cssText": "border:0;width:100%;height:100%"
  9475. },
  9476. "src": "/Office/Word/WordEditArea.htm"
  9477. })
  9478. _box.appendChild(_iframe);
  9479. _box.appendChild(_jie);
  9480. _formdiv = new U.UF.UI.form(
  9481. "协同文档",
  9482. _box, {
  9483. "id": "docs" + cid + stage + task + tool,
  9484. "style": {
  9485. "width": "90%",
  9486. "height": "90%",
  9487. "overflow": 'hidden'
  9488. },
  9489. "onresize": function () { }
  9490. }, {
  9491. closecallback: function () { }
  9492. }, {
  9493. "style": {
  9494. "height": "36px"
  9495. }
  9496. }).form; //创建窗体
  9497. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9498. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9499. })
  9500. _taskbar = {
  9501. "id": str + _formdiv.id,
  9502. "style": {
  9503. "backgroundImage": "url(/img/icon/doc.png)"
  9504. },
  9505. "name": "协同文档",
  9506. "forms": _formdiv,
  9507. "click": function () {
  9508. U.MD.D.I.openApplication(str, obj, info);
  9509. }
  9510. }
  9511. break;
  9512. }
  9513. const script1 = document.createElement("script");
  9514. script1.type = "text/javascript";
  9515. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9516. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9517. const script2 = document.createElement("script");
  9518. script2.type = "text/javascript";
  9519. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9520. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9521. const script3 = document.createElement("script");
  9522. script3.type = "text/javascript";
  9523. script3.charset = "UTF-8";
  9524. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9525. const script4 = document.createElement("script");
  9526. script4.type = "text/javascript";
  9527. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9528. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9529. if (_iframe) {
  9530. if (str == 'doc') {
  9531. _iframe = _formdiv.querySelector('iframe')
  9532. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9533. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9534. _iframe.contentWindow.document.body.appendChild(script1);
  9535. _iframe.contentWindow.document.body.appendChild(script2);
  9536. // _iframe.contentWindow.document.body.appendChild(script3);
  9537. _iframe.contentWindow.document.body.appendChild(script4);
  9538. })
  9539. if (onloadListener) {
  9540. _iframe.contentDocument.location.reload()
  9541. } else {
  9542. _iframe.contentDocument.location.reload()
  9543. }
  9544. } else if (str == 'mind') {
  9545. _iframe = _formdiv.querySelector('iframe')
  9546. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9547. _iframe.contentWindow.document.body.appendChild(script1);
  9548. _iframe.contentWindow.document.body.appendChild(script2);
  9549. _iframe.contentWindow.document.body.appendChild(script4);
  9550. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9551. })
  9552. if (onloadListener) {
  9553. _iframe.contentDocument.location.reload()
  9554. } else {
  9555. _iframe.contentDocument.location.reload()
  9556. }
  9557. } else {
  9558. _iframe.onload = () => {
  9559. _iframe.contentWindow.document.body.appendChild(script1);
  9560. _iframe.contentWindow.document.body.appendChild(script2);
  9561. // _iframe.contentWindow.document.body.appendChild(script3);
  9562. _iframe.contentWindow.document.body.appendChild(script4);
  9563. };
  9564. }
  9565. _jie.onclick = async () => {
  9566. let text = ''
  9567. if (aTool == 6) {
  9568. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9569. } else if (aTool == 3) {
  9570. text = await U.MD.D.I.getEditorContent(_iframe);
  9571. }
  9572. _loading.style.display = 'flex'
  9573. console.log(_loading);
  9574. var _ajs = _iframe.contentWindow.document.createElement("script");
  9575. _ajs.type = "text/javascript";
  9576. _ajs.innerHTML =
  9577. // 'console.log(' + _loading + ');\n' +
  9578. 'var _js = document.createElement("script");\n' +
  9579. '_js.type="text/javascript";\n' +
  9580. '_js.charset="UTF-8";\n' +
  9581. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9582. "_js.onload = function(){\n" +
  9583. ' var a = document.getElementsByTagName("img")\n' +
  9584. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9585. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9586. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9587. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9588. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9589. "beforeUpload_shishi(file," +
  9590. "'" +
  9591. _userid +
  9592. "'" +
  9593. ", " +
  9594. "'" +
  9595. _cid +
  9596. "'" +
  9597. ", " +
  9598. "'" +
  9599. _stage +
  9600. "'" +
  9601. ", " +
  9602. "'" +
  9603. _task +
  9604. "'" +
  9605. ", " +
  9606. "'" +
  9607. _tool +
  9608. "'" +
  9609. ", " +
  9610. "'" +
  9611. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9612. "'" +
  9613. ", " +
  9614. "'" +
  9615. aTool +
  9616. "'" +
  9617. ", " +
  9618. "`" +
  9619. text +
  9620. "`" +
  9621. ")\n" +
  9622. " });\n" +
  9623. "}\n" +
  9624. "document.head.appendChild(_js);\n";
  9625. _iframe.contentWindow.document.head.appendChild(_ajs);
  9626. }
  9627. }
  9628. //U.MD.D.I.openClick(str);
  9629. //如果有任务栏信息
  9630. // if (_taskbar) {
  9631. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9632. // }
  9633. }
  9634. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9635. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9636. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9637. _userinfo = US.userInfo, //登录用户信息
  9638. _userid = US.userInfo.userid //登录用户id
  9639. let _iframe;
  9640. let _cid = cid,
  9641. _stage = stage,
  9642. _task = task,
  9643. _tool = tool;
  9644. var _jie = $$("div", {
  9645. "style": {
  9646. "position": "absolute",
  9647. "bottom": "50px",
  9648. "right": "50px",
  9649. "zIndex": "9999",
  9650. "backgroundColor": "#2268bc",
  9651. "color": "#fff",
  9652. "padding": "12px 20px",
  9653. "cursor": "pointer",
  9654. "borderRadius": "4px",
  9655. },
  9656. "innerHTML": "确认并提交"
  9657. })
  9658. let aTool = ''
  9659. let _loading = document.createElement('div')
  9660. _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;"
  9661. // _loading.id = "";
  9662. let _lchild = document.createElement('div')
  9663. let _limg = document.createElement('img')
  9664. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9665. _limg.style = "width: 26px;margin-right: 10px;"
  9666. _lchild.appendChild(_limg)
  9667. let _lspan = document.createElement('span')
  9668. _lspan.innerHTML = "上传中..."
  9669. _lchild.appendChild(_lspan)
  9670. _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%);"
  9671. _loading.appendChild(_lchild)
  9672. var _box = $$('div', {
  9673. "style": {
  9674. "position": "relative",
  9675. "width": "100%",
  9676. "height": "100%",
  9677. },
  9678. })
  9679. _box.appendChild(_loading)
  9680. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9681. switch (str) {
  9682. case "whiteboard":
  9683. aTool = 1;
  9684. _iframe = $$("iframe", {
  9685. "frameborder": "no",
  9686. "border": "0",
  9687. "scrolling ": "no",
  9688. "style": {
  9689. "cssText": "border:0;width:100%;height:100%"
  9690. },
  9691. "src": "https://beta.iwb.cocorobo.cn/"
  9692. })
  9693. _box.appendChild(_iframe);
  9694. _box.appendChild(_jie);
  9695. _formdiv = new U.UF.UI.form(
  9696. "电子白板",
  9697. _box, {
  9698. "id": "whiteboards" + cid + stage + task + tool,
  9699. "style": {
  9700. "width": "90%",
  9701. "height": "90%",
  9702. "overflow": 'hidden'
  9703. },
  9704. "onresize": function () { }
  9705. }, {
  9706. closecallback: function () { }
  9707. }, {
  9708. "style": {
  9709. "height": "36px"
  9710. }
  9711. }).form; //创建窗体
  9712. _taskbar = {
  9713. "id": str + _formdiv.id,
  9714. "style": {
  9715. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9716. },
  9717. "name": "电子白板",
  9718. "forms": _formdiv,
  9719. "click": function () {
  9720. U.MD.D.I.openApplication(str, obj, info);
  9721. }
  9722. }
  9723. break;
  9724. case "mind":
  9725. aTool = 3;
  9726. _iframe = $$("iframe", {
  9727. "frameborder": "no",
  9728. "border": "0",
  9729. "scrolling ": "no",
  9730. "style": {
  9731. "cssText": "border:0;width:100%;height:100%"
  9732. },
  9733. "src": "/kityminder-editor/dist/index.html"
  9734. });
  9735. _box.appendChild(_iframe);
  9736. _box.appendChild(_jie);
  9737. _formdiv = new U.UF.UI.form(
  9738. "思维导图",
  9739. _box, { //"/jsmind/example/demo.html"
  9740. "id": "minds" + cid + stage + task + tool,
  9741. "style": {
  9742. "width": "90%",
  9743. "height": "90%",
  9744. "overflow": 'hidden'
  9745. },
  9746. "onresize": function () { }
  9747. }, {
  9748. closecallback: function () { }
  9749. }, {
  9750. "style": {
  9751. "height": "36px"
  9752. }
  9753. }).form; //创建窗体
  9754. _taskbar = {
  9755. "id": str + _formdiv.id,
  9756. "style": {
  9757. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9758. },
  9759. "name": "思维导图",
  9760. "forms": _formdiv,
  9761. "click": function () {
  9762. U.MD.D.I.openApplication(str, obj, info);
  9763. }
  9764. }
  9765. break;
  9766. case "doc":
  9767. aTool = 6;
  9768. _iframe = $$("iframe", {
  9769. "frameborder": "no",
  9770. "border": "0",
  9771. "scrolling ": "no",
  9772. "style": {
  9773. "cssText": "border:0;width:100%;height:100%"
  9774. },
  9775. "src": "/Office/Word/WordEditArea.htm"
  9776. })
  9777. _box.appendChild(_iframe);
  9778. _box.appendChild(_jie);
  9779. _formdiv = new U.UF.UI.form(
  9780. "协同文档",
  9781. _box, {
  9782. "id": "docs" + cid + stage + task + tool,
  9783. "style": {
  9784. "width": "90%",
  9785. "height": "90%",
  9786. "overflow": 'hidden'
  9787. },
  9788. "onresize": function () { }
  9789. }, {
  9790. closecallback: function () { }
  9791. }, {
  9792. "style": {
  9793. "height": "36px"
  9794. }
  9795. }).form; //创建窗体
  9796. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9797. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9798. })
  9799. _taskbar = {
  9800. "id": str + _formdiv.id,
  9801. "style": {
  9802. "backgroundImage": "url(/img/icon/doc.png)"
  9803. },
  9804. "name": "协同文档",
  9805. "forms": _formdiv,
  9806. "click": function () {
  9807. U.MD.D.I.openApplication(str, obj, info);
  9808. }
  9809. }
  9810. break;
  9811. }
  9812. const script1 = document.createElement("script");
  9813. script1.type = "text/javascript";
  9814. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9815. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9816. const script2 = document.createElement("script");
  9817. script2.type = "text/javascript";
  9818. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9819. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9820. const script3 = document.createElement("script");
  9821. script3.type = "text/javascript";
  9822. script3.charset = "UTF-8";
  9823. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9824. const script4 = document.createElement("script");
  9825. script4.type = "text/javascript";
  9826. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9827. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9828. if (_iframe) {
  9829. if (str == 'doc') {
  9830. _iframe = _formdiv.querySelector('iframe')
  9831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9832. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9833. _iframe.contentWindow.document.body.appendChild(script1);
  9834. _iframe.contentWindow.document.body.appendChild(script2);
  9835. // _iframe.contentWindow.document.body.appendChild(script3);
  9836. _iframe.contentWindow.document.body.appendChild(script4);
  9837. })
  9838. if (onloadListener) {
  9839. _iframe.contentDocument.location.reload()
  9840. } else {
  9841. _iframe.contentDocument.location.reload()
  9842. }
  9843. } else if (str == 'mind') {
  9844. _iframe = _formdiv.querySelector('iframe')
  9845. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9846. _iframe.contentWindow.document.body.appendChild(script1);
  9847. _iframe.contentWindow.document.body.appendChild(script2);
  9848. _iframe.contentWindow.document.body.appendChild(script4);
  9849. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9850. })
  9851. if (onloadListener) {
  9852. _iframe.contentDocument.location.reload()
  9853. } else {
  9854. _iframe.contentDocument.location.reload()
  9855. }
  9856. } else {
  9857. _iframe.onload = () => {
  9858. _iframe.contentWindow.document.body.appendChild(script1);
  9859. _iframe.contentWindow.document.body.appendChild(script2);
  9860. // _iframe.contentWindow.document.body.appendChild(script3);
  9861. _iframe.contentWindow.document.body.appendChild(script4);
  9862. };
  9863. }
  9864. _jie.onclick = async () => {
  9865. let text = ''
  9866. if (aTool == 6) {
  9867. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9868. } else if (aTool == 3) {
  9869. text = await U.MD.D.I.getEditorContent(_iframe);
  9870. }
  9871. _loading.style.display = 'flex'
  9872. console.log(_loading);
  9873. var _ajs = _iframe.contentWindow.document.createElement("script");
  9874. _ajs.type = "text/javascript";
  9875. _ajs.innerHTML =
  9876. // 'console.log(' + _loading + ');\n' +
  9877. 'var _js = document.createElement("script");\n' +
  9878. '_js.type="text/javascript";\n' +
  9879. '_js.charset="UTF-8";\n' +
  9880. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9881. "_js.onload = function(){\n" +
  9882. ' var a = document.getElementsByTagName("img")\n' +
  9883. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9884. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9885. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9886. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9887. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9888. "beforeUpload_shishi(file," +
  9889. "'" +
  9890. _userid +
  9891. "'" +
  9892. ", " +
  9893. "'" +
  9894. _cid +
  9895. "'" +
  9896. ", " +
  9897. "'" +
  9898. _stage +
  9899. "'" +
  9900. ", " +
  9901. "'" +
  9902. _task +
  9903. "'" +
  9904. ", " +
  9905. "'" +
  9906. _tool +
  9907. "'" +
  9908. ", " +
  9909. "'" +
  9910. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9911. "'" +
  9912. ", " +
  9913. "'" +
  9914. aTool +
  9915. "'" +
  9916. ", " +
  9917. "`" +
  9918. text +
  9919. "`" +
  9920. ")\n" +
  9921. " });\n" +
  9922. "}\n" +
  9923. "document.head.appendChild(_js);\n";
  9924. _iframe.contentWindow.document.head.appendChild(_ajs);
  9925. }
  9926. }
  9927. //U.MD.D.I.openClick(str);
  9928. //如果有任务栏信息
  9929. // if (_taskbar) {
  9930. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9931. // }
  9932. }
  9933. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9934. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9935. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9936. _userinfo = US.userInfo, //登录用户信息
  9937. _userid = US.userInfo.userid //登录用户id
  9938. let _iframe;
  9939. let _cid = cid,
  9940. _stage = stage,
  9941. _task = task,
  9942. _tool = tool;
  9943. var _jie = $$("div", {
  9944. "style": {
  9945. "position": "absolute",
  9946. "bottom": "50px",
  9947. "right": "50px",
  9948. "zIndex": "9999",
  9949. "backgroundColor": "#2268bc",
  9950. "color": "#fff",
  9951. "padding": "12px 20px",
  9952. "cursor": "pointer",
  9953. "borderRadius": "4px",
  9954. },
  9955. "innerHTML": "上传模板"
  9956. })
  9957. let aTool = ''
  9958. let _loading = document.createElement('div')
  9959. _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;"
  9960. // _loading.id = "";
  9961. let _lchild = document.createElement('div')
  9962. let _limg = document.createElement('img')
  9963. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9964. _limg.style = "width: 26px;margin-right: 10px;"
  9965. _lchild.appendChild(_limg)
  9966. let _lspan = document.createElement('span')
  9967. _lspan.innerHTML = "上传中..."
  9968. _lchild.appendChild(_lspan)
  9969. _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%);"
  9970. _loading.appendChild(_lchild)
  9971. var _box = $$('div', {
  9972. "style": {
  9973. "position": "relative",
  9974. "width": "100%",
  9975. "height": "100%",
  9976. },
  9977. })
  9978. _box.appendChild(_loading)
  9979. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9980. switch (str) {
  9981. case "whiteboard":
  9982. aTool = 1;
  9983. _iframe = $$("iframe", {
  9984. "frameborder": "no",
  9985. "border": "0",
  9986. "scrolling ": "no",
  9987. "style": {
  9988. "cssText": "border:0;width:100%;height:100%"
  9989. },
  9990. "src": "https://beta.iwb.cocorobo.cn/"
  9991. })
  9992. _box.appendChild(_iframe);
  9993. _box.appendChild(_jie);
  9994. _formdiv = new U.UF.UI.form(
  9995. "电子白板",
  9996. _box, {
  9997. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9998. "style": {
  9999. "width": "90%",
  10000. "height": "90%",
  10001. "overflow": 'hidden'
  10002. },
  10003. "onresize": function () { }
  10004. }, {
  10005. closecallback: function () { }
  10006. }, {
  10007. "style": {
  10008. "height": "36px"
  10009. }
  10010. }).form; //创建窗体
  10011. _taskbar = {
  10012. "id": str + _formdiv.id,
  10013. "style": {
  10014. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10015. },
  10016. "name": "电子白板",
  10017. "forms": _formdiv,
  10018. "click": function () {
  10019. U.MD.D.I.openApplication(str, obj, info);
  10020. }
  10021. }
  10022. break;
  10023. case "mind":
  10024. aTool = 3;
  10025. _iframe = $$("iframe", {
  10026. "frameborder": "no",
  10027. "border": "0",
  10028. "scrolling ": "no",
  10029. "style": {
  10030. "cssText": "border:0;width:100%;height:100%"
  10031. },
  10032. "src": "/kityminder-editor/dist/index.html"
  10033. });
  10034. _box.appendChild(_iframe);
  10035. _box.appendChild(_jie);
  10036. _formdiv = new U.UF.UI.form(
  10037. "思维导图",
  10038. _box, { //"/jsmind/example/demo.html"
  10039. "id": "minds_Yu" + cid + stage + task + tool,
  10040. "style": {
  10041. "width": "90%",
  10042. "height": "90%",
  10043. "overflow": 'hidden'
  10044. },
  10045. "onresize": function () { }
  10046. }, {
  10047. closecallback: function () { }
  10048. }, {
  10049. "style": {
  10050. "height": "36px"
  10051. }
  10052. }).form; //创建窗体
  10053. _taskbar = {
  10054. "id": str + _formdiv.id,
  10055. "style": {
  10056. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10057. },
  10058. "name": "思维导图",
  10059. "forms": _formdiv,
  10060. "click": function () {
  10061. U.MD.D.I.openApplication(str, obj, info);
  10062. }
  10063. }
  10064. break;
  10065. case "doc":
  10066. aTool = 6;
  10067. _iframe = $$("iframe", {
  10068. "frameborder": "no",
  10069. "border": "0",
  10070. "scrolling ": "no",
  10071. "style": {
  10072. "cssText": "border:0;width:100%;height:100%"
  10073. },
  10074. "src": "/Office/Word/WordEditArea.htm"
  10075. })
  10076. _box.appendChild(_iframe);
  10077. _box.appendChild(_jie);
  10078. _formdiv = new U.UF.UI.form(
  10079. "协同文档",
  10080. _box, {
  10081. "id": "docs_Yu" + cid + stage + task + tool,
  10082. "style": {
  10083. "width": "90%",
  10084. "height": "90%",
  10085. "overflow": 'hidden'
  10086. },
  10087. "onresize": function () { }
  10088. }, {
  10089. closecallback: function () { }
  10090. }, {
  10091. "style": {
  10092. "height": "36px"
  10093. }
  10094. }).form; //创建窗体
  10095. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10096. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10097. })
  10098. _taskbar = {
  10099. "id": str + _formdiv.id,
  10100. "style": {
  10101. "backgroundImage": "url(/img/icon/doc.png)"
  10102. },
  10103. "name": "协同文档",
  10104. "forms": _formdiv,
  10105. "click": function () {
  10106. U.MD.D.I.openApplication(str, obj, info);
  10107. }
  10108. }
  10109. break;
  10110. case "CocoPi":
  10111. aTool = 57;
  10112. _iframe = $$("iframe", {
  10113. "allowpaymentrequest": "allowpaymentrequest",
  10114. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10115. "webkitallowfullscreen": "",
  10116. "mozallowfullscreen": "",
  10117. "frameborder": "no",
  10118. "border": "0",
  10119. "scrolling ": "no",
  10120. "style": {
  10121. "cssText": "border:0;width:100%;height:100%"
  10122. },
  10123. "src": "https://pi.cocorobo.cn/"
  10124. })
  10125. _box.appendChild(_iframe);
  10126. _box.appendChild(_jie);
  10127. _formdiv = new U.UF.UI.form(
  10128. "CocoPi",
  10129. _box, {
  10130. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10131. "style": {
  10132. "width": "90%",
  10133. "height": "90%",
  10134. "overflow": 'hidden'
  10135. },
  10136. "onresize": function () { }
  10137. }, {
  10138. closecallback: function () { }
  10139. }, {
  10140. "style": {
  10141. "height": "36px"
  10142. }
  10143. }).form; //创建窗体
  10144. _taskbar = {
  10145. "id": str + _formdiv.id,
  10146. "style": {
  10147. "backgroundImage": "url(/img/icon/cocopi.png)"
  10148. },
  10149. "name": "CocoPi",
  10150. "forms": _formdiv,
  10151. "click": function () {
  10152. U.MD.D.I.openApplication(str, obj, info);
  10153. }
  10154. }
  10155. break;
  10156. }
  10157. if (_iframe) {
  10158. if (str == 'doc') {
  10159. _iframe = _formdiv.querySelector('iframe')
  10160. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10161. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10162. })
  10163. if (onloadListener) {
  10164. _iframe.contentDocument.location.reload()
  10165. } else {
  10166. _iframe.contentDocument.location.reload()
  10167. }
  10168. } else if (str == 'mind') {
  10169. _iframe = _formdiv.querySelector('iframe')
  10170. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10171. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10172. })
  10173. if (onloadListener) {
  10174. _iframe.contentDocument.location.reload()
  10175. } else {
  10176. _iframe.contentDocument.location.reload()
  10177. }
  10178. } else if (str == 'whiteboard') {
  10179. _iframe = _formdiv.querySelector('iframe')
  10180. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10181. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10182. })
  10183. // if (onloadListener) {
  10184. // try {
  10185. // _iframe.src += "?cocorobo="+new Date().getTime()
  10186. // _iframe.contentWindow.document.location.reload()
  10187. // } catch (error) {
  10188. // }
  10189. // } else {
  10190. // _iframe.contentDocument.location.reload()
  10191. // }
  10192. } else if (str == 'CocoPi') {
  10193. _iframe = _formdiv.querySelector('iframe')
  10194. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10195. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10196. })
  10197. if (onloadListener) {
  10198. _iframe.contentDocument.location.reload()
  10199. } else {
  10200. _iframe.contentDocument.location.reload()
  10201. }
  10202. } else {
  10203. _iframe.onload = () => { };
  10204. }
  10205. _jie.onclick = async () => {
  10206. let text = ''
  10207. let type = '2'
  10208. if (aTool == 1) {
  10209. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10210. type = '3'
  10211. } else if (aTool == 6) {
  10212. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10213. type = '1'
  10214. } else if (aTool == 3) {
  10215. text = await U.MD.D.I.getEditorContent(_iframe);
  10216. type = '2'
  10217. } else if (aTool == 57) {
  10218. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10219. type = '4'
  10220. }
  10221. _loading.style.display = 'flex'
  10222. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10223. }
  10224. }
  10225. //U.MD.D.I.openClick(str);
  10226. //如果有任务栏信息
  10227. // if (_taskbar) {
  10228. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10229. // }
  10230. }
  10231. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10232. var xmlhttp;
  10233. var Mac, Sn, DeviceId
  10234. if (window.XMLHttpRequest) {
  10235. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10236. xmlhttp = new XMLHttpRequest();
  10237. } else {
  10238. // IE6, IE5 浏览器执行代码
  10239. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10240. }
  10241. xmlhttp.onreadystatechange = function () {
  10242. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10243. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10244. // resolve(res.value[0][0].text);
  10245. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10246. }
  10247. }
  10248. }
  10249. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10250. xmlhttp.send();
  10251. }
  10252. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10253. var xmlhttp;
  10254. var Mac, Sn, DeviceId
  10255. if (window.XMLHttpRequest) {
  10256. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10257. xmlhttp = new XMLHttpRequest();
  10258. } else {
  10259. // IE6, IE5 浏览器执行代码
  10260. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10261. }
  10262. xmlhttp.onreadystatechange = function () {
  10263. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10264. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10265. // resolve(res.value[0][0].text);
  10266. if (type == '2') {
  10267. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10268. } else if (type == '3') {
  10269. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10270. } else if (type == '4') {
  10271. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10272. }
  10273. } else {
  10274. if (type == '2') {
  10275. iframe.contentWindow.editor.minder.importData('json', '')
  10276. } else if (type == '3') {
  10277. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10278. } else if (type == '4') {
  10279. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10280. }
  10281. }
  10282. }
  10283. }
  10284. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10285. xmlhttp.send();
  10286. }
  10287. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10288. var xmlhttp;
  10289. var Mac, Sn, DeviceId
  10290. if (window.XMLHttpRequest) {
  10291. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10292. xmlhttp = new XMLHttpRequest();
  10293. } else {
  10294. // IE6, IE5 浏览器执行代码
  10295. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10296. }
  10297. xmlhttp.onreadystatechange = function () {
  10298. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10299. if (xmlhttp.response) {
  10300. // resolve(res.value[0][0].text);
  10301. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10302. // $(fileInput).val('');
  10303. // });
  10304. span.innerHTML = '上传成功'
  10305. setTimeout(() => {
  10306. loading.style.display = 'none'
  10307. }, 1000);
  10308. }
  10309. }
  10310. }
  10311. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10312. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10313. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10314. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10315. // 设置请求头,表示请求体的编码格式
  10316. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10317. // 设置请求体,使用url-encoded格式的数据
  10318. }
  10319. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10320. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10321. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10322. _userinfo = US.userInfo, //登录用户信息
  10323. _userid = US.userInfo.userid //登录用户id
  10324. let _iframe;
  10325. let _cid = cid,
  10326. _stage = stage,
  10327. _task = task,
  10328. _tool = tool;
  10329. var _jie = $$("div", {
  10330. "style": {
  10331. "position": "absolute",
  10332. "bottom": "50px",
  10333. "right": "50px",
  10334. "zIndex": "9999",
  10335. "backgroundColor": "#2268bc",
  10336. "color": "#fff",
  10337. "padding": "12px 20px",
  10338. "cursor": "pointer",
  10339. "borderRadius": "4px",
  10340. },
  10341. "innerHTML": "提交作业"
  10342. })
  10343. let aTool = ''
  10344. let _loading = document.createElement('div')
  10345. _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;"
  10346. // _loading.id = "";
  10347. let _lchild = document.createElement('div')
  10348. let _limg = document.createElement('img')
  10349. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10350. _limg.style = "width: 26px;margin-right: 10px;"
  10351. _lchild.appendChild(_limg)
  10352. let _lspan = document.createElement('span')
  10353. _lspan.innerHTML = "上传中..."
  10354. _lchild.appendChild(_lspan)
  10355. _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%);"
  10356. _loading.appendChild(_lchild)
  10357. var _box = $$('div', {
  10358. "style": {
  10359. "position": "relative",
  10360. "width": "100%",
  10361. "height": "100%",
  10362. },
  10363. })
  10364. _box.appendChild(_loading)
  10365. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10366. switch (str) {
  10367. case "CocoPi":
  10368. aTool = 57;
  10369. _iframe = $$("iframe", {
  10370. "allowpaymentrequest": "allowpaymentrequest",
  10371. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10372. "webkitallowfullscreen": "",
  10373. "mozallowfullscreen": "",
  10374. "frameborder": "no",
  10375. "border": "0",
  10376. "scrolling ": "no",
  10377. "style": {
  10378. "cssText": "border:0;width:100%;height:100%"
  10379. },
  10380. "src": "https://pi.cocorobo.cn/"
  10381. })
  10382. _box.appendChild(_iframe);
  10383. _box.appendChild(_jie);
  10384. _formdiv = new U.UF.UI.form(
  10385. "CocoPi",
  10386. _box, {
  10387. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10388. "style": {
  10389. "width": "90%",
  10390. "height": "90%",
  10391. "overflow": 'hidden'
  10392. },
  10393. "onresize": function () { }
  10394. }, {
  10395. closecallback: function () { }
  10396. }, {
  10397. "style": {
  10398. "height": "36px"
  10399. }
  10400. }).form; //创建窗体
  10401. _taskbar = {
  10402. "id": str + _formdiv.id,
  10403. "style": {
  10404. "backgroundImage": "url(/img/icon/cocopi.png)"
  10405. },
  10406. "name": "CocoPi",
  10407. "forms": _formdiv,
  10408. "click": function () {
  10409. U.MD.D.I.openApplication(str, obj, info);
  10410. }
  10411. }
  10412. break;
  10413. }
  10414. if (_iframe) {
  10415. if (str == 'CocoPi') {
  10416. _iframe = _formdiv.querySelector('iframe')
  10417. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10418. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10419. })
  10420. if (onloadListener) {
  10421. _iframe.contentDocument.location.reload()
  10422. } else {
  10423. _iframe.contentDocument.location.reload()
  10424. }
  10425. }
  10426. _jie.onclick = async () => {
  10427. let text = ''
  10428. if (aTool == 57) {
  10429. text = _iframe.contentWindow.getLoadXmlStr()
  10430. }
  10431. _loading.style.display = 'flex'
  10432. console.log(_loading);
  10433. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10434. _loading.style.display = 'none'
  10435. let _div = document.createElement('div')
  10436. _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;"
  10437. let _inner = document.createElement('div')
  10438. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10439. _inner.innerHTML = "上传成功"
  10440. _div.appendChild(_inner)
  10441. _iframe.contentWindow.window.document.body.appendChild(_div)
  10442. _div.onclick = () => {
  10443. _iframe.contentWindow.window.document.body.removeChild(_div)
  10444. }
  10445. setTimeout(() => {
  10446. _iframe.contentWindow.window.document.body.removeChild(_div)
  10447. }, 1000);
  10448. }, [], { "type": "POST", "withCredentials": true });
  10449. }
  10450. }
  10451. }
  10452. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10453. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10454. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10455. _userid = student.userid, //登录用户id
  10456. _username = student.student //用户名字
  10457. let _iframe;
  10458. let _cid = cid,
  10459. _stage = stage,
  10460. _task = task,
  10461. _tool = tool;
  10462. var _jie = $$("div", {
  10463. "style": {
  10464. "position": "absolute",
  10465. "bottom": "50px",
  10466. "right": "50px",
  10467. "zIndex": "9999",
  10468. "backgroundColor": "#2268bc",
  10469. "color": "#fff",
  10470. "padding": "12px 20px",
  10471. "cursor": "pointer",
  10472. "borderRadius": "4px",
  10473. },
  10474. "innerHTML": "提交作业"
  10475. })
  10476. let aTool = ''
  10477. let _loading = document.createElement('div')
  10478. _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;"
  10479. // _loading.id = "";
  10480. let _lchild = document.createElement('div')
  10481. let _limg = document.createElement('img')
  10482. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10483. _limg.style = "width: 26px;margin-right: 10px;"
  10484. _lchild.appendChild(_limg)
  10485. let _lspan = document.createElement('span')
  10486. _lspan.innerHTML = "上传中..."
  10487. _lchild.appendChild(_lspan)
  10488. _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%);"
  10489. _loading.appendChild(_lchild)
  10490. var _box = $$('div', {
  10491. "style": {
  10492. "position": "relative",
  10493. "width": "100%",
  10494. "height": "100%",
  10495. },
  10496. })
  10497. _box.appendChild(_loading)
  10498. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10499. switch (str) {
  10500. case "CocoPi":
  10501. aTool = 57;
  10502. _iframe = $$("iframe", {
  10503. "allowpaymentrequest": "allowpaymentrequest",
  10504. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10505. "webkitallowfullscreen": "",
  10506. "mozallowfullscreen": "",
  10507. "frameborder": "no",
  10508. "border": "0",
  10509. "scrolling ": "no",
  10510. "style": {
  10511. "cssText": "border:0;width:100%;height:100%"
  10512. },
  10513. "src": "https://pi.cocorobo.cn/"
  10514. })
  10515. _box.appendChild(_iframe);
  10516. _box.appendChild(_jie);
  10517. _formdiv = new U.UF.UI.form(
  10518. "CocoPi-" + _username,
  10519. _box, {
  10520. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10521. "style": {
  10522. "width": "90%",
  10523. "height": "90%",
  10524. "overflow": 'hidden'
  10525. },
  10526. "onresize": function () { }
  10527. }, {
  10528. closecallback: function () { }
  10529. }, {
  10530. "style": {
  10531. "height": "36px"
  10532. }
  10533. }).form; //创建窗体
  10534. _taskbar = {
  10535. "id": str + _formdiv.id,
  10536. "style": {
  10537. "backgroundImage": "url(/img/icon/cocopi.png)"
  10538. },
  10539. "name": "CocoPi",
  10540. "forms": _formdiv,
  10541. "click": function () {
  10542. U.MD.D.I.openApplication(str, obj, info);
  10543. }
  10544. }
  10545. break;
  10546. }
  10547. if (_iframe) {
  10548. if (str == 'CocoPi') {
  10549. _iframe = _formdiv.querySelector('iframe')
  10550. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10551. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10552. })
  10553. if (onloadListener) {
  10554. _iframe.contentDocument.location.reload()
  10555. } else {
  10556. _iframe.contentDocument.location.reload()
  10557. }
  10558. }
  10559. _jie.onclick = async () => {
  10560. let text = ''
  10561. if (aTool == 57) {
  10562. text = _iframe.contentWindow.getLoadXmlStr()
  10563. }
  10564. _loading.style.display = 'flex'
  10565. console.log(_loading);
  10566. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10567. _loading.style.display = 'none'
  10568. let _div = document.createElement('div')
  10569. _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;"
  10570. let _inner = document.createElement('div')
  10571. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10572. _inner.innerHTML = "上传成功"
  10573. _div.appendChild(_inner)
  10574. _iframe.contentWindow.window.document.body.appendChild(_div)
  10575. _div.onclick = () => {
  10576. _iframe.contentWindow.window.document.body.removeChild(_div)
  10577. }
  10578. setTimeout(() => {
  10579. _iframe.contentWindow.window.document.body.removeChild(_div)
  10580. }, 1000);
  10581. }, [], { "type": "POST", "withCredentials": true });
  10582. }
  10583. }
  10584. }
  10585. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10586. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10587. if (res.value[0].length > 0) {
  10588. if (atool == 57) {
  10589. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10590. }
  10591. } else {
  10592. if (atool == 57) {
  10593. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10594. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10595. }
  10596. }
  10597. }, [], { "type": "POST", "withCredentials": true });
  10598. }