DeskTop.js 712 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. ];
  741. //hk
  742. U.MD.D.I.hkaceteacherDeskIcon = [
  743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  749. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  750. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  751. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  752. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  753. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  754. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  755. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  756. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  757. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  759. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  760. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  761. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  762. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  763. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  764. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  765. ];
  766. //hk
  767. U.MD.D.I.hkaceStudentDeskIcon = [
  768. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  770. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  771. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  772. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //香海正覺蓮社佛教正覺中學
  776. U.MD.D.I.hkZJLSteacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  784. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  790. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  791. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  792. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  793. ];
  794. //香海正覺蓮社佛教正覺中學
  795. U.MD.D.I.hkZJLSStudentDeskIcon = [
  796. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  797. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  798. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //云海
  802. U.MD.D.I.yunhaiTeacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  810. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  811. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  812. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  813. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  814. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  815. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  816. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  819. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  820. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  821. ];
  822. //福田
  823. U.MD.D.I.heyuanTeacherDeskIcon = [
  824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  828. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  829. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  830. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  831. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  833. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  834. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  835. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  836. ];
  837. //福田
  838. U.MD.D.I.heyuanAdminDeskIcon = [
  839. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  840. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  841. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  842. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  843. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  844. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  845. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  846. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  847. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  848. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  849. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  850. ];
  851. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  852. U.MD.D.I.szherTeacherDeskIcon = [
  853. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  854. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  855. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  856. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  857. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  858. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  859. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  861. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  863. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  864. ];
  865. //dsei
  866. U.MD.D.I.dseiTeacherDeskIcon = [
  867. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  868. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  869. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  870. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  871. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  872. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  876. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  877. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  878. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  879. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  880. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  881. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  882. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  883. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  884. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  885. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  886. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  887. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  888. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  889. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  890. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  891. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  892. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  893. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  894. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  895. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  896. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  897. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  898. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  899. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  900. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  901. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  902. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  903. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  904. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  907. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  908. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  909. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  910. ];
  911. //dsei
  912. U.MD.D.I.dseiAdminDeskIcon = [
  913. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  914. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  915. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  916. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  917. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  920. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  921. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  922. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  923. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  924. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  925. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  926. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  927. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  928. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  929. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  930. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  931. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  932. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  933. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  934. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  935. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  936. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  937. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  938. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  939. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  940. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  941. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  942. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  943. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  944. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  945. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  946. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  947. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  948. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  949. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  950. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  951. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  953. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  954. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  955. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  956. ];
  957. //dsei
  958. U.MD.D.I.dseiStudentDeskIcon = [
  959. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  960. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  961. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  962. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  965. ];
  966. //未来教育基地
  967. U.MD.D.I.szjkyTeacherDeskIcon = [
  968. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  969. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  970. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  971. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  972. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  973. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  974. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  975. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  978. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  979. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  980. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  981. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  982. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  983. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  984. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  985. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  986. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  987. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  988. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  989. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  990. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  991. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  992. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  993. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  994. ];
  995. //未来教育基地
  996. U.MD.D.I.szjkyAdminDeskIcon = [
  997. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  998. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1001. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1002. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1003. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1004. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1005. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1006. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1007. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1008. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1009. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1010. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1013. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1016. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1017. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1018. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1019. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1020. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1021. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1022. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1023. ];
  1024. //未来教育基地
  1025. U.MD.D.I.szjkyStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1031. ];
  1032. //成华教育局
  1033. U.MD.D.I.chjyjTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1039. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1040. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1041. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1042. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1043. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1044. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1045. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //成华教育局chjyj
  1050. U.MD.D.I.chjyjAdminDeskIcon = [
  1051. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1052. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1056. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1057. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1058. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1059. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1060. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1061. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1062. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1063. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1064. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //成华教育局chjyj
  1068. U.MD.D.I.chjyjStudentDeskIcon = [
  1069. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1070. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1071. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. ];
  1074. //tpc
  1075. U.MD.D.I.tpcStudentDeskIcon = [
  1076. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1077. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1078. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1079. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1080. ];
  1081. //tpc
  1082. U.MD.D.I.tpcTeacherDeskIcon = [
  1083. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1084. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1085. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1086. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1088. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1089. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1090. ];
  1091. //tpc
  1092. U.MD.D.I.tpcAdminDeskIcon = [
  1093. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1094. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1099. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1100. ];
  1101. //THU-IOE
  1102. U.MD.D.I.thuioeTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1113. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1114. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1115. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1116. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1117. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1118. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1119. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1120. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1121. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1122. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1123. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1124. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1125. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1127. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1128. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1129. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1130. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1131. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1132. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1133. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1134. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1135. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1136. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1137. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1138. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1140. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1141. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1142. ];
  1143. //THU-IOE
  1144. U.MD.D.I.thuioeStudentDeskIcon = [
  1145. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1146. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1147. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1148. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1149. ];
  1150. //jccssyl
  1151. U.MD.D.I.jccssylTeacherDeskIcon = [
  1152. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1153. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1154. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1156. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1157. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1158. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1159. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1160. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1161. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1162. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1163. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1164. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1165. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1166. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1167. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1168. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1169. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1170. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1171. ];
  1172. //jccssyl
  1173. U.MD.D.I.jccssylStudentDeskIcon = [
  1174. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1175. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1176. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1177. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1178. ];
  1179. //cale
  1180. U.MD.D.I.caleTeacherDeskIcon = [
  1181. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1182. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1183. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1184. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1185. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1186. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1187. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1188. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1194. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1195. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1196. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1197. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1198. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1199. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1200. ];
  1201. //cale
  1202. U.MD.D.I.caleStudentDeskIcon = [
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1205. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1206. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1210. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1211. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1212. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1213. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1214. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1215. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1216. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1217. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1218. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1220. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1221. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1222. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1223. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1224. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1225. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1226. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1227. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1228. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1229. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1230. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1231. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1232. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1233. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1234. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1235. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1236. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1237. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1238. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1239. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1240. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1241. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1242. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1243. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1244. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1245. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1247. ];
  1248. //lqwmsgzs
  1249. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1250. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. ];
  1255. //盐田区幼儿园
  1256. U.MD.D.I.ytyTeacherDeskIcon = [
  1257. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1258. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1259. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1263. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1264. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. ];
  1271. //盐田区幼儿园
  1272. U.MD.D.I.ytyStudentDeskIcon = [
  1273. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1274. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1275. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiAdminDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiStudentDeskIcon = [
  1331. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizteacherDeskIcon = [
  1338. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1339. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1340. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1341. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1345. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1346. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1347. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1348. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1349. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1350. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1351. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1355. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1356. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1357. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1358. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1359. ];
  1360. //cocobiz
  1361. U.MD.D.I.cocobizStudentDeskIcon = [
  1362. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1364. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1365. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1366. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1371. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1372. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1374. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1375. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1376. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1377. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1378. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1379. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1380. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1381. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1382. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1383. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1384. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1390. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1391. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1392. ];
  1393. //xxzjky
  1394. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1399. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1401. ];
  1402. //nsfx
  1403. U.MD.D.I.nsfxTeacherDeskIcon = [
  1404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1406. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1407. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1408. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1411. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1412. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1413. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1414. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1419. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1420. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. ];
  1423. //nsfx
  1424. U.MD.D.I.nsfxStudentDeskIcon = [
  1425. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1426. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1427. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1428. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1429. ];
  1430. //stia
  1431. U.MD.D.I.stiaTeacherDeskIcon = [
  1432. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1433. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1434. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1435. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1436. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1439. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1441. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1442. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1443. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1445. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1446. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1447. ];
  1448. //stia
  1449. U.MD.D.I.stiaStudentDeskIcon = [
  1450. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1451. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1452. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. ];
  1455. //szdjg
  1456. U.MD.D.I.szdjgTeacherDeskIcon = [
  1457. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1458. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. ];
  1460. //szdjg
  1461. U.MD.D.I.szdjgStudentDeskIcon = [
  1462. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1465. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. ];
  1467. //010607
  1468. U.MD.D.I.x010607TeacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1477. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010607
  1486. U.MD.D.I.x010607StudentDeskIcon = [
  1487. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //010608
  1493. U.MD.D.I.x010608TeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1502. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1503. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1504. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1505. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1506. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1507. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1508. ];
  1509. //010608
  1510. U.MD.D.I.x010608StudentDeskIcon = [
  1511. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1515. ];
  1516. //xhly
  1517. U.MD.D.I.xhlyTeacherDeskIcon = [
  1518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1519. ];
  1520. //010608
  1521. U.MD.D.I.xhlyStudentDeskIcon = [
  1522. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. ];
  1524. //北师大
  1525. U.MD.D.I.BSDNSteacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1534. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1536. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1537. ];
  1538. //北师大
  1539. U.MD.D.I.BSDNSstudentDeskIcon = [
  1540. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. ];
  1545. //CUHK_EDU
  1546. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1547. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1548. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1550. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1551. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1554. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1555. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1557. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1558. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1561. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1562. ];
  1563. //CUHK_EDU
  1564. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1569. ];
  1570. //010503
  1571. U.MD.D.I.x010503TeacherDeskIcon = [
  1572. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1573. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1575. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1576. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1580. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1581. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1582. ];
  1583. //010503
  1584. U.MD.D.I.x010503StudentDeskIcon = [
  1585. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1586. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1587. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1589. ];
  1590. //SPROUT Lab
  1591. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1600. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1601. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1602. ];
  1603. //SPROUT Lab
  1604. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1605. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1606. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1609. ];
  1610. //010204
  1611. U.MD.D.I.x010204TeacherDeskIcon = [
  1612. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1613. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. ];
  1615. //010204
  1616. U.MD.D.I.x010204StudentDeskIcon = [
  1617. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1621. ];
  1622. //trail
  1623. U.MD.D.I.trailTeacherDeskIcon = [
  1624. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1627. ];
  1628. //trail
  1629. U.MD.D.I.trailStudentDeskIcon = [
  1630. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1631. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1632. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1634. ];
  1635. //trial
  1636. U.MD.D.I.trialTeacherDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1640. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1644. ];
  1645. //trial
  1646. U.MD.D.I.trialStudentDeskIcon = [
  1647. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1650. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1651. ];
  1652. //010504
  1653. U.MD.D.I.x010504TeacherDeskIcon = [
  1654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1656. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1657. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1662. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1665. ];
  1666. //010504
  1667. U.MD.D.I.x010504StudentDeskIcon = [
  1668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1670. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. ];
  1673. //010505
  1674. U.MD.D.I.x010505TeacherDeskIcon = [
  1675. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1676. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1677. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1685. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1686. ];
  1687. //010505
  1688. U.MD.D.I.x010505StudentDeskIcon = [
  1689. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1692. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //SCNUET
  1695. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1698. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1701. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1702. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1706. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1707. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1708. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1709. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1710. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1711. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1713. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1717. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1718. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1719. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1720. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1721. ];
  1722. //SCNUET
  1723. U.MD.D.I.SCNUETAdminDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1729. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1730. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1731. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1732. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1733. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1734. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1735. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1736. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1737. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1738. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1741. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1742. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1743. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1744. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1745. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1746. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1747. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1748. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1749. ];
  1750. //SCNUET
  1751. U.MD.D.I.SCNUETStudentDeskIcon = [
  1752. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1754. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1756. ];
  1757. //x020201
  1758. U.MD.D.I.x020201TeacherDeskIcon = [
  1759. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1760. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1769. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1770. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1773. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1774. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1775. ];
  1776. //x020201
  1777. U.MD.D.I.x020201AdminDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1782. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1783. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1784. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1785. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1786. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1790. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1791. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1792. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1793. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1794. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1795. ];
  1796. //020201
  1797. U.MD.D.I.x020201StudentDeskIcon = [
  1798. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1799. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1801. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1802. ];
  1803. //010611
  1804. U.MD.D.I.x010611TeacherDeskIcon = [
  1805. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1806. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1807. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1808. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1811. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1812. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1813. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1814. ];
  1815. //010611
  1816. U.MD.D.I.x010611StudentDeskIcon = [
  1817. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1819. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1821. ];
  1822. //010612
  1823. U.MD.D.I.x010612TeacherDeskIcon = [
  1824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1826. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1827. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1832. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1833. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1834. ];
  1835. //010612
  1836. U.MD.D.I.x010612StudentDeskIcon = [
  1837. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1840. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1841. ];
  1842. //tianyuan
  1843. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1844. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1845. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1847. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1848. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1853. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1854. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1855. ];
  1856. //010611
  1857. U.MD.D.I.tianyuanStudentDeskIcon = [
  1858. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. ];
  1863. //320101
  1864. U.MD.D.I.x320101TeacherDeskIcon = [
  1865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1867. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1868. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1869. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1870. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1899. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1900. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1901. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1902. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1903. ];
  1904. //320101
  1905. U.MD.D.I.x320101StudentDeskIcon = [
  1906. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1907. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1908. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1909. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1910. ];
  1911. //szsy
  1912. U.MD.D.I.szsyTeacherDeskIcon = [
  1913. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1914. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1915. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1916. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1917. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1918. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1919. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1920. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1921. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1922. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1923. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1925. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1926. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1927. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1928. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1929. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1930. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1931. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1932. ];
  1933. //szsy
  1934. U.MD.D.I.szsyStudentDeskIcon = [
  1935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1939. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1940. ];
  1941. //010404
  1942. U.MD.D.I.x010404TeacherDeskIcon = [
  1943. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1944. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1945. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1946. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1947. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1948. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1949. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1950. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1951. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1952. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1954. ];
  1955. //010404
  1956. U.MD.D.I.x010404StudentDeskIcon = [
  1957. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1959. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1960. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1961. ];
  1962. //#region 桌面初始化a
  1963. /**
  1964. * 初始化桌面的起始函数
  1965. *
  1966. */
  1967. U.MD.D.I.init = function () {
  1968. if ($("#U_MD_D_K")[0]) {
  1969. //初始化桌面图标
  1970. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1971. // var clickUrl = ':12588/requestIp.php';
  1972. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1973. // U.MD.D.I.Ip = data;
  1974. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1975. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1976. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1977. // })
  1978. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1979. // })
  1980. }
  1981. }
  1982. /**
  1983. * 模式切换
  1984. *
  1985. */
  1986. U.MD.D.I.ModeCheck = function (type) {
  1987. if (US.Config.type == type) {
  1988. return
  1989. }
  1990. US.Config.type = type
  1991. $('.U_PBL_Check .active')[0].className = ''
  1992. if (type == 1) {
  1993. $('.U_PBL_Check div')[0].className = 'active'
  1994. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1995. } else {
  1996. $('.U_PBL_Check div')[1].className = 'active'
  1997. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1998. }
  1999. //初始化桌面图标
  2000. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2001. if (type == 2) {
  2002. U.MD.D.I.openApplication("project")
  2003. }
  2004. }
  2005. /**
  2006. * 隐藏任务栏
  2007. *
  2008. * @param {element} 桌面元素
  2009. */
  2010. U.MD.D.I.hiddenTaskbar = function (el) {
  2011. //任务栏位置变小
  2012. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2013. //桌面的位置变大
  2014. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2015. }
  2016. /**
  2017. * 隐藏任务栏
  2018. *
  2019. * @param {element} 桌面元素
  2020. */
  2021. U.MD.D.I.hiddenTaskbarout = function (el) {
  2022. //任务栏位置变小
  2023. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2024. //任务栏位置变化
  2025. U.selectEl(el).css({ "bottom": "-60px" });
  2026. //桌面的位置变大
  2027. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2028. }
  2029. }
  2030. /**
  2031. * 初始化打印桌面图标
  2032. *
  2033. * @param {element} 桌面元素
  2034. */
  2035. U.MD.D.I.initDesktopIcons = function (el, type) {
  2036. var i, //用于循环
  2037. _content, //桌面图标元素
  2038. _iconcontent, //桌面图标元素
  2039. _frag = $$("frag"), //定义一个碎片元素
  2040. _type = US.userInfo.type,
  2041. _org = US.userInfo.org,
  2042. _oid = US.userInfo.organizeid,
  2043. _role = US.userInfo.role,
  2044. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2045. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2046. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2047. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2048. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2049. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2050. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2051. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2052. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2053. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2054. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2055. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2056. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2057. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2058. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2059. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2060. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2061. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2062. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2063. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2064. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2065. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2066. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2067. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2068. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2069. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2070. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2071. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2072. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2073. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2074. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2075. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2076. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2077. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2078. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2079. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2080. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2081. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2082. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2083. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2084. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2085. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2086. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2087. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2088. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2089. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2090. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2091. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2092. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2093. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2094. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2095. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2096. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2097. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2098. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2099. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2100. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2101. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2102. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2103. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2104. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2105. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2106. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2107. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2108. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2109. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2110. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2111. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2112. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2113. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2114. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2115. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2116. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2117. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2118. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2119. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2120. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2121. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2122. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2123. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2124. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2125. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2126. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2127. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2128. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2129. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2130. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2131. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2132. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2133. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2134. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2135. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2136. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2137. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2138. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2139. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2140. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2141. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2142. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2143. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2144. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2145. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2146. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2147. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2148. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2149. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2150. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2151. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2152. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2153. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2154. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2155. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2156. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2157. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2158. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2159. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2160. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2161. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2162. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2163. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2164. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2165. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2166. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2167. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2168. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2169. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2170. 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','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926'];
  2171. 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','62c166af-2f22-11f0-b60f-005056924926'];
  2172. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2173. //清楚桌面图标
  2174. el.innerHTML = "";
  2175. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2176. _teacherDesktopIconInfo.push(
  2177. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2178. { "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)" } },
  2179. )
  2180. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2181. }
  2182. 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' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2183. _teacherDesktopIconInfo.push(
  2184. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2185. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2187. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2188. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2189. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2190. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2191. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2192. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2193. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2194. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2196. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2197. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2198. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2199. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2200. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2201. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2202. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2203. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2204. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2205. )
  2206. }
  2207. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2208. _teacherDesktopIconInfo.push(
  2209. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2210. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2211. )
  2212. }
  2213. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2214. _nsfxTeacherDeskIconInfo.push(
  2215. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2216. )
  2217. }
  2218. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2219. // _teacherDesktopIconInfo.push(
  2220. // )
  2221. // }
  2222. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2223. _teacherDesktopIconInfo.push(
  2224. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2225. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2226. )
  2227. }
  2228. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2229. _teacherDesktopIconInfo.push(
  2230. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2232. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2233. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2234. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2235. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2236. )
  2237. _studentDesktopIconInfo.push(
  2238. )
  2239. }
  2240. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2241. _teacherDesktopIconInfo.push(
  2242. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2243. )
  2244. _studentDesktopIconInfo.push(
  2245. )
  2246. }
  2247. //010606 组织
  2248. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2249. _teacherDesktopIconInfo.push(
  2250. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2251. )
  2252. _studentDesktopIconInfo.push(
  2253. )
  2254. }
  2255. //麒麟二中 和 民新小学
  2256. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2257. _teacherDesktopIconInfo.push(
  2258. )
  2259. }
  2260. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2261. _teacherDesktopIconInfo.push(
  2262. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2263. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2264. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2265. )
  2266. }
  2267. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2268. _hkTeacherDeskIconInfo.push(
  2269. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2270. )
  2271. }
  2272. //北师大附中(010601)
  2273. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2274. // _teacherDesktopIconInfo.push(
  2275. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2276. // )
  2277. // _studentDesktopIconInfo.push(
  2278. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2279. // )
  2280. // }
  2281. //樂善堂余近卿中學
  2282. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2283. _teacherDesktopIconInfo.push(
  2284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2285. )
  2286. }
  2287. // Education Artificial Intelligence
  2288. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2289. _teacherDesktopIconInfo.push(
  2290. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2291. )
  2292. }
  2293. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2294. _teacherDesktopIconInfo.push(
  2295. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2296. )
  2297. }
  2298. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2299. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2300. _teacherDesktopIconInfo.push(
  2301. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2302. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2303. )
  2304. }
  2305. //麒麟二中
  2306. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2307. _studentDesktopIconInfo.push(
  2308. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2309. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2310. )
  2311. }
  2312. //万科双语
  2313. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2314. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2315. if (el.Name == '项目管理') {
  2316. el.Name = 'PBL项目'
  2317. }
  2318. return el
  2319. })
  2320. _studentDesktopIconInfo3.push(
  2321. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2322. )
  2323. }
  2324. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2325. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2326. return el.Name != '魔盒识字' && el.Name != '24点'
  2327. })
  2328. }
  2329. 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) {
  2330. _studentDesktopIconInfo.push(
  2331. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2332. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2333. )
  2334. }
  2335. //循环创建桌面图标
  2336. if (type == 1) {
  2337. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2338. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_studentDesktopIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_studentDesktopIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2355. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_hkZJLSStudentDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2370. } //
  2371. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2372. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_ytyStudentDeskIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_ytyStudentDeskIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2387. } //
  2388. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2389. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_jccssylStudentDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_jccssylStudentDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2406. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_scnuaiStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_scnuaiStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. }
  2422. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2423. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_caleStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_caleStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2440. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_thuioeStudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_thuioeStudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2457. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_tpcStudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_tpcStudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2472. } //
  2473. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2474. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_chjyjStudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_chjyjStudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2491. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_szjkyStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_szjkyStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2508. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_x020201StudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_x020201StudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2525. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_SCNUETStudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_SCNUETStudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2542. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_dseiStudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_dseiStudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2559. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2576. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_nsfxStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_nsfxStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2593. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_stiaStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_stiaStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2610. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_szdjgStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_szdjgStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2627. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_x010607StudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_x010607StudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2644. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2645. _content = $$("div", {
  2646. className: "U_MD_D_KO",
  2647. "onmousedown": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_xhlyStudentDeskIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_xhlyStudentDeskIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2661. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2678. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2679. _content = $$("div", {
  2680. className: "U_MD_D_KO",
  2681. "onmousedown": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_x010503StudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_x010503StudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2695. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_x010504StudentDeskIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_x010504StudentDeskIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2712. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2713. _content = $$("div", {
  2714. className: "U_MD_D_KO",
  2715. "onmousedown": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_x010505StudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x010505StudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2729. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2730. _content = $$("div", {
  2731. className: "U_MD_D_KO",
  2732. "onmousedown": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_x010404StudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_x010404StudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2746. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_x010204StudentDeskIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_x010204StudentDeskIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2763. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_x320101StudentDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x320101StudentDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2780. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2781. _content = $$("div", {
  2782. className: "U_MD_D_KO",
  2783. "onmousedown": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_trailStudentDeskIconInfo[i]]),
  2787. "onclick": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_trailStudentDeskIconInfo[i]])
  2791. }, _frag); //
  2792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2795. }
  2796. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2797. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_trialStudentDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_trialStudentDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2814. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2831. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2832. _content = $$("div", {
  2833. className: "U_MD_D_KO",
  2834. "onmousedown": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_szsyStudentDeskIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_szsyStudentDeskIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2848. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_x010608StudentDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_x010608StudentDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2865. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_x010611StudentDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_x010611StudentDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2882. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_x010612StudentDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_x010612StudentDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2899. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_tianyuantudentDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_tianyuantudentDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2916. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2917. _content = $$("div", {
  2918. className: "U_MD_D_KO",
  2919. "onmousedown": U.UF.C.closure(function (obj) {
  2920. //防止拖动图标即打开了桌面应用
  2921. U.MD.D.click(this, obj);
  2922. }, [_siesStudentDeskIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_siesStudentDeskIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2933. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_guzmsStudentDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_guzmsStudentDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2950. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_hkStudentDeskIconInfo[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_hkStudentDeskIconInfo[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2965. }
  2966. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2967. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2968. _content = $$("div", {
  2969. className: "U_MD_D_KO",
  2970. "onmousedown": U.UF.C.closure(function (obj) {
  2971. //防止拖动图标即打开了桌面应用
  2972. U.MD.D.click(this, obj);
  2973. }, [_tycyStudentDeskIconInfo[i]]),
  2974. "onclick": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_tycyStudentDeskIconInfo[i]])
  2978. }, _frag); //
  2979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  2981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  2982. }
  2983. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2984. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2985. _content = $$("div", {
  2986. className: "U_MD_D_KO",
  2987. "onmousedown": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_hkaceStudentDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_hkaceStudentDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2999. }
  3000. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3001. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_BSDNSstudentDesktopIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3018. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3019. _content = $$("div", {
  3020. className: "U_MD_D_KO",
  3021. "onmousedown": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_cocobizStudentDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_cocobizStudentDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3035. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_xxzjkyStudentDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3052. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_studentDesktopIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_studentDesktopIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3069. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. "onmousedown": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_tcStudentDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_tcStudentDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3086. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_szscStudentDeskIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_szscStudentDeskIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3103. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3104. _content = $$("div", {
  3105. className: "U_MD_D_KO",
  3106. "onmousedown": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_studentDesktopIconInfo3[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_studentDesktopIconInfo3[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3118. }
  3119. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3120. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_studentDesktopIconInfo2[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_studentDesktopIconInfo2[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3135. }
  3136. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3137. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3138. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3139. continue
  3140. }
  3141. _content = $$("div", {
  3142. className: "U_MD_D_KO",
  3143. "onmousedown": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_wanketeacherDesktopIconInfo[i]]),
  3147. "onclick": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_wanketeacherDesktopIconInfo[i]])
  3151. }, _frag); //
  3152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3155. }
  3156. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3157. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3158. _content = $$("div", {
  3159. className: "U_MD_D_KO",
  3160. "onmousedown": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_wankeAdminDesktopIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_wankeAdminDesktopIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3174. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3176. continue
  3177. }
  3178. _content = $$("div", {
  3179. className: "U_MD_D_KO",
  3180. "onmousedown": U.UF.C.closure(function (obj) {
  3181. //防止拖动图标即打开了桌面应用
  3182. U.MD.D.click(this, obj);
  3183. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_scnuaiTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3194. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3195. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3196. continue
  3197. }
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_BSDNSteacherDesktopIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3212. }
  3213. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3214. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_scnuaiAdminDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_scnuaiAdminDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3229. }
  3230. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3231. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3232. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3233. continue
  3234. }
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_jccssylTeacherDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_jccssylTeacherDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3251. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3252. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3253. continue
  3254. }
  3255. _content = $$("div", {
  3256. className: "U_MD_D_KO",
  3257. "onmousedown": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_caleTeacherDeskIconInfo[i]]),
  3261. "onclick": U.UF.C.closure(function (obj) {
  3262. //防止拖动图标即打开了桌面应用
  3263. U.MD.D.click(this, obj);
  3264. }, [_caleTeacherDeskIconInfo[i]])
  3265. }, _frag); //
  3266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3269. }
  3270. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3271. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_tpcOrganizerDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_tpcOrganizerDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3288. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3289. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3290. continue
  3291. }
  3292. _content = $$("div", {
  3293. className: "U_MD_D_KO",
  3294. "onmousedown": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_tpcTeacherDeskIconInfo[i]]),
  3298. "onclick": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_tpcTeacherDeskIconInfo[i]])
  3302. }, _frag); //
  3303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3306. }
  3307. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3308. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3309. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3310. continue
  3311. }
  3312. _content = $$("div", {
  3313. className: "U_MD_D_KO",
  3314. "onmousedown": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_teacherDesktopIconInfo2[i]]),
  3318. "onclick": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_teacherDesktopIconInfo2[i]])
  3322. }, _frag); //
  3323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3326. }
  3327. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3328. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3329. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3330. continue
  3331. }
  3332. _content = $$("div", {
  3333. className: "U_MD_D_KO",
  3334. "onmousedown": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_thuioeTeacherDeskIconInfo[i]]),
  3338. "onclick": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_thuioeTeacherDeskIconInfo[i]])
  3342. }, _frag); //
  3343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3346. }
  3347. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3348. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3349. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3350. continue
  3351. }
  3352. _content = $$("div", {
  3353. className: "U_MD_D_KO",
  3354. "onmousedown": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_lotechTeacherDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_lotechTeacherDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3366. }//
  3367. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3368. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3369. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3370. continue
  3371. }
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3388. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3389. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3390. continue
  3391. }
  3392. _content = $$("div", {
  3393. className: "U_MD_D_KO",
  3394. "onmousedown": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_siesTeacherDeskIconInfo[i]]),
  3398. "onclick": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_siesTeacherDeskIconInfo[i]])
  3402. }, _frag); //
  3403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3406. }
  3407. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3408. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3409. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3410. continue
  3411. }
  3412. _content = $$("div", {
  3413. className: "U_MD_D_KO",
  3414. "onmousedown": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_guzmsTeacherDeskIconInfo[i]]),
  3418. "onclick": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_guzmsTeacherDeskIconInfo[i]])
  3422. }, _frag); //
  3423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3426. }
  3427. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3428. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3429. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3430. continue
  3431. }
  3432. _content = $$("div", {
  3433. className: "U_MD_D_KO",
  3434. "onmousedown": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_longhuaTeacherDeskIconInfo[i]]),
  3438. "onclick": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_longhuaTeacherDeskIconInfo[i]])
  3442. }, _frag); //
  3443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3446. }
  3447. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3448. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3449. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3450. continue
  3451. }
  3452. _content = $$("div", {
  3453. className: "U_MD_D_KO",
  3454. "onmousedown": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_ytyTeacherDeskIconInfo[i]]),
  3458. "onclick": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_ytyTeacherDeskIconInfo[i]])
  3462. }, _frag); //
  3463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3466. }
  3467. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3468. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3469. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3470. continue
  3471. }
  3472. _content = $$("div", {
  3473. className: "U_MD_D_KO",
  3474. "onmousedown": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3478. "onclick": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_yunhaiTeacherDeskIconInfo[i]])
  3482. }, _frag); //
  3483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3486. } //_hkStudentDeskIconInfo
  3487. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3488. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3489. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3490. continue
  3491. }
  3492. _content = $$("div", {
  3493. className: "U_MD_D_KO",
  3494. "onmousedown": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3498. "onclick": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3502. }, _frag); //
  3503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3506. }
  3507. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3508. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3509. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3510. continue
  3511. }
  3512. _content = $$("div", {
  3513. className: "U_MD_D_KO",
  3514. "onmousedown": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_ricohTeacherDeskIconInfo[i]]),
  3518. "onclick": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_ricohTeacherDeskIconInfo[i]])
  3522. }, _frag); //
  3523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3526. }
  3527. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3528. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3529. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3530. continue
  3531. }
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_hkTeacherDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_hkTeacherDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3546. }
  3547. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3548. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3549. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_tycyTeacherDeskIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_tycyTeacherDeskIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3568. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3569. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3570. continue
  3571. }
  3572. _content = $$("div", {
  3573. className: "U_MD_D_KO",
  3574. "onmousedown": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_hkaceTeacherDeskIconInfo[i]]),
  3578. "onclick": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hkaceTeacherDeskIconInfo[i]])
  3582. }, _frag); //
  3583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3586. }
  3587. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3588. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3589. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3590. continue
  3591. }
  3592. _content = $$("div", {
  3593. className: "U_MD_D_KO",
  3594. "onmousedown": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_cocobizTeacherDeskIconInfo[i]]),
  3598. "onclick": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_cocobizTeacherDeskIconInfo[i]])
  3602. }, _frag); //
  3603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3606. }
  3607. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3608. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3609. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3610. continue
  3611. }
  3612. _content = $$("div", {
  3613. className: "U_MD_D_KO",
  3614. "onmousedown": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3618. "onclick": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3622. }, _frag); //
  3623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3626. }
  3627. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3628. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_gdjgAdminDeskIconInfo[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_gdjgAdminDeskIconInfo[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3645. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3646. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3647. continue
  3648. }
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_gdjgTeacherDeskIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_gdjgTeacherDeskIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3665. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3666. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_szherTeacherDeskIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_szherTeacherDeskIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3685. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3686. _content = $$("div", {
  3687. className: "U_MD_D_KO",
  3688. "onmousedown": U.UF.C.closure(function (obj) {
  3689. //防止拖动图标即打开了桌面应用
  3690. U.MD.D.click(this, obj);
  3691. }, [_heyuannAdminDeskIconInfo[i]]),
  3692. "onclick": U.UF.C.closure(function (obj) {
  3693. //防止拖动图标即打开了桌面应用
  3694. U.MD.D.click(this, obj);
  3695. }, [_heyuannAdminDeskIconInfo[i]])
  3696. }, _frag); //
  3697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3700. }
  3701. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3702. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3703. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3704. continue
  3705. }
  3706. _content = $$("div", {
  3707. className: "U_MD_D_KO",
  3708. "onmousedown": U.UF.C.closure(function (obj) {
  3709. //防止拖动图标即打开了桌面应用
  3710. U.MD.D.click(this, obj);
  3711. }, [_heyuanTeacherDeskIconInfo[i]]),
  3712. "onclick": U.UF.C.closure(function (obj) {
  3713. //防止拖动图标即打开了桌面应用
  3714. U.MD.D.click(this, obj);
  3715. }, [_heyuanTeacherDeskIconInfo[i]])
  3716. }, _frag); //
  3717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3720. } //
  3721. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3722. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3723. _content = $$("div", {
  3724. className: "U_MD_D_KO",
  3725. "onmousedown": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_dseiAdminDeskIconInfo[i]]),
  3729. "onclick": U.UF.C.closure(function (obj) {
  3730. //防止拖动图标即打开了桌面应用
  3731. U.MD.D.click(this, obj);
  3732. }, [_dseiAdminDeskIconInfo[i]])
  3733. }, _frag); //
  3734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3737. }
  3738. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3739. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3740. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3741. continue
  3742. }
  3743. _content = $$("div", {
  3744. className: "U_MD_D_KO",
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_dseiTeacherDeskIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖动图标即打开了桌面应用
  3751. U.MD.D.click(this, obj);
  3752. }, [_dseiTeacherDeskIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3757. } //
  3758. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3759. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_chjyjAdminDeskIconInfo[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖动图标即打开了桌面应用
  3768. U.MD.D.click(this, obj);
  3769. }, [_chjyjAdminDeskIconInfo[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3774. }//
  3775. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3776. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3777. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_chjyjTeacherDeskIconInfo[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖动图标即打开了桌面应用
  3788. U.MD.D.click(this, obj);
  3789. }, [_chjyjTeacherDeskIconInfo[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3796. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3797. _content = $$("div", {
  3798. className: "U_MD_D_KO",
  3799. "onmousedown": U.UF.C.closure(function (obj) {
  3800. //防止拖动图标即打开了桌面应用
  3801. U.MD.D.click(this, obj);
  3802. }, [_szjkyAdminDeskIconInfo[i]]),
  3803. "onclick": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_szjkyAdminDeskIconInfo[i]])
  3807. }, _frag); //
  3808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3811. }//
  3812. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3813. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3814. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3815. continue
  3816. }
  3817. _content = $$("div", {
  3818. className: "U_MD_D_KO",
  3819. "onmousedown": U.UF.C.closure(function (obj) {
  3820. //防止拖动图标即打开了桌面应用
  3821. U.MD.D.click(this, obj);
  3822. }, [_szjkyTeacherDeskIconInfo[i]]),
  3823. "onclick": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_szjkyTeacherDeskIconInfo[i]])
  3827. }, _frag); //
  3828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3831. }
  3832. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3833. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3834. _content = $$("div", {
  3835. className: "U_MD_D_KO",
  3836. "onmousedown": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_x020201AdminDeskIconInfo[i]]),
  3840. "onclick": U.UF.C.closure(function (obj) {
  3841. //防止拖动图标即打开了桌面应用
  3842. U.MD.D.click(this, obj);
  3843. }, [_x020201AdminDeskIconInfo[i]])
  3844. }, _frag); //
  3845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3848. }//
  3849. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3850. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3851. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3852. continue
  3853. }
  3854. _content = $$("div", {
  3855. className: "U_MD_D_KO",
  3856. "onmousedown": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_x020201TeacherDeskIconInfo[i]]),
  3860. "onclick": U.UF.C.closure(function (obj) {
  3861. //防止拖动图标即打开了桌面应用
  3862. U.MD.D.click(this, obj);
  3863. }, [_x020201TeacherDeskIconInfo[i]])
  3864. }, _frag); //
  3865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3868. }
  3869. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3870. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3871. _content = $$("div", {
  3872. className: "U_MD_D_KO",
  3873. "onmousedown": U.UF.C.closure(function (obj) {
  3874. //防止拖动图标即打开了桌面应用
  3875. U.MD.D.click(this, obj);
  3876. }, [_SCNUETAdminDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖动图标即打开了桌面应用
  3879. U.MD.D.click(this, obj);
  3880. }, [_SCNUETAdminDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3885. }//
  3886. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3887. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3889. continue
  3890. }
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖动图标即打开了桌面应用
  3895. U.MD.D.click(this, obj);
  3896. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_SCNUETTeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3907. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3908. _content = $$("div", {
  3909. className: "U_MD_D_KO",
  3910. "onmousedown": U.UF.C.closure(function (obj) {
  3911. //防止拖动图标即打开了桌面应用
  3912. U.MD.D.click(this, obj);
  3913. }, [_futianAdminDeskIconInfo[i]]),
  3914. "onclick": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_futianAdminDeskIconInfo[i]])
  3918. }, _frag); //
  3919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3922. }
  3923. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3924. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3925. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3926. continue
  3927. }
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_futianTeacherDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_futianTeacherDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3942. }
  3943. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3944. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3945. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_MingdeTeacherDeskIcon[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_MingdeTeacherDeskIcon[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3964. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_lhsAdminDesktopIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_lhsAdminDesktopIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3979. }
  3980. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3981. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3982. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_lhsteacherDesktopIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_lhsteacherDesktopIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4001. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4002. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4003. continue
  4004. }
  4005. _content = $$("div", {
  4006. className: "U_MD_D_KO",
  4007. "onmousedown": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4011. "onclick": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_zhoujiateacherDesktopIconInfo[i]])
  4015. }, _frag); //
  4016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4019. }
  4020. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4021. for (i = 0; i < _hanDeskIcon.length; i++) {
  4022. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4023. continue
  4024. }
  4025. _content = $$("div", {
  4026. className: "U_MD_D_KO",
  4027. "onmousedown": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_hanDeskIcon[i]]),
  4031. "onclick": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_hanDeskIcon[i]])
  4035. }, _frag); //
  4036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4039. }
  4040. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4041. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4042. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4043. continue
  4044. }
  4045. _content = $$("div", {
  4046. className: "U_MD_D_KO",
  4047. "onmousedown": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_orgStemDeskIcon[i]]),
  4051. "onclick": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_orgStemDeskIcon[i]])
  4055. }, _frag); //
  4056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4059. }
  4060. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4061. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4062. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4063. continue
  4064. }
  4065. _content = $$("div", {
  4066. className: "U_MD_D_KO",
  4067. "onmousedown": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_szulsDeskIcon[i]]),
  4071. "onclick": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_szulsDeskIcon[i]])
  4075. }, _frag); //
  4076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4079. }
  4080. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4081. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4082. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4083. continue
  4084. }
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_orgDesktopIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_orgDesktopIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4101. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4102. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_schoolDesktopIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_schoolDesktopIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4121. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4122. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_GMteacherDesktopIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_GMteacherDesktopIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4141. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4142. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_SONGteacherDesktopIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_SONGteacherDesktopIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4161. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4162. _content = $$("div", {
  4163. className: "U_MD_D_KO",
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_GMstudentDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_GMstudentDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4176. }
  4177. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4178. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4179. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4180. continue
  4181. }
  4182. _content = $$("div", {
  4183. className: "U_MD_D_KO",
  4184. "onmousedown": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_tcTeacherDeskIconInfo[i]]),
  4188. "onclick": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_tcTeacherDeskIconInfo[i]])
  4192. }, _frag); //
  4193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4196. }
  4197. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4198. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4199. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4200. continue
  4201. }
  4202. _content = $$("div", {
  4203. className: "U_MD_D_KO",
  4204. "onmousedown": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_tcOrganizerDeskIconInfo[i]]),
  4208. "onclick": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_tcOrganizerDeskIconInfo[i]])
  4212. }, _frag); //
  4213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4216. }
  4217. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4218. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4219. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4220. continue
  4221. }
  4222. _content = $$("div", {
  4223. className: "U_MD_D_KO",
  4224. "onmousedown": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_szscTeacherDeskIconInfo[i]]),
  4228. "onclick": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_szscTeacherDeskIconInfo[i]])
  4232. }, _frag); //
  4233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4236. }
  4237. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4238. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4239. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4240. continue
  4241. }
  4242. _content = $$("div", {
  4243. className: "U_MD_D_KO",
  4244. "onmousedown": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szscOrganizerDeskIconInfo[i]]),
  4248. "onclick": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_szscOrganizerDeskIconInfo[i]])
  4252. }, _frag); //
  4253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4256. }
  4257. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4258. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4259. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4260. continue
  4261. }
  4262. _content = $$("div", {
  4263. className: "U_MD_D_KO",
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_nsfxTeacherDeskIconInfo[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_nsfxTeacherDeskIconInfo[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4276. }
  4277. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4278. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4279. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4280. continue
  4281. }
  4282. _content = $$("div", {
  4283. className: "U_MD_D_KO",
  4284. "onmousedown": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_stiaTeacherDeskIconInfo[i]]),
  4288. "onclick": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_stiaTeacherDeskIconInfo[i]])
  4292. }, _frag); //
  4293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4296. }
  4297. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4298. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4299. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4300. continue
  4301. }
  4302. _content = $$("div", {
  4303. className: "U_MD_D_KO",
  4304. "onmousedown": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_szdjgTeacherDeskIconInfo[i]]),
  4308. "onclick": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_szdjgTeacherDeskIconInfo[i]])
  4312. }, _frag); //
  4313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4316. }
  4317. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4318. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4319. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4320. continue
  4321. }
  4322. _content = $$("div", {
  4323. className: "U_MD_D_KO",
  4324. "onmousedown": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x010607TeacherDeskIconInfo[i]]),
  4328. "onclick": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_x010607TeacherDeskIconInfo[i]])
  4332. }, _frag); //
  4333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4336. }
  4337. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4338. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4339. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4340. continue
  4341. }
  4342. _content = $$("div", {
  4343. className: "U_MD_D_KO",
  4344. "onmousedown": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_xhlyTeacherDeskIconInfo[i]]),
  4348. "onclick": U.UF.C.closure(function (obj) {
  4349. //防止拖动图标即打开了桌面应用
  4350. U.MD.D.click(this, obj);
  4351. }, [_xhlyTeacherDeskIconInfo[i]])
  4352. }, _frag); //
  4353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4356. }
  4357. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4358. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4359. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4360. continue
  4361. }
  4362. _content = $$("div", {
  4363. className: "U_MD_D_KO",
  4364. "onmousedown": U.UF.C.closure(function (obj) {
  4365. //防止拖动图标即打开了桌面应用
  4366. U.MD.D.click(this, obj);
  4367. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4368. "onclick": U.UF.C.closure(function (obj) {
  4369. //防止拖动图标即打开了桌面应用
  4370. U.MD.D.click(this, obj);
  4371. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4372. }, _frag); //
  4373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4376. }
  4377. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4378. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4379. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4380. continue
  4381. }
  4382. _content = $$("div", {
  4383. className: "U_MD_D_KO",
  4384. "onmousedown": U.UF.C.closure(function (obj) {
  4385. //防止拖动图标即打开了桌面应用
  4386. U.MD.D.click(this, obj);
  4387. }, [_x010503TeacherDeskIconInfo[i]]),
  4388. "onclick": U.UF.C.closure(function (obj) {
  4389. //防止拖动图标即打开了桌面应用
  4390. U.MD.D.click(this, obj);
  4391. }, [_x010503TeacherDeskIconInfo[i]])
  4392. }, _frag); //
  4393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4396. }
  4397. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4398. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4399. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4400. continue
  4401. }
  4402. _content = $$("div", {
  4403. className: "U_MD_D_KO",
  4404. "onmousedown": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_x010504TeacherDeskIconInfo[i]]),
  4408. "onclick": U.UF.C.closure(function (obj) {
  4409. //防止拖动图标即打开了桌面应用
  4410. U.MD.D.click(this, obj);
  4411. }, [_x010504TeacherDeskIconInfo[i]])
  4412. }, _frag); //
  4413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4416. }
  4417. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4418. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4419. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4420. continue
  4421. }
  4422. _content = $$("div", {
  4423. className: "U_MD_D_KO",
  4424. "onmousedown": U.UF.C.closure(function (obj) {
  4425. //防止拖动图标即打开了桌面应用
  4426. U.MD.D.click(this, obj);
  4427. }, [_x010505TeacherDeskIconInfo[i]]),
  4428. "onclick": U.UF.C.closure(function (obj) {
  4429. //防止拖动图标即打开了桌面应用
  4430. U.MD.D.click(this, obj);
  4431. }, [_x010505TeacherDeskIconInfo[i]])
  4432. }, _frag); //
  4433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4436. }
  4437. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4438. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4439. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4440. continue
  4441. }
  4442. _content = $$("div", {
  4443. className: "U_MD_D_KO",
  4444. "onmousedown": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_x010404TeacherDeskIconInfo[i]]),
  4448. "onclick": U.UF.C.closure(function (obj) {
  4449. //防止拖动图标即打开了桌面应用
  4450. U.MD.D.click(this, obj);
  4451. }, [_x010404TeacherDeskIconInfo[i]])
  4452. }, _frag); //
  4453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4456. }
  4457. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4458. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4459. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4460. continue
  4461. }
  4462. _content = $$("div", {
  4463. className: "U_MD_D_KO",
  4464. "onmousedown": U.UF.C.closure(function (obj) {
  4465. //防止拖动图标即打开了桌面应用
  4466. U.MD.D.click(this, obj);
  4467. }, [_x010204TeacherDeskIconInfo[i]]),
  4468. "onclick": U.UF.C.closure(function (obj) {
  4469. //防止拖动图标即打开了桌面应用
  4470. U.MD.D.click(this, obj);
  4471. }, [_x010204TeacherDeskIconInfo[i]])
  4472. }, _frag); //
  4473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4476. }
  4477. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4478. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4479. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4480. continue
  4481. }
  4482. _content = $$("div", {
  4483. className: "U_MD_D_KO",
  4484. "onmousedown": U.UF.C.closure(function (obj) {
  4485. //防止拖动图标即打开了桌面应用
  4486. U.MD.D.click(this, obj);
  4487. }, [_x320101TeacherDeskIconInfo[i]]),
  4488. "onclick": U.UF.C.closure(function (obj) {
  4489. //防止拖动图标即打开了桌面应用
  4490. U.MD.D.click(this, obj);
  4491. }, [_x320101TeacherDeskIconInfo[i]])
  4492. }, _frag); //
  4493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4496. }
  4497. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4498. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4499. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4500. continue
  4501. }
  4502. _content = $$("div", {
  4503. className: "U_MD_D_KO",
  4504. "onmousedown": U.UF.C.closure(function (obj) {
  4505. //防止拖动图标即打开了桌面应用
  4506. U.MD.D.click(this, obj);
  4507. }, [_trailTeacherDeskIconInfo[i]]),
  4508. "onclick": U.UF.C.closure(function (obj) {
  4509. //防止拖动图标即打开了桌面应用
  4510. U.MD.D.click(this, obj);
  4511. }, [_trailTeacherDeskIconInfo[i]])
  4512. }, _frag); //
  4513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4516. }
  4517. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4518. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4519. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4520. continue
  4521. }
  4522. _content = $$("div", {
  4523. className: "U_MD_D_KO",
  4524. "onmousedown": U.UF.C.closure(function (obj) {
  4525. //防止拖动图标即打开了桌面应用
  4526. U.MD.D.click(this, obj);
  4527. }, [_trialTeacherDeskIconInfo[i]]),
  4528. "onclick": U.UF.C.closure(function (obj) {
  4529. //防止拖动图标即打开了桌面应用
  4530. U.MD.D.click(this, obj);
  4531. }, [_trialTeacherDeskIconInfo[i]])
  4532. }, _frag); //
  4533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4536. }
  4537. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4538. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4539. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4540. continue
  4541. }
  4542. _content = $$("div", {
  4543. className: "U_MD_D_KO",
  4544. "onmousedown": U.UF.C.closure(function (obj) {
  4545. //防止拖动图标即打开了桌面应用
  4546. U.MD.D.click(this, obj);
  4547. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4548. "onclick": U.UF.C.closure(function (obj) {
  4549. //防止拖动图标即打开了桌面应用
  4550. U.MD.D.click(this, obj);
  4551. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4552. }, _frag); //
  4553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4556. }
  4557. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4558. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4559. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4560. continue
  4561. }
  4562. _content = $$("div", {
  4563. className: "U_MD_D_KO",
  4564. "onmousedown": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_szsyTeacherDeskIconInfo[i]]),
  4568. "onclick": U.UF.C.closure(function (obj) {
  4569. //防止拖动图标即打开了桌面应用
  4570. U.MD.D.click(this, obj);
  4571. }, [_szsyTeacherDeskIconInfo[i]])
  4572. }, _frag); //
  4573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4576. }
  4577. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4578. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4579. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4580. continue
  4581. }
  4582. _content = $$("div", {
  4583. className: "U_MD_D_KO",
  4584. "onmousedown": U.UF.C.closure(function (obj) {
  4585. //防止拖动图标即打开了桌面应用
  4586. U.MD.D.click(this, obj);
  4587. }, [_x010608TeacherDeskIconInfo[i]]),
  4588. "onclick": U.UF.C.closure(function (obj) {
  4589. //防止拖动图标即打开了桌面应用
  4590. U.MD.D.click(this, obj);
  4591. }, [_x010608TeacherDeskIconInfo[i]])
  4592. }, _frag); //
  4593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4596. }
  4597. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4598. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4599. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4600. continue
  4601. }
  4602. _content = $$("div", {
  4603. className: "U_MD_D_KO",
  4604. "onmousedown": U.UF.C.closure(function (obj) {
  4605. //防止拖动图标即打开了桌面应用
  4606. U.MD.D.click(this, obj);
  4607. }, [_x010611TeacherDeskIconInfo[i]]),
  4608. "onclick": U.UF.C.closure(function (obj) {
  4609. //防止拖动图标即打开了桌面应用
  4610. U.MD.D.click(this, obj);
  4611. }, [_x010611TeacherDeskIconInfo[i]])
  4612. }, _frag); //
  4613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4616. }
  4617. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4618. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4619. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4620. continue
  4621. }
  4622. _content = $$("div", {
  4623. className: "U_MD_D_KO",
  4624. "onmousedown": U.UF.C.closure(function (obj) {
  4625. //防止拖动图标即打开了桌面应用
  4626. U.MD.D.click(this, obj);
  4627. }, [_x010612TeacherDeskIconInfo[i]]),
  4628. "onclick": U.UF.C.closure(function (obj) {
  4629. //防止拖动图标即打开了桌面应用
  4630. U.MD.D.click(this, obj);
  4631. }, [_x010612TeacherDeskIconInfo[i]])
  4632. }, _frag); //
  4633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4636. }
  4637. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4638. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4639. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4640. continue
  4641. }
  4642. _content = $$("div", {
  4643. className: "U_MD_D_KO",
  4644. "onmousedown": U.UF.C.closure(function (obj) {
  4645. //防止拖动图标即打开了桌面应用
  4646. U.MD.D.click(this, obj);
  4647. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4648. "onclick": U.UF.C.closure(function (obj) {
  4649. //防止拖动图标即打开了桌面应用
  4650. U.MD.D.click(this, obj);
  4651. }, [_tianyuanTeacherDeskIconInfo[i]])
  4652. }, _frag); //
  4653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4656. }
  4657. } else {
  4658. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4659. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4660. continue
  4661. }
  4662. _content = $$("div", {
  4663. className: "U_MD_D_KO",
  4664. "onmousedown": U.UF.C.closure(function (obj) {
  4665. //防止拖动图标即打开了桌面应用
  4666. U.MD.D.click(this, obj);
  4667. }, [_teacherDesktopIconInfo[i]]),
  4668. "onclick": U.UF.C.closure(function (obj) {
  4669. //防止拖动图标即打开了桌面应用
  4670. U.MD.D.click(this, obj);
  4671. }, [_teacherDesktopIconInfo[i]])
  4672. }, _frag); //
  4673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4676. }
  4677. }
  4678. } else {
  4679. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4680. _content = $$("div", {
  4681. className: "U_MD_D_KO",
  4682. style: { 'width': '124px', 'height': '145px' },
  4683. "onmousedown": U.UF.C.closure(function (obj) {
  4684. //防止拖动图标即打开了桌面应用
  4685. U.MD.D.click(this, obj);
  4686. }, [_easyDesktopIconInfo[i]]),
  4687. "onclick": U.UF.C.closure(function (obj) {
  4688. //防止拖动图标即打开了桌面应用
  4689. U.MD.D.click(this, obj);
  4690. }, [_easyDesktopIconInfo[i]])
  4691. }, _frag); //
  4692. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4695. }
  4696. }
  4697. if (type == 1) {
  4698. //加载好后给图标定位
  4699. U.MD.D.iconPostion($(_frag).Child());
  4700. } else {
  4701. //加载好后给图标定位
  4702. U.MD.D.iconPostion2($(_frag).Child());
  4703. }
  4704. //把图标加载到页面
  4705. el.appendChild(_frag);
  4706. }
  4707. /**
  4708. * 显示任务栏
  4709. *
  4710. * @param {element} 桌面元素
  4711. */
  4712. U.MD.D.I.displayTaskbar = function (el) {
  4713. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4714. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4715. //任务栏位置变化
  4716. U.selectEl(el).css({ "bottom": "0px" });
  4717. //桌面位置变话
  4718. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4719. }
  4720. }
  4721. //#region 桌面图标拖动逻辑
  4722. /**
  4723. * 桌面排列图标
  4724. *
  4725. * @param {element} 桌面元素
  4726. * @param {object} 上下相距的距离
  4727. * @param {object} 左右相距的距离
  4728. * @return {object} 命名空间
  4729. */
  4730. U.MD.D.iconPostion = function (childs, top, left) {
  4731. var i; //用于循环处理
  4732. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4733. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4734. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4735. for (i = 0; i < childs.length; i++) {
  4736. //如果竖排top超过了范围处理
  4737. if (top + 95 > US.height - 10) {
  4738. //left超过了页面范围处理,则向上重叠打印处理
  4739. if ((left + 180) > US.width) {
  4740. top -= 110;
  4741. left -= 90;
  4742. }
  4743. //没有超过范围,那么left+90添加到下一个竖排打印
  4744. else {
  4745. left += 90;
  4746. top = 15;
  4747. };
  4748. }
  4749. //给图标的位置赋值
  4750. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4751. if (i < childs.length - 1) {
  4752. //页面图标每次向下加95
  4753. top += 95;
  4754. }
  4755. }
  4756. //返回最后调用的图标的位置
  4757. return [top, left];
  4758. }
  4759. /**
  4760. * 桌面排列图标
  4761. *
  4762. * @param {element} 桌面元素
  4763. * @param {object} 上下相距的距离
  4764. * @param {object} 左右相距的距离
  4765. * @return {object} 命名空间
  4766. */
  4767. U.MD.D.iconPostion2 = function (childs, top, left) {
  4768. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4769. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4770. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4771. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4772. for (i = 0; i < childs.length; i++) {
  4773. //如果竖排top超过了范围处理
  4774. if (left + 150 > US.width - 10) {
  4775. //left超过了页面范围处理,则向上重叠打印处理
  4776. if ((top + 180) > US.Height) {
  4777. top -= 150;
  4778. left -= 150;
  4779. }
  4780. //没有超过范围,那么left+90添加到下一个竖排打印
  4781. else {
  4782. top += 150;
  4783. left = ol;
  4784. };
  4785. }
  4786. //给图标的位置赋值
  4787. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4788. if (i < childs.length - 1) {
  4789. //页面图标每次向下加95
  4790. left += 150;
  4791. }
  4792. }
  4793. //返回最后调用的图标的位置
  4794. return [top, left];
  4795. }
  4796. /**
  4797. * 桌面点击事件逻辑
  4798. *
  4799. * @param {element} 桌面元素
  4800. * @param {object} 上下相距的距离
  4801. * @param {object} 左右相距的距离
  4802. * @return {object} 命名空间
  4803. */
  4804. U.MD.D.click = function (el, obj) {
  4805. var _buttonnumber = event.button; //点击的按钮的事件值
  4806. var _userinfo = US.userInfo;
  4807. U.UF.EV.stopBubble(); //阻止向上冒泡
  4808. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4809. if (_buttonnumber < 2) {
  4810. //如果是click事件的处理
  4811. if (event.type == "click") {
  4812. //如果元素在mousemove事件中没有移动则出发click事件
  4813. if (!U.MD.D.I.IsDrag) {
  4814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4815. U.alert("请先登录您的账号!");
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. //打开应用处理
  4821. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4822. }
  4823. }
  4824. }
  4825. //如果是mouse事件的处理
  4826. else {
  4827. if (US.Config.type == '1') {
  4828. //拖动处理,添加拖动和拖动结束事件
  4829. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4830. }
  4831. }
  4832. U.MD.D.I.IsDrag = false;
  4833. }
  4834. }
  4835. /**
  4836. * 拖动的处理
  4837. *
  4838. */
  4839. U.MD.D.iconMove = function () {
  4840. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4841. U.MD.D.I.IsDrag = true;
  4842. }
  4843. /**
  4844. * 拖动结束后,这里是定位处理,以网状的形式定位
  4845. *
  4846. * @param {element} 拖动的元素
  4847. * @return {object} 命名空间
  4848. */
  4849. U.MD.D.iconUp = function (el) {
  4850. var _top = 15,
  4851. _left = 20,
  4852. _margin,
  4853. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4854. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4855. if (_positioninfo["OT"] > 15) {
  4856. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4857. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4858. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4859. }
  4860. if (_positioninfo["OL"] > 20) {
  4861. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4862. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4863. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4864. }
  4865. //while循环判断么一个重叠的元素
  4866. do {
  4867. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4868. _top = _positioninfo[0] + 95; //得到定位后的top
  4869. _left = _positioninfo[1]; //得到定位后的left
  4870. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4871. }
  4872. /**
  4873. * 判断拖动后图标是否重叠
  4874. *
  4875. * @param {element} 拖动的元素
  4876. * @param {element} 桌面所有的元素
  4877. * @param {array} 拖动元素的位置
  4878. ----------[0] 上 top
  4879. ----------[1] 左 left
  4880. * @return {object} 命名空间
  4881. */
  4882. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4883. //循环所有的图标
  4884. for (var i = 0; i < childs.length; i++) {
  4885. //判断有没有和该图标诶子重叠的元素
  4886. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4887. return childs[i]; //如果有返回
  4888. }
  4889. }
  4890. }
  4891. //#endregion
  4892. //#endregion
  4893. //#region 桌面应用
  4894. /**
  4895. * 打开应用
  4896. *
  4897. * @param {string} 类型
  4898. -----------------Disk 网盘系统
  4899. -----------------PDisk 学习系统网盘
  4900. -----------------Poto 图片
  4901. -----------------Video 视频
  4902. -----------------Music 音乐
  4903. -----------------Word word
  4904. -----------------Excel excel
  4905. -----------------Txt 记事本
  4906. -----------------PB 学习系统
  4907. -----------------Blog 朋友圈系统
  4908. -----------------FTP ftp系统
  4909. -----------------Group 好友群
  4910. -----------------SY 首页系统
  4911. -----------------Set 个人设置
  4912. -----------------XSet 系统设置
  4913. -----------------App 我们所有的app
  4914. -----------------BC c.1473.cn 平台
  4915. -----------------CWeb d.1473.cn 变成平台
  4916. -----------------其他的外联系统 我们统一用iframe打开
  4917. * @param {array} 类型
  4918. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4919. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4920. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4921. 如果第一个参数为其他,则无第二个参数
  4922. * @returns {array}
  4923. */
  4924. window.addEventListener('message', function (e) { // 监听 message 事件
  4925. // alert(e.data.type);
  4926. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4927. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4928. //3是展示全部阶段 2学生 1老师 4专家
  4929. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4930. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4931. //3是展示全部阶段 2学生 1老师 4专家
  4932. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4933. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4934. //3是展示全部阶段 2学生 1老师 4专家
  4935. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4936. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4937. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4938. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4939. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4940. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4941. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4942. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4943. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4944. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4945. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4946. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4947. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4948. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4949. //3是展示全部阶段 2学生 1老师 4专家
  4950. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4951. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4952. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4953. U.MD.D.I.selectUser();
  4954. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4955. var _formel = document.getElementById("study");
  4956. U.UF.F.windowZooming(_formel);
  4957. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4958. var _formel = document.getElementById("studyDetail");
  4959. U.UF.F.windowZooming(_formel);
  4960. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4961. var _formel = document.getElementById("studyDetail");
  4962. U.UF.F.windowZooming(_formel);
  4963. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4964. var _formel = document.getElementById("studentStudy");
  4965. U.UF.F.windowZooming(_formel);
  4966. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4967. // var _formel = document.getElementById("study");
  4968. //如果最大化了,那么就把他缩小
  4969. // if (_formel.ismaximize) {
  4970. // return;
  4971. // }
  4972. // U.UF.F.windowZooming(_formel);
  4973. // U.UF.F.topWindow(_formel);
  4974. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4975. // var _formel = document.getElementById("studyDetail");
  4976. //如果最大化了,那么就把他缩小
  4977. // if (_formel.ismaximize) {
  4978. // return;
  4979. // }
  4980. // U.UF.F.windowZooming(_formel);
  4981. // U.UF.F.topWindow(_formel);
  4982. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4983. // var _formel = document.getElementById("studentStudy");
  4984. // if (_formel.ismaximize) {
  4985. // return;
  4986. // }
  4987. // U.UF.F.windowZooming(_formel);
  4988. // U.UF.F.topWindow(_formel);
  4989. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4990. var _formel = document.getElementById("study");
  4991. // if (_formel.ismaximize) {
  4992. // return;
  4993. // }
  4994. // U.UF.F.windowZooming(_formel);
  4995. U.UF.F.topWindow(_formel);
  4996. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4997. var _formel = document.getElementById("studentIndex");
  4998. U.UF.F.windowZooming(_formel);
  4999. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5000. var _formel = document.getElementById("studyDetailS");
  5001. U.UF.F.windowZooming(_formel);
  5002. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5003. var _formel = document.getElementById("studioIndex");
  5004. U.UF.F.windowZooming(_formel);
  5005. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5006. var _formel = document.getElementById("studyDetailStudio");
  5007. U.UF.F.windowZooming(_formel);
  5008. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5009. var _formel = document.getElementById("studyDetailStudio");
  5010. U.UF.F.windowZooming(_formel);
  5011. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5012. var _formel = document.getElementById("studyDetailNT");
  5013. U.UF.F.windowZooming(_formel);
  5014. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5015. var _formel = document.getElementById("studyDetailS");
  5016. U.UF.F.windowZooming(_formel);
  5017. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5018. var _formel = document.getElementById("studyDetailS");
  5019. U.UF.F.topWindow(_formel);
  5020. } else if (e.data.tools && e.data.tools == "1") {
  5021. // U.MD.D.I.openApplication("whiteboard")
  5022. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5023. } else if (e.data.tools && e.data.tools == "2") {
  5024. U.MD.D.I.openApplication("note")
  5025. } else if (e.data.tools && e.data.tools == "3") {
  5026. // U.MD.D.I.openApplication("mind")
  5027. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5028. } else if (e.data.tools && e.data.tools == "4") {
  5029. U.MD.D.I.openApplication("investigation")
  5030. } else if (e.data.tools && e.data.tools == "6") {
  5031. // U.MD.D.I.openApplication("doc")
  5032. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5033. } else if (e.data.tools && e.data.tools == "7") {
  5034. // U.MD.D.I.openApplication("mindNetwork")
  5035. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5036. } else if (e.data.tools && e.data.tools == "8") {
  5037. U.MD.D.I.openApplication("library")
  5038. } else if (e.data.tools && e.data.tools == "17") {
  5039. U.MD.D.I.openApplication("stuLibrary")
  5040. } else if (e.data.tools && e.data.tools == "18") {
  5041. U.MD.D.I.openApplication("train")
  5042. } else if (e.data.tools && e.data.tools == "21") {
  5043. U.MD.D.I.openApplication("program")
  5044. } else if (e.data.tools && e.data.tools == "22") {
  5045. U.MD.D.I.openApplication("AIprogram2")
  5046. } else if (e.data.tools && e.data.tools == "23") {
  5047. U.MD.D.I.openApplication("Pythonprogram")
  5048. } else if (e.data.tools && e.data.tools == "24") {
  5049. U.MD.D.I.openApplication("AIprogram")
  5050. } else if (e.data.tools && e.data.tools == "25") {
  5051. U.MD.D.I.openApplication("sys")
  5052. } else if (e.data.tools && e.data.tools == "26") {
  5053. // U.MD.D.I.openApplication("courseDesign")
  5054. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5055. } else if (e.data.tools && e.data.tools == "31") {
  5056. U.MD.D.I.openApplication("netWorkPanel")
  5057. } else if (e.data.tools && e.data.tools == "32") {
  5058. U.MD.D.I.openApplication("codeEdit")
  5059. } else if (e.data.tools && e.data.tools == "57") {
  5060. U.MD.D.I.openApplication("CocoPi")
  5061. } else if (e.data.tools && e.data.tools == "63") {
  5062. U.MD.D.I.openApplication("Wood")
  5063. } else if (e.data.tools && e.data.tools == "58") {
  5064. U.MD.D.I.openApplication("car")
  5065. } else if (e.data.tools && e.data.tools == "59") {
  5066. U.MD.D.I.openApplication("lineSearch")
  5067. } else if (e.data.tools && e.data.tools == "60") {
  5068. U.MD.D.I.openApplication("deepLearning")
  5069. } else if (e.data.tools && e.data.tools == "61") {
  5070. U.MD.D.I.openApplication("allHistory")
  5071. } else if (e.data.tools && e.data.tools == "28") {
  5072. U.MD.D.I.openApplication("translation")
  5073. } else if (e.data.tools && e.data.tools == "37") {
  5074. U.MD.D.I.openApplication("mohe")
  5075. } else if (e.data.tools && e.data.tools == "38") {
  5076. U.MD.D.I.openApplication("24game")
  5077. } else if (e.data.tools && e.data.tools == "39") {
  5078. U.MD.D.I.openApplication("GeoGebra")
  5079. } else if (e.data.tools && e.data.tools == "43") {
  5080. U.MD.D.I.openApplication("studentEvaluate")
  5081. } else if (e.data.tools && e.data.tools == "44") {
  5082. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5083. } else if (e.data.tools && e.data.tools == "46") {
  5084. U.MD.D.I.openApplication("project")
  5085. } else if (e.data.tools && e.data.tools == "71") {
  5086. U.MD.D.I.openApplication("aigptCourse")
  5087. } else if (e.data.tools && e.data.tools == "72") {
  5088. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5089. } else if (e.data.tools && e.data.tools == "1s") {
  5090. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5091. } else if (e.data.tools && e.data.tools == "3s") {
  5092. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5093. } else if (e.data.tools && e.data.tools == "6s") {
  5094. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5095. } else if (e.data.tools && e.data.tools == "1studio") {
  5096. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5097. } else if (e.data.tools && e.data.tools == "3studio") {
  5098. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5099. } else if (e.data.tools && e.data.tools == "6studio") {
  5100. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5101. } else if (e.data.tools && e.data.tools == "3y") {
  5102. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5103. } else if (e.data.tools && e.data.tools == "1y") {
  5104. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5105. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5106. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5107. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5108. U.MD.D.I.openApplication("AIAnalyse")
  5109. } else if (e.data.tools && e.data.tools == "1teacher") {
  5110. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5111. } else if (e.data.tools && e.data.tools == "3teacher") {
  5112. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5113. } else if (e.data.tools && e.data.tools == "7teacher") {
  5114. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5115. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5116. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5117. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5118. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5119. } else if (e.data.tools && e.data.tools == "1E") {
  5120. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5121. } else if (e.data.tools && e.data.tools == "3E") {
  5122. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5123. } else if (e.data.tools && e.data.tools == "57y") {
  5124. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5125. } else if (e.data.tools && e.data.tools == "57u") {
  5126. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5127. } else if (e.data.tools && e.data.tools == "57teacher") {
  5128. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5129. } else if (e.data.tools && e.data.tools == "64") {
  5130. U.MD.D.I.openApplication("AIChat")
  5131. } else if (e.data.tools && e.data.tools == "66") {
  5132. U.MD.D.I.openApplication("formulaEdi")
  5133. } else if (e.data.tools && e.data.tools == "67") {
  5134. U.MD.D.I.openApplication("molStr")
  5135. } else if (e.data.tools && e.data.tools == "68") {
  5136. U.MD.D.I.openApplication("timeAxis")
  5137. } else if (e.data.tools && e.data.tools == "openCourse") {
  5138. let _data = {
  5139. typea: e.data.typea || '',
  5140. typeb: e.data.typeb || '',
  5141. typed: e.data.typed || '',
  5142. }
  5143. U.MD.D.I.openInApplication("index", _data)
  5144. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5145. let _data = {
  5146. classid: e.data.classid || '',
  5147. }
  5148. U.MD.D.I.openInApplication("dataClass", _data)
  5149. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5150. let _data = {
  5151. cid: e.data.cid || '',
  5152. gid: e.data.gid || '',
  5153. }
  5154. U.MD.D.I.openInApplication("opencCscl", _data)
  5155. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5156. U.MD.D.I.openApplication("dataBoardTest")
  5157. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5158. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5159. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5160. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5161. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5162. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5163. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5164. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5165. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5166. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5167. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5168. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5169. }else if (e.data.tools && e.data.tools == "loginSz") {
  5170. U.MD.D.I.openInApplication("loginSz")
  5171. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5172. if($('#classroom_observation_board')[0]){
  5173. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5174. }
  5175. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5176. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5177. if($('#classroom_observation_ob_comment')[0]){
  5178. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5179. }
  5180. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5181. }else if (e.data.tools && e.data.tools == "logout"){
  5182. U.MD.U.LO.logoutSystem()
  5183. }else if (e.data.tools && e.data.tools == "getLogin"){
  5184. let _iframe = $('#UI_Login')[0];
  5185. if (_iframe) {
  5186. var userInfo = US.userInfo;
  5187. var type = 2
  5188. if(userInfo && userInfo.userid){
  5189. type = 1
  5190. }
  5191. _contentWindow = _iframe.contentWindow;
  5192. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5193. }
  5194. }
  5195. });
  5196. U.MD.D.I.selectUser = function () {
  5197. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5198. if (res.value[0].length > 0) {
  5199. US.userInfo = res.value[0][0];
  5200. $(".userName")[0].innerHTML = US.userInfo.username;
  5201. }
  5202. }, [], { "type": "GET", "withCredentials": true });
  5203. }
  5204. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5205. var _userinfo = US.userInfo, //登录用户信息
  5206. _userid = US.userInfo.userid, //登录用户id
  5207. _oid = _userinfo.organizeid,
  5208. _type = US.userInfo.type,
  5209. _org = US.userInfo.org,
  5210. _role = US.userInfo.role,
  5211. _classId = US.userInfo.classid;
  5212. if (_type == 4) {
  5213. tType = 4
  5214. }
  5215. switch (str) {
  5216. case "studyDetailNT": //无终端模式
  5217. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5218. setTimeout(() => {
  5219. U.MD.U.L.login();
  5220. }, 2000);
  5221. } else {
  5222. _formdiv = new U.UF.UI.form(
  5223. "课程详情",
  5224. $$("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 }), {
  5225. "id": "studyDetailNT",
  5226. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //创建窗体
  5231. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5232. break;
  5233. }
  5234. case "studyDetail":
  5235. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5236. setTimeout(() => {
  5237. U.MD.U.L.login();
  5238. }, 2000);
  5239. } else {
  5240. _formdiv = new U.UF.UI.form(
  5241. "课程详情",
  5242. $$("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 }), {
  5243. "id": "studyDetail",
  5244. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _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); } }
  5250. break;
  5251. }
  5252. case "studyDetailTrain":
  5253. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5254. setTimeout(() => {
  5255. U.MD.U.L.login();
  5256. }, 2000);
  5257. } else {
  5258. _formdiv = new U.UF.UI.form(
  5259. "培训详情",
  5260. $$("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 }), {
  5261. "id": "studyDetailTrain",
  5262. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5263. "onresize": function () { }
  5264. }, {
  5265. closecallback: function () { }
  5266. }, { "style": { "height": "36px" } }).form; //创建窗体
  5267. _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); } }
  5268. break;
  5269. }
  5270. case "studyDetailS":
  5271. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5272. setTimeout(() => {
  5273. U.MD.U.L.login();
  5274. }, 2000);
  5275. } else {
  5276. _formdiv = new U.UF.UI.form(
  5277. "项目详情",
  5278. $$("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 }), {
  5279. "id": "studyDetailS",
  5280. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _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); } }
  5286. break;
  5287. }
  5288. case "studyDetailStudio":
  5289. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5290. setTimeout(() => {
  5291. U.MD.U.L.login();
  5292. }, 2000);
  5293. } else {
  5294. _formdiv = new U.UF.UI.form(
  5295. "工作详情",
  5296. $$("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 }), {
  5297. "id": "studyDetailStudio",
  5298. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5299. "onresize": function () { }
  5300. }, {
  5301. closecallback: function () { }
  5302. }, { "style": { "height": "36px" } }).form; //创建窗体
  5303. _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); } }
  5304. break;
  5305. }
  5306. case "studyDetailS5":
  5307. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5308. setTimeout(() => {
  5309. U.MD.U.L.login();
  5310. }, 2000);
  5311. } else {
  5312. _formdiv = new U.UF.UI.form(
  5313. "项目详情",
  5314. $$("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 }), {
  5315. "id": "studyDetailS",
  5316. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //创建窗体
  5321. _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); } }
  5322. break;
  5323. }
  5324. case "studyDetailGM":
  5325. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5326. setTimeout(() => {
  5327. U.MD.U.L.login();
  5328. }, 2000);
  5329. } else {
  5330. _formdiv = new U.UF.UI.form(
  5331. "课程详情",
  5332. $$("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 }), {
  5333. "id": "studyDetail",
  5334. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //创建窗体
  5339. _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); } }
  5340. break;
  5341. }
  5342. case "hanUrl":
  5343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5344. setTimeout(() => {
  5345. U.MD.U.L.login();
  5346. }, 2000);
  5347. } else {
  5348. _formdiv = new U.UF.UI.form(
  5349. "汉字宫",
  5350. $$("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" }), {
  5351. "id": "hanUrl",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. _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); } }
  5358. break;
  5359. }
  5360. case "index":
  5361. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5362. setTimeout(() => {
  5363. U.MD.U.L.login();
  5364. }, 2000);
  5365. } else {
  5366. _formdiv = new U.UF.UI.form(
  5367. "课程中心",
  5368. $$("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 }), {
  5369. "id": "study",
  5370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5371. "onresize": function () { }
  5372. }, {
  5373. closecallback: function () { }
  5374. }, { "style": { "height": "36px" } }).form; //创建窗体
  5375. _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); } }
  5376. break;
  5377. }
  5378. case "dataClass":
  5379. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5380. setTimeout(() => {
  5381. U.MD.U.L.login();
  5382. }, 2000);
  5383. } else {
  5384. _formdiv = new U.UF.UI.form(
  5385. "数据报告",
  5386. $$("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 }), {
  5387. "id": "dataClass",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5394. break;
  5395. }
  5396. case "opencCscl":
  5397. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5398. setTimeout(() => {
  5399. U.MD.U.L.login();
  5400. }, 2000);
  5401. } else {
  5402. _formdiv = new U.UF.UI.form(
  5403. "协同建构",
  5404. $$("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 }), {
  5405. "id": "futureClass",
  5406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5407. "onresize": function () { }
  5408. }, {
  5409. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5410. }, { "style": { "height": "36px" } }).form; //创建窗体
  5411. _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); } }
  5412. break;
  5413. }
  5414. case "openCourseUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5423. "id": "openCourseUpdate",
  5424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5425. "onresize": function () { }
  5426. }, {
  5427. closecallback: function () { }
  5428. }, { "style": { "height": "36px" } }).form; //创建窗体
  5429. break;
  5430. }
  5431. case "openNewCourseUpdate":
  5432. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5433. setTimeout(() => {
  5434. U.MD.U.L.login();
  5435. }, 2000);
  5436. } else {
  5437. _formdiv = new U.UF.UI.form(
  5438. "课程管理",
  5439. $$("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 }), {
  5440. "id": "openCourseUpdate",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. break;
  5447. }
  5448. case "openCourseEUpdate":
  5449. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5450. setTimeout(() => {
  5451. U.MD.U.L.login();
  5452. }, 2000);
  5453. } else {
  5454. _formdiv = new U.UF.UI.form(
  5455. "课程管理",
  5456. $$("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 }), {
  5457. "id": "openCourseUpdate",
  5458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. break;
  5464. }
  5465. case "openCourseAiUpdate":
  5466. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5467. setTimeout(() => {
  5468. U.MD.U.L.login();
  5469. }, 2000);
  5470. } else {
  5471. _formdiv = new U.UF.UI.form(
  5472. "课程管理",
  5473. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5474. "id": "openCourseUpdate",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. break;
  5481. }
  5482. case "openCourseAiUpdate2":
  5483. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5484. setTimeout(() => {
  5485. U.MD.U.L.login();
  5486. }, 2000);
  5487. } else {
  5488. _formdiv = new U.UF.UI.form(
  5489. "课程管理",
  5490. $$("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 }), {
  5491. "id": "openCourseUpdate",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. break;
  5498. }
  5499. case "openCourseNewUpdate":
  5500. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5501. setTimeout(() => {
  5502. U.MD.U.L.login();
  5503. }, 2000);
  5504. } else {
  5505. _formdiv = new U.UF.UI.form(
  5506. "课程管理",
  5507. $$("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 }), {
  5508. "id": "openCourseUpdate",
  5509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. break;
  5515. }
  5516. case "inviteLoginSz":
  5517. _formdiv = new U.UF.UI.form(
  5518. "随机码登录",
  5519. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5520. "id": "loginSz",
  5521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. break;
  5527. case "loginSz":
  5528. _formdiv = new U.UF.UI.form(
  5529. "教师登录",
  5530. $$("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" }), {
  5531. "id": "loginSz",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. break;
  5538. case "teacher":
  5539. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5540. setTimeout(() => {
  5541. U.MD.U.L.login();
  5542. }, 2000);
  5543. } else {
  5544. _formdiv = new U.UF.UI.form(
  5545. "教师管理",
  5546. $$("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 }), {
  5547. "id": "teacher",
  5548. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //创建窗体
  5553. break;
  5554. }
  5555. case "dataBoardSZArea":
  5556. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5557. setTimeout(() => {
  5558. U.MD.U.L.login();
  5559. }, 2000);
  5560. } else {
  5561. _formdiv = new U.UF.UI.form(
  5562. "综合数据看板",
  5563. $$("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 }), {
  5564. "id": "dataBoardSZArea",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. break;
  5571. }
  5572. case "dataBoardSZCity":
  5573. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5574. setTimeout(() => {
  5575. U.MD.U.L.login();
  5576. }, 2000);
  5577. } else {
  5578. _formdiv = new U.UF.UI.form(
  5579. "综合数据看板",
  5580. $$("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 }), {
  5581. "id": "dataBoardSZCity",
  5582. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. break;
  5588. }
  5589. case "classroom_observation_board":
  5590. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5591. setTimeout(() => {
  5592. U.MD.U.L.login();
  5593. }, 2000);
  5594. } else {
  5595. _formdiv = new U.UF.UI.form(
  5596. "课堂观察",
  5597. $$("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 }), {
  5598. "id": "classroom_observation_board",
  5599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. break;
  5605. }
  5606. case "classroom_observation_ob_comment":
  5607. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5608. setTimeout(() => {
  5609. U.MD.U.L.login();
  5610. }, 2000);
  5611. } else {
  5612. _formdiv = new U.UF.UI.form(
  5613. "课堂审核",
  5614. $$("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 }), {
  5615. "id": "classroom_observation_ob_comment",
  5616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. break;
  5622. }
  5623. case "gptConfig":
  5624. _formdiv = new U.UF.UI.form(
  5625. data.name ? data.name : "应用中心",
  5626. $$("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": data.url }), {
  5627. "id": "gptConfig" + data.id,
  5628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. break;
  5634. }
  5635. }
  5636. U.MD.D.I.openApplication = function (str, obj, info) {
  5637. obj = obj || {};
  5638. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5639. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5640. _userinfo = US.userInfo, //登录用户信息
  5641. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5642. _oid = obj.organizeid || _userinfo.organizeid,
  5643. _type = US.userInfo.type,
  5644. _org = obj.org || US.userInfo.org,
  5645. _role = US.userInfo.role,
  5646. _classId = US.userInfo.classid,
  5647. _TscreenType = 1
  5648. _screenType = 2,
  5649. _SscreenType = 3;
  5650. let iframeBool = true
  5651. if(U.UF.UI.form.allForm[str]){
  5652. iframeBool = false
  5653. }
  5654. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5655. return;
  5656. }
  5657. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student"]
  5658. if(opArray.includes(str)){
  5659. let _str = str
  5660. if(str == 'appStore'){
  5661. _str = "cocoFlow"
  5662. }else if(str == "futureClass"){
  5663. _str = "cocoNote"
  5664. }
  5665. try {
  5666. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5667. } catch (error) {
  5668. console.log(error);
  5669. }
  5670. }
  5671. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5672. switch (str) {
  5673. case "studnetProject": //好友打开
  5674. _formdiv = new U.UF.UI.form(
  5675. "我的项目",
  5676. $$("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 }), {
  5677. "id": "studnetProject",
  5678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _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); } }
  5684. break;
  5685. case "studentEvaluate": //好友打开
  5686. _formdiv = new U.UF.UI.form(
  5687. "我的评价",
  5688. $$("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 }), {
  5689. "id": "studentEvaluate",
  5690. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "my":
  5698. _formdiv = new U.UF.UI.form(
  5699. "我的资料",
  5700. $$("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 }), {
  5701. "id": "my",
  5702. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "program":
  5710. _formdiv = new U.UF.UI.form(
  5711. "编程平台",
  5712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5713. "id": "program",
  5714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. case "library":
  5722. _formdiv = new U.UF.UI.form(
  5723. "素材库",
  5724. $$("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 }), {
  5725. "id": "library",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _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); } }
  5732. break;
  5733. case "whiteboard":
  5734. _formdiv = new U.UF.UI.form(
  5735. "电子白板",
  5736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5737. "id": "whiteboard",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5744. break;
  5745. case "investigation":
  5746. _formdiv = new U.UF.UI.form(
  5747. "问卷调查",
  5748. $$("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 }), {
  5749. "id": "investigation",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5756. break;
  5757. case "note":
  5758. _formdiv = new U.UF.UI.form(
  5759. "便签分类",
  5760. $$("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 }), {
  5761. "id": "note",
  5762. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5768. break;
  5769. // case "score":
  5770. // _formdiv = new U.UF.UI.form(
  5771. // "量规评分",
  5772. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5773. // "id": "score",
  5774. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. // "onresize": function() {}
  5776. // }, {
  5777. // closecallback: function() {}
  5778. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5780. // break;
  5781. case "mind":
  5782. _formdiv = new U.UF.UI.form(
  5783. "思维导图",
  5784. $$("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"
  5785. "id": "mind",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5792. break;
  5793. case "doc":
  5794. // U.MD.D.I.isRoom();
  5795. _formdiv = new U.UF.UI.form(
  5796. "协同文档",
  5797. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5798. "id": "doc",
  5799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5800. "onresize": function () { }
  5801. }, {
  5802. closecallback: function () { }
  5803. }, { "style": { "height": "36px" } }).form; //创建窗体
  5804. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5805. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5806. // })
  5807. _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); } }
  5808. break;
  5809. case "studentStudy":
  5810. _formdiv = new U.UF.UI.form(
  5811. "课程中心",
  5812. $$("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
  5813. "id": "studentStudy",
  5814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. _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); } }
  5820. break;
  5821. case "train": //好友打开
  5822. _formdiv = new U.UF.UI.form(
  5823. "训练平台",
  5824. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5825. "id": "train",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. _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); } }
  5832. break;
  5833. case "mindNetwork": //好友打开
  5834. _formdiv = new U.UF.UI.form(
  5835. "思维网格",
  5836. $$("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 }), {
  5837. "id": "mindNetwork",
  5838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. _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); } }
  5844. break;
  5845. case "studentClassRoom": //好友打开
  5846. _formdiv = new U.UF.UI.form(
  5847. "实时课堂",
  5848. $$("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 }), {
  5849. "id": "studentClassRoom",
  5850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5851. "onresize": function () { }
  5852. }, {
  5853. closecallback: function () { }
  5854. }, { "style": { "height": "36px" } }).form; //创建窗体
  5855. _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); } }
  5856. setTimeout(() => {
  5857. U.UF.F.windowZooming(_formdiv)
  5858. }, 0);
  5859. break;
  5860. }
  5861. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5862. switch (str) {
  5863. case "studnetProject": //好友打开
  5864. _formdiv = new U.UF.UI.form(
  5865. "我的项目",
  5866. $$("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 }), {
  5867. "id": "studnetProject",
  5868. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, { "style": { "height": "36px" } }).form; //创建窗体
  5873. _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); } }
  5874. break;
  5875. case "studentEvaluate": //好友打开
  5876. _formdiv = new U.UF.UI.form(
  5877. "我的评价",
  5878. $$("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 }), {
  5879. "id": "studentEvaluate",
  5880. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //创建窗体
  5885. _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); } }
  5886. break;
  5887. case "my":
  5888. _formdiv = new U.UF.UI.form(
  5889. "我的资料",
  5890. $$("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 }), {
  5891. "id": "my",
  5892. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //创建窗体
  5897. _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); } }
  5898. break;
  5899. case "program":
  5900. _formdiv = new U.UF.UI.form(
  5901. "编程平台",
  5902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5903. "id": "program",
  5904. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //创建窗体
  5909. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5910. break;
  5911. case "library":
  5912. _formdiv = new U.UF.UI.form(
  5913. "素材库",
  5914. $$("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 }), {
  5915. "id": "library",
  5916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5917. "onresize": function () { }
  5918. }, {
  5919. closecallback: function () { }
  5920. }, { "style": { "height": "36px" } }).form; //创建窗体
  5921. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5922. break;
  5923. case "whiteboard":
  5924. _formdiv = new U.UF.UI.form(
  5925. "电子白板",
  5926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5927. "id": "whiteboard",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5934. break;
  5935. case "investigation":
  5936. _formdiv = new U.UF.UI.form(
  5937. "问卷调查",
  5938. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5939. "id": "investigation",
  5940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //创建窗体
  5945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5946. break;
  5947. case "note":
  5948. _formdiv = new U.UF.UI.form(
  5949. "便签分类",
  5950. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5951. "id": "note",
  5952. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //创建窗体
  5957. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5958. break;
  5959. // case "score":
  5960. // _formdiv = new U.UF.UI.form(
  5961. // "量规评分",
  5962. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5963. // "id": "score",
  5964. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5965. // "onresize": function() {}
  5966. // }, {
  5967. // closecallback: function() {}
  5968. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. // _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); } }
  5970. // break;
  5971. case "mind":
  5972. _formdiv = new U.UF.UI.form(
  5973. "思维导图",
  5974. $$("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"
  5975. "id": "mind",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. _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); } }
  5982. break;
  5983. case "doc":
  5984. // U.MD.D.I.isRoom();
  5985. _formdiv = new U.UF.UI.form(
  5986. "协同文档",
  5987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5988. "id": "doc",
  5989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, { "style": { "height": "36px" } }).form; //创建窗体
  5994. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5995. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5996. })
  5997. _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); } }
  5998. break;
  5999. case "train": //好友打开
  6000. _formdiv = new U.UF.UI.form(
  6001. "训练平台",
  6002. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6003. "id": "train",
  6004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6005. "onresize": function () { }
  6006. }, {
  6007. closecallback: function () { }
  6008. }, { "style": { "height": "36px" } }).form; //创建窗体
  6009. _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); } }
  6010. break;
  6011. case "studentStudy":
  6012. _formdiv = new U.UF.UI.form(
  6013. "课程中心",
  6014. $$("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
  6015. "id": "studentStudy",
  6016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //创建窗体
  6021. _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); } }
  6022. break;
  6023. case "mindNetwork": //好友打开
  6024. _formdiv = new U.UF.UI.form(
  6025. "思维网格",
  6026. $$("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 }), {
  6027. "id": "mindNetwork",
  6028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6029. "onresize": function () { }
  6030. }, {
  6031. closecallback: function () { }
  6032. }, { "style": { "height": "36px" } }).form; //创建窗体
  6033. _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); } }
  6034. break;
  6035. case "studentClassRoom": //好友打开
  6036. _formdiv = new U.UF.UI.form(
  6037. "实时课堂",
  6038. $$("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 }), {
  6039. "id": "studentClassRoom",
  6040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, { "style": { "height": "36px" } }).form; //创建窗体
  6045. _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); } }
  6046. setTimeout(() => {
  6047. U.UF.F.windowZooming(_formdiv)
  6048. }, 0);
  6049. break;
  6050. }
  6051. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6052. //选择应用处理
  6053. switch (str) {
  6054. case "project": //好友打开
  6055. _formdiv = new U.UF.UI.form(
  6056. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6057. $$("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 }), {
  6058. "id": "project",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "student":
  6067. _formdiv = new U.UF.UI.form(
  6068. "学生管理",
  6069. $$("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 }), {
  6070. "id": "student",
  6071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. break;
  6078. case "evaluate":
  6079. _formdiv = new U.UF.UI.form(
  6080. "学生评价",
  6081. $$("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 }), {
  6082. "id": "evaluate",
  6083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _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); } }
  6089. break;
  6090. case "sys":
  6091. _formdiv = new U.UF.UI.form(
  6092. "目标管理",
  6093. $$("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 }), {
  6094. "id": "sys",
  6095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. case "courseDesign":
  6103. _formdiv = new U.UF.UI.form(
  6104. "项目设计",
  6105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6106. "id": "courseDesign",
  6107. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //创建窗体
  6112. _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); } }
  6113. break;
  6114. case "program":
  6115. _formdiv = new U.UF.UI.form(
  6116. "编程平台",
  6117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6118. "id": "program",
  6119. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6120. "onresize": function () { }
  6121. }, {
  6122. closecallback: function () { }
  6123. }, { "style": { "height": "36px" } }).form; //创建窗体
  6124. _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); } }
  6125. break;
  6126. case "class":
  6127. _formdiv = new U.UF.UI.form(
  6128. "班级管理",
  6129. $$("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 }), {
  6130. "id": "class",
  6131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6132. "onresize": function () { }
  6133. }, {
  6134. closecallback: function () { }
  6135. }, { "style": { "height": "36px" } }).form; //创建窗体
  6136. _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); } }
  6137. break;
  6138. case "Grade":
  6139. _formdiv = new U.UF.UI.form(
  6140. "年级管理",
  6141. $$("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 }), {
  6142. "id": "Grade",
  6143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //创建窗体
  6148. _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); } }
  6149. break;
  6150. case "teacherOffice":
  6151. _formdiv = new U.UF.UI.form(
  6152. "教研室",
  6153. $$("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 }), {
  6154. "id": "teacherOffice",
  6155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break;
  6162. case "my":
  6163. _formdiv = new U.UF.UI.form(
  6164. "我的资料",
  6165. $$("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 }), {
  6166. "id": "my",
  6167. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "notice":
  6175. _formdiv = new U.UF.UI.form(
  6176. "通知公告",
  6177. $$("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 }), {
  6178. "id": "notice",
  6179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "library":
  6187. _formdiv = new U.UF.UI.form(
  6188. "素材库",
  6189. $$("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 }), {
  6190. "id": "library",
  6191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "whiteboard":
  6199. _formdiv = new U.UF.UI.form(
  6200. "电子白板",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6202. "id": "whiteboard",
  6203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "investigation":
  6211. _formdiv = new U.UF.UI.form(
  6212. "问卷调查",
  6213. $$("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 }), {
  6214. "id": "investigation",
  6215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "note":
  6223. _formdiv = new U.UF.UI.form(
  6224. "便签分类",
  6225. $$("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 }), {
  6226. "id": "note",
  6227. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. // case "score":
  6235. // _formdiv = new U.UF.UI.form(
  6236. // "量规评分",
  6237. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6238. // "id": "score",
  6239. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. // "onresize": function() {}
  6241. // }, {
  6242. // closecallback: function() {}
  6243. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. // _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); } }
  6245. // break;
  6246. case "mind":
  6247. _formdiv = new U.UF.UI.form(
  6248. "思维导图",
  6249. $$("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"
  6250. "id": "mind",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "doc":
  6259. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  6263. "id": "doc",
  6264. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6270. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6271. })
  6272. _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); } }
  6273. break;
  6274. case "study":
  6275. _formdiv = new U.UF.UI.form(
  6276. "课程中心",
  6277. $$("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
  6278. "id": "study",
  6279. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6285. break;
  6286. case "mindNetwork": //好友打开
  6287. _formdiv = new U.UF.UI.form(
  6288. "思维网格",
  6289. $$("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 }), {
  6290. "id": "mindNetwork",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6297. break;
  6298. case "train": //好友打开
  6299. _formdiv = new U.UF.UI.form(
  6300. "训练平台",
  6301. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6302. "id": "mindNetwork",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6309. break;
  6310. case "teacherClassRoom": //好友打开
  6311. _formdiv = new U.UF.UI.form(
  6312. "实时课堂",
  6313. $$("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 }), {
  6314. "id": "teacherClassRoom",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6321. setTimeout(() => {
  6322. U.UF.F.windowZooming(_formdiv)
  6323. }, 0);
  6324. break;
  6325. }
  6326. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6327. switch (str) {
  6328. case "project": //好友打开
  6329. _formdiv = new U.UF.UI.form(
  6330. "课程管理",
  6331. $$("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 }), {
  6332. "id": "project",
  6333. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6339. break;
  6340. case "evaluate":
  6341. _formdiv = new U.UF.UI.form(
  6342. "学生评价",
  6343. $$("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 }), {
  6344. "id": "evaluate",
  6345. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6351. break;
  6352. case "notice":
  6353. _formdiv = new U.UF.UI.form(
  6354. "通知公告",
  6355. $$("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 }), {
  6356. "id": "notice",
  6357. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6363. break;
  6364. case "stuLibrary":
  6365. _formdiv = new U.UF.UI.form(
  6366. "学习资料",
  6367. $$("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 }), {
  6368. "id": "stuLibrary",
  6369. "style": { "width": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6375. break;
  6376. case "program":
  6377. _formdiv = new U.UF.UI.form(
  6378. "编程平台",
  6379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6380. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6387. break;
  6388. case "whiteboard":
  6389. _formdiv = new U.UF.UI.form(
  6390. "电子白板",
  6391. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6392. "id": "whiteboard",
  6393. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6399. break;
  6400. case "investigation":
  6401. _formdiv = new U.UF.UI.form(
  6402. "问卷调查",
  6403. $$("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 }), {
  6404. "id": "investigation",
  6405. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6411. break;
  6412. case "mind":
  6413. _formdiv = new U.UF.UI.form(
  6414. "思维导图",
  6415. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6416. "id": "mind",
  6417. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6423. break;
  6424. case "doc":
  6425. // U.MD.D.I.isRoom();
  6426. _formdiv = new U.UF.UI.form(
  6427. "协同文档",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6429. "id": "doc",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6436. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6437. })
  6438. _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); } }
  6439. break;
  6440. case "study":
  6441. _formdiv = new U.UF.UI.form(
  6442. "课程中心",
  6443. $$("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
  6444. "id": "study",
  6445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //创建窗体
  6450. _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); } }
  6451. break;
  6452. case "mindNetwork": //好友打开
  6453. _formdiv = new U.UF.UI.form(
  6454. "思维网格",
  6455. $$("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 }), {
  6456. "id": "mindNetwork",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. _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); } }
  6463. break;
  6464. case "train": //好友打开
  6465. _formdiv = new U.UF.UI.form(
  6466. "训练平台",
  6467. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6468. "id": "train",
  6469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, { "style": { "height": "36px" } }).form; //创建窗体
  6474. _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); } }
  6475. break;
  6476. case "sys":
  6477. _formdiv = new U.UF.UI.form(
  6478. "目标管理",
  6479. $$("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 }), {
  6480. "id": "sys",
  6481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //创建窗体
  6486. _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); } }
  6487. break;
  6488. case "courseDesign":
  6489. _formdiv = new U.UF.UI.form(
  6490. "项目设计",
  6491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6492. "id": "courseDesign",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //创建窗体
  6498. _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); } }
  6499. break;
  6500. }
  6501. } else if (!_type) {
  6502. switch (str) {
  6503. case "my":
  6504. _formdiv = new U.UF.UI.form(
  6505. "我的资料",
  6506. $$("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 }), {
  6507. "id": "my",
  6508. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. break;
  6515. }
  6516. }
  6517. switch (str) {
  6518. // AIprogram2 AI体验 aihub.cocorobo.cn
  6519. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6520. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6521. case "formulaEdi": //公式编辑
  6522. _formdiv = new U.UF.UI.form(
  6523. "公式编辑",
  6524. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6525. "id": "formulaEdi",
  6526. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6532. break;
  6533. case "molStr": //分子结构
  6534. _formdiv = new U.UF.UI.form(
  6535. "分子结构",
  6536. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6537. "id": "molStr",
  6538. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6544. break;
  6545. case "timeAxis": //时间轴
  6546. _formdiv = new U.UF.UI.form(
  6547. "时间轴",
  6548. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6549. "id": "timeAxis",
  6550. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //创建窗体
  6555. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6556. break;
  6557. case "AIprogram2": //AI体验
  6558. _formdiv = new U.UF.UI.form(
  6559. "AI体验",
  6560. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6561. "id": "AIprogram2",
  6562. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //创建窗体
  6567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6568. break;
  6569. case "Pythonprogram": //python编程
  6570. _formdiv = new U.UF.UI.form(
  6571. "Python编程",
  6572. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6573. "id": "Pythonprogram",
  6574. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6580. break;
  6581. case "AIprogram": //ai编程
  6582. _formdiv = new U.UF.UI.form(
  6583. "AI编程平台",
  6584. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6585. "id": "AIprogram",
  6586. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6592. break;
  6593. case "CocoPi": //CocoPi
  6594. _formdiv = new U.UF.UI.form(
  6595. "CocoPi",
  6596. $$("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" }), {
  6597. "id": "CocoPi",
  6598. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6604. break;
  6605. case "Wood": //Wood
  6606. _formdiv = new U.UF.UI.form(
  6607. "海龟编程",
  6608. $$("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/" }), {
  6609. "id": "Wood",
  6610. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, { "style": { "height": "36px" } }).form; //创建窗体
  6615. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6616. break;
  6617. case "car": //模拟驾驶
  6618. _formdiv = new U.UF.UI.form(
  6619. "模拟驾驶",
  6620. $$("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/" }), {
  6621. "id": "car",
  6622. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //创建窗体
  6627. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6628. break;
  6629. case "lineSearch": //路径搜索
  6630. _formdiv = new U.UF.UI.form(
  6631. "路径搜索",
  6632. $$("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/" }), {
  6633. "id": "lineSearch",
  6634. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //创建窗体
  6639. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6640. break;
  6641. case "deepLearning": //深度学习
  6642. _formdiv = new U.UF.UI.form(
  6643. "深度学习",
  6644. $$("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/#" }), {
  6645. "id": "deepLearning",
  6646. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () { }
  6650. }, { "style": { "height": "36px" } }).form; //创建窗体
  6651. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6652. break;
  6653. case "allHistory": //深度学习
  6654. _formdiv = new U.UF.UI.form(
  6655. "全历史",
  6656. $$("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/" }), {
  6657. "id": "allHistory",
  6658. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6664. break;
  6665. case "chatPDF": //ai编程
  6666. _formdiv = new U.UF.UI.form(
  6667. "chatPDF",
  6668. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6669. "id": "chatPDF",
  6670. "style": { "width": "70%", "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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6676. break;
  6677. case "resources": //国家教育
  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": "https://so.eduyun.cn/synResource" }), {
  6681. "id": "resources",
  6682. "style": { "width": "80%", "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/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6688. break;
  6689. case "codeEdit": //源码编辑
  6690. _formdiv = new U.UF.UI.form(
  6691. "源码编辑",
  6692. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6693. "id": "codeEdit",
  6694. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //创建窗体
  6699. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6700. break; //
  6701. case "MindMap": //MindMap
  6702. _formdiv = new U.UF.UI.form(
  6703. "MindMap",
  6704. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6705. "id": "MindMap",
  6706. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6712. break;
  6713. case "netWorkPanel": //netWorkPanel
  6714. _formdiv = new U.UF.UI.form(
  6715. "netWorkPanel",
  6716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6717. "id": "netWorkPanel",
  6718. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6724. break;
  6725. case "GeoGebra": //GeoGebra
  6726. _formdiv = new U.UF.UI.form(
  6727. "GeoGebra",
  6728. $$("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" }), {
  6729. "id": "GeoGebra",
  6730. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //创建窗体
  6735. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6736. break;
  6737. case "translation": //翻译
  6738. _formdiv = new U.UF.UI.form(
  6739. "翻译",
  6740. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6741. "id": "translation",
  6742. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () { }
  6746. }, { "style": { "height": "36px" } }).form; //创建窗体
  6747. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6748. break;
  6749. case "mohe": //魔盒
  6750. _formdiv = new U.UF.UI.form(
  6751. "魔盒识字",
  6752. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6753. "id": "mohe",
  6754. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6755. "onresize": function () { }
  6756. }, {
  6757. closecallback: function () { }
  6758. }, { "style": { "height": "36px" } }).form; //创建窗体
  6759. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6760. break;
  6761. case "24game": //24点
  6762. _formdiv = new U.UF.UI.form(
  6763. "24点",
  6764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6765. "id": "24game",
  6766. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6772. break;
  6773. case "case":
  6774. _formdiv = new U.UF.UI.form(
  6775. "课程进展",
  6776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6777. "id": "case",
  6778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6784. break;
  6785. case "snf":
  6786. _formdiv = new U.UF.UI.form(
  6787. "赛诺梵",
  6788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6789. "id": "snf",
  6790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6796. break;
  6797. case "hanFamily":
  6798. _formdiv = new U.UF.UI.form(
  6799. "汉字家族",
  6800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6801. "id": "hanFamily",
  6802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. case "hanClassics":
  6810. _formdiv = new U.UF.UI.form(
  6811. "国学经典",
  6812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6813. "id": "hanClassics",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6820. break;
  6821. case "hanTraining":
  6822. _formdiv = new U.UF.UI.form(
  6823. "笔画训练",
  6824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6825. "id": "hanTraining",
  6826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6827. "onresize": function () { }
  6828. }, {
  6829. closecallback: function () { }
  6830. }, { "style": { "height": "36px" } }).form; //创建窗体
  6831. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6832. break;
  6833. case "hanClass":
  6834. _formdiv = new U.UF.UI.form(
  6835. "书法课堂",
  6836. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6837. "id": "hanClass",
  6838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6839. "onresize": function () { }
  6840. }, {
  6841. closecallback: function () { }
  6842. }, { "style": { "height": "36px" } }).form; //创建窗体
  6843. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6844. break;
  6845. case "han":
  6846. _formdiv = new U.UF.UI.form(
  6847. "汉字宫",
  6848. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6849. "id": "han",
  6850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6851. "onresize": function () { }
  6852. }, {
  6853. closecallback: function () { }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "projectGM": //课程管理
  6858. _formdiv = new U.UF.UI.form(
  6859. "课程管理",
  6860. $$("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 }), {
  6861. "id": "projectGM",
  6862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "studyGM": //课程中心
  6870. _formdiv = new U.UF.UI.form(
  6871. "课程中心",
  6872. $$("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
  6873. "id": "study",
  6874. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. // studentGM
  6882. case "studentGM": //学生管理
  6883. _formdiv = new U.UF.UI.form(
  6884. "学生管理",
  6885. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6886. "id": "studentGM",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6893. break;
  6894. case "evaluateGM": //学生评价
  6895. _formdiv = new U.UF.UI.form(
  6896. "学生评价",
  6897. $$("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 }), {
  6898. "id": "evaluateGM",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6905. break;
  6906. // classGM
  6907. case "classGM": //班级管理
  6908. _formdiv = new U.UF.UI.form(
  6909. "班级管理",
  6910. $$("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 }), {
  6911. "id": "classGM",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6918. break;
  6919. // dataGM
  6920. case "dataGM":
  6921. _formdiv = new U.UF.UI.form(
  6922. "我的资料",
  6923. $$("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 }), {
  6924. "id": "dataGM",
  6925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6931. break;
  6932. // caseGM
  6933. case "caseGM": //课程进展
  6934. _formdiv = new U.UF.UI.form(
  6935. "课程进展",
  6936. $$("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 }), {
  6937. "id": "caseGM",
  6938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6939. "onresize": function () { }
  6940. }, {
  6941. closecallback: function () { }
  6942. }, { "style": { "height": "36px" } }).form; //创建窗体
  6943. _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); } }
  6944. break;
  6945. // meterialGM
  6946. case "meterialGM": //素材库
  6947. _formdiv = new U.UF.UI.form(
  6948. "素材库",
  6949. $$("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 }), {
  6950. "id": "meterialGM",
  6951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, { "style": { "height": "36px" } }).form; //创建窗体
  6956. _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); } }
  6957. break;
  6958. // evaluateSGM
  6959. case "evaluateSGM": //我的评价
  6960. _formdiv = new U.UF.UI.form(
  6961. "我的评价",
  6962. $$("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 }), {
  6963. "id": "evaluateSGM",
  6964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //创建窗体
  6969. _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); } }
  6970. break;
  6971. case "jupyter": //jupyter
  6972. _formdiv = new U.UF.UI.form(
  6973. "jupyter",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6975. "id": "jupyter",
  6976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. break;
  6983. case "number": //数字实验室
  6984. _formdiv = new U.UF.UI.form(
  6985. "数字实验室",
  6986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6987. "id": "number",
  6988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () { }
  6992. }, { "style": { "height": "36px" } }).form; //创建窗体
  6993. _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); } }
  6994. break;
  6995. case "studentCourse": //项目管理 学生
  6996. _formdiv = new U.UF.UI.form(
  6997. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6998. $$("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 }), {
  6999. "id": "studentCourse",
  7000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7001. "onresize": function () { }
  7002. }, {
  7003. closecallback: function () { }
  7004. }, { "style": { "height": "36px" } }).form; //创建窗体
  7005. _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); } }
  7006. break;
  7007. case "studentCourseS": //项目管理 老师
  7008. _formdiv = new U.UF.UI.form(
  7009. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7010. $$("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 }), {
  7011. "id": "studentCourseS",
  7012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _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); } }
  7018. break;
  7019. case "studentIndex": //项目中心
  7020. _formdiv = new U.UF.UI.form(
  7021. "项目中心",
  7022. $$("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 }), {
  7023. "id": "studentIndex",
  7024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //创建窗体
  7029. _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); } }
  7030. break;
  7031. case "CaseDesignS":
  7032. _formdiv = new U.UF.UI.form(
  7033. "项目进展",
  7034. $$("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 }), {
  7035. "id": "case",
  7036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //创建窗体
  7041. _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); } }
  7042. break;
  7043. case "tcStudent": //腾讯学生管理
  7044. _formdiv = new U.UF.UI.form(
  7045. "学生管理",
  7046. $$("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 }), {
  7047. "id": "tcStudent",
  7048. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7049. "onresize": function () { }
  7050. }, {
  7051. closecallback: function () { }
  7052. }, { "style": { "height": "36px" } }).form; //创建窗体
  7053. _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); } }
  7054. break;
  7055. case "tcSchool": //腾讯学校管理
  7056. _formdiv = new U.UF.UI.form(
  7057. "学校管理",
  7058. $$("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 }), {
  7059. "id": "tcSchool",
  7060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7061. "onresize": function () { }
  7062. }, {
  7063. closecallback: function () { }
  7064. }, { "style": { "height": "36px" } }).form; //创建窗体
  7065. _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); } }
  7066. break;
  7067. case "tcTeacher": //腾讯学校管理
  7068. _formdiv = new U.UF.UI.form(
  7069. "教师管理",
  7070. $$("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 }), {
  7071. "id": "tcTeacher",
  7072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7073. "onresize": function () { }
  7074. }, {
  7075. closecallback: function () { }
  7076. }, { "style": { "height": "36px" } }).form; //创建窗体
  7077. _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); } }
  7078. break;
  7079. case "teacher":
  7080. _formdiv = new U.UF.UI.form(
  7081. "教师管理",
  7082. $$("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 }), {
  7083. "id": "teacher",
  7084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7085. "onresize": function () { }
  7086. }, {
  7087. closecallback: function () { }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "tcData": //腾讯我的资料
  7092. _formdiv = new U.UF.UI.form(
  7093. "我的资料",
  7094. $$("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 }), {
  7095. "id": "tcData",
  7096. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _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); } }
  7102. break;
  7103. case "tcNotice": //腾讯消息通知
  7104. _formdiv = new U.UF.UI.form(
  7105. "消息通知",
  7106. $$("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 }), {
  7107. "id": "tcNotice",
  7108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _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); } }
  7114. break;
  7115. case "myReport": //好友打开
  7116. _formdiv = new U.UF.UI.form(
  7117. "我的评价",
  7118. $$("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 }), {
  7119. "id": "myReport",
  7120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _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); } }
  7126. break;
  7127. case "learnAna": //好友打开
  7128. _formdiv = new U.UF.UI.form(
  7129. "学习分析",
  7130. $$("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 }), {
  7131. "id": "learnAna",
  7132. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _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); } }
  7138. break;
  7139. case "AIChat": //AI共创
  7140. _formdiv = new U.UF.UI.form(
  7141. "AI共创",
  7142. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7143. "id": "AIChat",
  7144. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. istop: true,
  7148. closecallback: function () { $("#aichat_icon").remove(); },
  7149. narrowcallback: function () {
  7150. if (!$("#aichat_icon")[0]) {
  7151. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7152. }
  7153. },
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _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); } }
  7156. break;
  7157. case "ainew": //AI共创
  7158. _formdiv = new U.UF.UI.form(
  7159. "AI协同",
  7160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7161. "id": "ainew",
  7162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break;
  7169. case "gpt4": //gpt4
  7170. _formdiv = new U.UF.UI.form(
  7171. "AI助手",
  7172. $$("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 }), {
  7173. "id": "gpt4",
  7174. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. case "aigpt": //gpt4
  7182. _formdiv = new U.UF.UI.form(
  7183. "AI助手+",
  7184. $$("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 }), {
  7185. "id": "aigpt",
  7186. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () {
  7190. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7191. }
  7192. }, { "style": { "height": "36px" } }).form; //创建窗体
  7193. _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); } }
  7194. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7195. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7196. })
  7197. break;
  7198. case "aiKnowledge": //aiKnowledge
  7199. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7200. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7201. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7202. }
  7203. _formdiv = new U.UF.UI.form(
  7204. "知识建构",
  7205. $$("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 }), {
  7206. "id": "aiKnowledge",
  7207. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, { "style": { "height": "36px" } }).form; //创建窗体
  7212. _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); } }
  7213. break;
  7214. case "futureClass": //AI共创
  7215. _formdiv = new U.UF.UI.form(
  7216. "协同建构",
  7217. $$("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
  7218. "id": "synergyCourse",
  7219. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7220. "onresize": function () { }
  7221. }, {
  7222. closecallback: function () {
  7223. $("iframe", _formdiv)[0].contentWindow.loginout();
  7224. }
  7225. }, { "style": { "height": "36px" } }).form; //创建窗体
  7226. _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); } }
  7227. break;
  7228. case "aiagent": //ai agent
  7229. _formdiv = new U.UF.UI.form(
  7230. "AI Agent",
  7231. $$("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" }), {
  7232. "id": "AIAgent",
  7233. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7234. "onresize": function () { }
  7235. }, {
  7236. closecallback: function () { }
  7237. }, { "style": { "height": "36px" } }).form; //创建窗体
  7238. _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); } }
  7239. break;
  7240. case "dataBoard": //数据看板
  7241. _formdiv = new U.UF.UI.form(
  7242. "数据看板",
  7243. $$("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 }), {
  7244. "id": "dataBoard",
  7245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //创建窗体
  7250. _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); } }
  7251. break;
  7252. case "dataBoardSies": //数据融合
  7253. _formdiv = new U.UF.UI.form(
  7254. "数据融合",
  7255. $$("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 }), {
  7256. "id": "dataBoardSies",
  7257. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7258. "onresize": function () { }
  7259. }, {
  7260. closecallback: function () { }
  7261. }, { "style": { "height": "36px" } }).form; //创建窗体
  7262. _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); } }
  7263. break;
  7264. case "dataBoardNew": //数据看板
  7265. _formdiv = new U.UF.UI.form(
  7266. "综合看板",
  7267. $$("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 }), {
  7268. "id": "dataBoardNew",
  7269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7270. "onresize": function () { }
  7271. }, {
  7272. closecallback: function () { }
  7273. }, { "style": { "height": "36px" } }).form; //创建窗体
  7274. _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); } }
  7275. break;
  7276. case "dataBoardTest": //数据看板
  7277. _formdiv = new U.UF.UI.form(
  7278. "评测看板",
  7279. $$("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 }), {
  7280. "id": "dataBoardTest",
  7281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7282. "onresize": function () { }
  7283. }, {
  7284. closecallback: function () { }
  7285. }, { "style": { "height": "36px" } }).form; //创建窗体
  7286. _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); } }
  7287. break;
  7288. case "AIAnalyse": //AI共创
  7289. _formdiv = new U.UF.UI.form(
  7290. "AI分析",
  7291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7292. "id": "AIAnalyse",
  7293. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, { "style": { "height": "36px" } }).form; //创建窗体
  7298. _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); } }
  7299. break;
  7300. case "studioCourse": //AI共创
  7301. _formdiv = new U.UF.UI.form(
  7302. "工作管理",
  7303. $$("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 }), {
  7304. "id": "studioCourse",
  7305. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7306. "onresize": function () { }
  7307. }, {
  7308. closecallback: function () { }
  7309. }, { "style": { "height": "36px" } }).form; //创建窗体
  7310. _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); } }
  7311. break;
  7312. case "studioIndex": //AI共创
  7313. _formdiv = new U.UF.UI.form(
  7314. "工作中心",
  7315. $$("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 }), {
  7316. "id": "studioIndex",
  7317. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7318. "onresize": function () { }
  7319. }, {
  7320. closecallback: function () { }
  7321. }, { "style": { "height": "36px" } }).form; //创建窗体
  7322. _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); } }
  7323. break;
  7324. case "source":
  7325. _formdiv = new U.UF.UI.form(
  7326. "教学资源",
  7327. $$("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 }), {
  7328. "id": "source",
  7329. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, { "style": { "height": "36px" } }).form; //创建窗体
  7334. _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); } }
  7335. break;
  7336. case "testTeacher":
  7337. _formdiv = new U.UF.UI.form(
  7338. "智能表单",
  7339. $$("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 }), {
  7340. "id": "testTeacher",
  7341. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, { "style": { "height": "36px" } }).form; //创建窗体
  7346. _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); } }
  7347. break;
  7348. case "testStudent":
  7349. _formdiv = new U.UF.UI.form(
  7350. "教师中心",
  7351. $$("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 }), {
  7352. "id": "testStudent",
  7353. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7354. "onresize": function () { }
  7355. }, {
  7356. closecallback: function () { }
  7357. }, { "style": { "height": "36px" } }).form; //创建窗体
  7358. _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); } }
  7359. break;
  7360. case "testTeacherSies":
  7361. _formdiv = new U.UF.UI.form(
  7362. "教师管理",
  7363. $$("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 }), {
  7364. "id": "testTeacherSies",
  7365. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7366. "onresize": function () { }
  7367. }, {
  7368. closecallback: function () { }
  7369. }, { "style": { "height": "36px" } }).form; //创建窗体
  7370. _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); } }
  7371. break;
  7372. case "testStudentSies":
  7373. _formdiv = new U.UF.UI.form(
  7374. "教师中心",
  7375. $$("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 }), {
  7376. "id": "testStudentSies",
  7377. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7378. "onresize": function () { }
  7379. }, {
  7380. closecallback: function () { }
  7381. }, { "style": { "height": "36px" } }).form; //创建窗体
  7382. _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); } }
  7383. break;
  7384. case "ytpbl": //消息通知
  7385. _formdiv = new U.UF.UI.form(
  7386. "案例征集",
  7387. $$("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 }), {
  7388. "id": "ytpbl",
  7389. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7390. "onresize": function () { }
  7391. }, {
  7392. closecallback: function () { }
  7393. }, { "style": { "height": "36px" } }).form; //创建窗体
  7394. _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); } }
  7395. // 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");
  7396. break;
  7397. case "aiCourseResource": //人工智能窗体
  7398. _formdiv = new U.UF.UI.form(
  7399. false,
  7400. $$("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 }), {
  7401. "id": "aiCourseResource",
  7402. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7403. "onresize": function () { },
  7404. "isdrag": false,
  7405. }, {
  7406. closecallback: function () { }
  7407. }, { "style": { "height": "36px" } }).form; //创建窗体
  7408. _taskbar = ''
  7409. break;
  7410. case "szdjgCocooroboX": //图形化编程
  7411. _formdiv = new U.UF.UI.form(
  7412. "图形化编程",
  7413. $$("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" }), {
  7414. "id": "szdjgCocooroboX",
  7415. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7416. "onresize": function () { }
  7417. }, {
  7418. closecallback: function () { }
  7419. }, { "style": { "height": "36px" } }).form; //创建窗体
  7420. _taskbar = ''
  7421. break;
  7422. case "szdjgPython": //python编程
  7423. _formdiv = new U.UF.UI.form(
  7424. "Python编程",
  7425. $$("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" }), {
  7426. "id": "szdjgPython",
  7427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, { "style": { "height": "36px" } }).form; //创建窗体
  7432. _taskbar = ''
  7433. break;
  7434. case "Record":
  7435. _formdiv = new U.UF.UI.form(
  7436. "观察记录",
  7437. $$("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 }), {
  7438. "id": "Record",
  7439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7440. "onresize": function () { }
  7441. }, {
  7442. closecallback: function () { }
  7443. }, { "style": { "height": "36px" } }).form; //创建窗体
  7444. _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); } }
  7445. break;
  7446. case "aigptCourse":
  7447. _formdiv = new U.UF.UI.form(
  7448. "AI智能体",
  7449. $$("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' }), {
  7450. "id": "aigptCourse",
  7451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7452. "onresize": function () { }
  7453. }, {
  7454. closecallback: function () { }
  7455. }, { "style": { "height": "36px" } }).form; //创建窗体
  7456. _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); } }
  7457. break;
  7458. case "classroomObservation":
  7459. _formdiv = new U.UF.UI.form(
  7460. "课堂观察",
  7461. $$("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 }), {
  7462. "id": "classroomObservation",
  7463. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7464. "onresize": function () { }
  7465. }, {
  7466. closecallback: function () { }
  7467. }, { "style": { "height": "36px" } }).form; //创建窗体
  7468. _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); } }
  7469. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7470. break;
  7471. case "pblCourse":
  7472. _formdiv = new U.UF.UI.form(
  7473. "学生PBL",
  7474. $$("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 }), {
  7475. "id": "pblCourse",
  7476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7477. "onresize": function () { }
  7478. }, {
  7479. closecallback: function () { }
  7480. }, { "style": { "height": "36px" } }).form; //创建窗体
  7481. _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); } }
  7482. break;
  7483. case "appStore":
  7484. U.MD.D.addOp('','cocoflowOpen','')
  7485. _formdiv = new U.UF.UI.form(
  7486. "CocoFlow",
  7487. $$("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.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7488. "id": "appStore",
  7489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7490. "onresize": function () { }
  7491. }, {
  7492. closecallback: function () { }
  7493. }, { "style": { "height": "36px" } }).form; //创建窗体
  7494. _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); } }
  7495. break;
  7496. case "sassPlatform":
  7497. _formdiv = new U.UF.UI.form(
  7498. "Sass通用后台管理",
  7499. $$("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 }), {
  7500. "id": "sassPlatform",
  7501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7502. "onresize": function () { }
  7503. }, {
  7504. closecallback: function () { }
  7505. }, { "style": { "height": "36px" } }).form; //创建窗体
  7506. _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); } }
  7507. break;
  7508. case "EDU":
  7509. _formdiv = new U.UF.UI.form(
  7510. "EDU",
  7511. $$("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" }), {
  7512. "id": "EDU",
  7513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7514. "onresize": function () { }
  7515. }, {
  7516. closecallback: function () { }
  7517. }, { "style": { "height": "36px" } }).form; //创建窗体
  7518. _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); } }
  7519. break;
  7520. case "knowledge":
  7521. _formdiv = new U.UF.UI.form(
  7522. "知识库",
  7523. $$("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 }), {
  7524. "id": "knowledge",
  7525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7526. "onresize": function () { }
  7527. }, {
  7528. closecallback: function () { }
  7529. }, { "style": { "height": "36px" } }).form; //创建窗体
  7530. _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); } }
  7531. break;
  7532. case "userExamine":
  7533. _formdiv = new U.UF.UI.form(
  7534. "账号申请",
  7535. $$("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" }), {
  7536. "id": "userExamine",
  7537. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7538. "onresize": function () { }
  7539. }, {
  7540. closecallback: function () { }
  7541. }, { "style": { "height": "36px" } }).form; //创建窗体
  7542. break;
  7543. case "cocoflowDeskTop": //cocoflowDeskTop
  7544. _formdiv = new U.UF.UI.form(
  7545. false,
  7546. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7547. "id": "cocoflowDeskTop",
  7548. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7549. "onresize": function () { },
  7550. }, {
  7551. closecallback: function () { },
  7552. "isdrag": false,
  7553. }, { "style": { "height": "36px" } }).form; //创建窗体
  7554. _taskbar = ''
  7555. break;
  7556. case "liyuanLogin": //liyuanLogin
  7557. _formdiv = new U.UF.UI.form(
  7558. false,
  7559. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7560. "id": "liyuanLogin",
  7561. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7562. "onresize": function () { },
  7563. }, {
  7564. closecallback: function () { },
  7565. isdrag: false,
  7566. isstretching: false,
  7567. isenlarge: false,
  7568. isnarrow: false
  7569. }, { "style": { "height": "36px" } }).form; //创建窗体
  7570. _taskbar = ''
  7571. break;
  7572. case "updatePaDialog":
  7573. _formdiv = new U.UF.UI.form(
  7574. "密码修改",
  7575. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7576. "id": "updatePaDialog",
  7577. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7578. "onresize": function () { },
  7579. }, {
  7580. closecallback: function () { },
  7581. isclose: false,
  7582. isdrag: false,
  7583. isstretching: false,
  7584. isenlarge: false,
  7585. isnarrow: false
  7586. }, { "style": { "height": "36px" } }).form; //创建窗体
  7587. break;
  7588. }
  7589. //U.MD.D.I.openClick(str);
  7590. //如果有任务栏信息
  7591. if (_taskbar) {
  7592. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7593. }
  7594. if(iframeBool){
  7595. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7596. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7597. // console.log("iframe进入");
  7598. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7599. // };
  7600. setTimeout(() => {
  7601. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7602. }, 2000);
  7603. }
  7604. }
  7605. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7606. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7607. _userinfo = US.userInfo, //登录用户信息
  7608. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7609. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7610. let iframeBool = true;
  7611. let queryString = ''
  7612. if(array && array.length){
  7613. const paramsMap = {
  7614. userid: _userid,
  7615. org: _org,
  7616. oid: _oid,
  7617. type: _type,
  7618. role: _role,
  7619. classId: _classId,
  7620. TscreenType: _TscreenType,
  7621. SscreenType: _SscreenType
  7622. };
  7623. const canshu = array
  7624. .filter(param => paramsMap[param] !== undefined)
  7625. .map(param => `${param}=${paramsMap[param]}`);
  7626. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7627. }
  7628. let _url = url + queryString
  7629. if(U.UF.UI.form.allForm[id]){
  7630. iframeBool = false
  7631. }
  7632. _formdiv = new U.UF.UI.form(
  7633. false,
  7634. $$("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 }),
  7635. {
  7636. "id": id,
  7637. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7638. "onresize": function () { },
  7639. },
  7640. {
  7641. closecallback: function () { },
  7642. isdrag: false,
  7643. isstretching: false,
  7644. isenlarge: false,
  7645. isnarrow: false
  7646. },
  7647. { "style": { "height": "36px" } },
  7648. undefined,
  7649. undefined,
  7650. dom
  7651. ).form
  7652. }
  7653. // U.MD.D.I.openClick = function(str){
  7654. // var click = '';
  7655. // switch(str){
  7656. // case 'friend':
  7657. // click = '我的好友';
  7658. // break;
  7659. // case 'domain':
  7660. // click = '域名管理';
  7661. // break;
  7662. // case 'disk':
  7663. // click = '我的云盘';
  7664. // break;
  7665. // case 'word':
  7666. // click = 'Word';
  7667. // break;
  7668. // case 'excel':
  7669. // click = 'Execl';
  7670. // break;
  7671. // case 'txt':
  7672. // click = '文本文件';
  7673. // break;
  7674. // case 'lookupFriend':
  7675. // click = '查找好友';
  7676. // break;
  7677. // case 'ftp':
  7678. // click = 'FTP';
  7679. // break;
  7680. // case 'group':
  7681. // click = '群组';
  7682. // break;
  7683. // case 'set':
  7684. // click = '我的设置';
  7685. // break;
  7686. // case 'systemSet':
  7687. // click = '系统设置';
  7688. // break;
  7689. // case 'boomYun':
  7690. // click = '互联办公';
  7691. // break;
  7692. // case 'xz':
  7693. // click = '云端下载';
  7694. // break;
  7695. // case 'client':
  7696. // click = '有思浏览器';
  7697. // break;
  7698. // case 'backEndProgramming':
  7699. // click = '在线后台编程';
  7700. // break;
  7701. // case 'frontEndProgramming':
  7702. // click = '在线前端编程';
  7703. // break;
  7704. // default: break;
  7705. // }
  7706. // if(U.MD.D.I.Ip && click){
  7707. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7708. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7709. // })
  7710. // }
  7711. // }
  7712. /**
  7713. *函数作用:ajax简易函数,使用post格式
  7714. *@param url {data} 后台地址
  7715. *@param data {data} 参数json
  7716. *@param fn {data} 回调函数
  7717. *
  7718. */
  7719. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7720. // var xhr = new XMLHttpRequest();
  7721. // xhr.open("GET",url,true);
  7722. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7723. // xhr.onreadystatechange = function(){
  7724. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7725. // fn.call(this,xhr.responseText);
  7726. // }
  7727. // };
  7728. // xhr.send();
  7729. // }
  7730. /*判断是否是内网IP*/
  7731. // U.MD.D.I.isInnerIPFn = function(str){
  7732. // var curPageUrl = str;
  7733. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7734. // curPageUrl =curPageUrl.replace(reg1,'');
  7735. // // console.log('curPageUrl-1 '+curPageUrl);
  7736. // var reg2 = /\:+/g;//替换冒号为一点
  7737. // curPageUrl =curPageUrl.replace(reg2,'.');
  7738. // // console.log('curPageUrl-2 '+curPageUrl);
  7739. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7740. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7741. // if(curPageUrl[2] != '16'){
  7742. // return ipAddress;
  7743. // }else{
  7744. // return false;
  7745. // }
  7746. // }
  7747. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7748. // //compatibility for firefox and chrome
  7749. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7750. // var pc = new myPeerConnection({
  7751. // iceServers: []
  7752. // }),
  7753. // noop = function() {},
  7754. // localIPs = {},
  7755. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7756. // key;
  7757. // function iterateIP(ip) {
  7758. // if (!localIPs[ip]) onNewIP(ip);
  7759. // localIPs[ip] = true;
  7760. // }
  7761. // //create a bogus data channel
  7762. // pc.createDataChannel("");
  7763. // // create offer and set local description
  7764. // pc.createOffer().then(function(sdp) {
  7765. // sdp.sdp.split('\n').forEach(function(line) {
  7766. // if (line.indexOf('candidate') < 0) return;
  7767. // line.match(ipRegex).forEach(iterateIP);
  7768. // });
  7769. // pc.setLocalDescription(sdp, noop, noop);
  7770. // }).catch(function(reason) {
  7771. // // An error occurred, so handle the failure to connect
  7772. // });
  7773. // //sten for candidate events
  7774. // pc.onicecandidate = function(ice) {
  7775. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7776. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7777. // };
  7778. // }
  7779. // U.MD.D.I.getUserIpBool = function(callback){
  7780. // U.MD.D.I.getUserIP(function(ip){
  7781. // alert("Got IP! :" + ip);
  7782. // });
  7783. //}
  7784. //#endregion
  7785. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7786. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7787. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7788. _userinfo = US.userInfo, //登录用户信息
  7789. _userid = US.userInfo.userid //登录用户id
  7790. let _iframe;
  7791. let _cid = cid,
  7792. _stage = stage,
  7793. _task = task,
  7794. _tool = tool;
  7795. var _jie = $$("div", {
  7796. "style": {
  7797. "position": "absolute",
  7798. "bottom": "50px",
  7799. "right": "50px",
  7800. "zIndex": "9999",
  7801. "backgroundColor": "#2268bc",
  7802. "color": "#fff",
  7803. "padding": "12px 20px",
  7804. "cursor": "pointer",
  7805. "borderRadius": "4px",
  7806. },
  7807. "innerHTML": "提交作业"
  7808. })
  7809. let aTool = ''
  7810. let _loading = document.createElement('div')
  7811. _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;"
  7812. // _loading.id = "";
  7813. let _lchild = document.createElement('div')
  7814. let _limg = document.createElement('img')
  7815. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7816. _limg.style = "width: 26px;margin-right: 10px;"
  7817. _lchild.appendChild(_limg)
  7818. let _lspan = document.createElement('span')
  7819. _lspan.innerHTML = "上传中..."
  7820. _lchild.appendChild(_lspan)
  7821. _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%);"
  7822. _loading.appendChild(_lchild)
  7823. var _box = $$('div', {
  7824. "style": {
  7825. "position": "relative",
  7826. "width": "100%",
  7827. "height": "100%",
  7828. },
  7829. })
  7830. _box.appendChild(_loading)
  7831. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7832. switch (str) {
  7833. case "whiteboard":
  7834. aTool = 1;
  7835. _iframe = $$("iframe", {
  7836. "frameborder": "no",
  7837. "border": "0",
  7838. "scrolling ": "no",
  7839. "style": {
  7840. "cssText": "border:0;width:100%;height:100%"
  7841. },
  7842. "src": "https://beta.iwb.cocorobo.cn/"
  7843. })
  7844. _box.appendChild(_iframe);
  7845. _box.appendChild(_jie);
  7846. _formdiv = new U.UF.UI.form(
  7847. "电子白板",
  7848. _box, {
  7849. "id": "whiteboard" + cid + stage + task + tool,
  7850. "style": {
  7851. "width": "90%",
  7852. "height": "90%",
  7853. "overflow": 'hidden'
  7854. },
  7855. "onresize": function () { }
  7856. }, {
  7857. closecallback: function () { }
  7858. }, {
  7859. "style": {
  7860. "height": "36px"
  7861. }
  7862. }).form; //创建窗体
  7863. _taskbar = {
  7864. "id": str + _formdiv.id,
  7865. "style": {
  7866. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7867. },
  7868. "name": "电子白板",
  7869. "forms": _formdiv,
  7870. "click": function () {
  7871. U.MD.D.I.openApplication(str, obj, info);
  7872. }
  7873. }
  7874. break;
  7875. case "mind":
  7876. aTool = 3;
  7877. _iframe = $$("iframe", {
  7878. "frameborder": "no",
  7879. "border": "0",
  7880. "scrolling ": "no",
  7881. "style": {
  7882. "cssText": "border:0;width:100%;height:100%"
  7883. },
  7884. "src": "/kityminder-editor/dist/index.html"
  7885. })
  7886. _box.appendChild(_iframe);
  7887. _box.appendChild(_jie);
  7888. _formdiv = new U.UF.UI.form(
  7889. "思维导图",
  7890. _box, { //"/jsmind/example/demo.html"
  7891. "id": "mind" + cid + stage + task + tool,
  7892. "style": {
  7893. "width": "90%",
  7894. "height": "90%",
  7895. "overflow": 'hidden'
  7896. },
  7897. "onresize": function () { }
  7898. }, {
  7899. closecallback: function () { }
  7900. }, {
  7901. "style": {
  7902. "height": "36px"
  7903. }
  7904. }).form; //创建窗体
  7905. _taskbar = {
  7906. "id": str + _formdiv.id,
  7907. "style": {
  7908. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7909. },
  7910. "name": "思维导图",
  7911. "forms": _formdiv,
  7912. "click": function () {
  7913. U.MD.D.I.openApplication(str, obj, info);
  7914. }
  7915. }
  7916. break;
  7917. case "MindMap":
  7918. aTool = 3;
  7919. _iframe = $$("iframe", {
  7920. "frameborder": "no",
  7921. "border": "0",
  7922. "scrolling ": "no",
  7923. "style": {
  7924. "cssText": "border:0;width:100%;height:100%"
  7925. },
  7926. "src": "//cloud.cocorobo.cn/mind/"
  7927. })
  7928. _box.appendChild(_iframe);
  7929. _box.appendChild(_jie);
  7930. _formdiv = new U.UF.UI.form(
  7931. "思维导图",
  7932. _box, { //"/jsmind/example/demo.html"
  7933. "id": "mind" + cid + stage + task + tool,
  7934. "style": {
  7935. "width": "90%",
  7936. "height": "90%",
  7937. "overflow": 'hidden'
  7938. },
  7939. "onresize": function () { }
  7940. }, {
  7941. closecallback: function () { }
  7942. }, {
  7943. "style": {
  7944. "height": "36px"
  7945. }
  7946. }).form; //创建窗体
  7947. _taskbar = {
  7948. "id": str + _formdiv.id,
  7949. "style": {
  7950. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7951. },
  7952. "name": "思维导图",
  7953. "forms": _formdiv,
  7954. "click": function () {
  7955. U.MD.D.I.openApplication(str, obj, info);
  7956. }
  7957. }
  7958. break;
  7959. case "doc":
  7960. aTool = 6;
  7961. _iframe = $$("iframe", {
  7962. "frameborder": "no",
  7963. "border": "0",
  7964. "scrolling ": "no",
  7965. "style": {
  7966. "cssText": "border:0;width:100%;height:100%"
  7967. },
  7968. "src": "/Office/Word/WordEditArea.htm"
  7969. })
  7970. _box.appendChild(_iframe);
  7971. _box.appendChild(_jie);
  7972. _formdiv = new U.UF.UI.form(
  7973. "协同文档",
  7974. _box, {
  7975. "id": "doc" + cid + stage + task + tool,
  7976. "style": {
  7977. "width": "90%",
  7978. "height": "90%",
  7979. "overflow": 'hidden'
  7980. },
  7981. "onresize": function () { }
  7982. }, {
  7983. closecallback: function () { }
  7984. }, {
  7985. "style": {
  7986. "height": "36px"
  7987. }
  7988. }).form; //创建窗体
  7989. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7990. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7991. })
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/doc.png)"
  7996. },
  7997. "name": "协同文档",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "mindNetwork": //好友打开
  8005. aTool = 7;
  8006. _iframe = $$("iframe", {
  8007. "webkitallowfullscreen": "",
  8008. "mozallowfullscreen": "",
  8009. "allowfullscreen": "",
  8010. "frameborder": "no",
  8011. "border": "0",
  8012. "scrolling ": "no",
  8013. "style": {
  8014. "cssText": "border:0; width:100%; height:100%;"
  8015. },
  8016. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8017. })
  8018. _box.appendChild(_iframe);
  8019. _box.appendChild(_jie);
  8020. _formdiv = new U.UF.UI.form(
  8021. "思维网格",
  8022. _box, {
  8023. "id": "mindNetwork" + cid + stage + task + tool,
  8024. "style": {
  8025. "width": "90%",
  8026. "height": "90%",
  8027. "overflow": 'hidden'
  8028. },
  8029. "onresize": function () { }
  8030. }, {
  8031. closecallback: function () { }
  8032. }, {
  8033. "style": {
  8034. "height": "36px"
  8035. }
  8036. }).form; //创建窗体
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8041. },
  8042. "name": "思维网格",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "courseDesign":
  8050. _iframe = $$("iframe", {
  8051. "webkitallowfullscreen": "",
  8052. "mozallowfullscreen": "",
  8053. "allowfullscreen": "",
  8054. "frameborder": "no",
  8055. "border": "0",
  8056. "scrolling ": "no",
  8057. "style": {
  8058. "cssText": "border:0; width:100%; height:100%;"
  8059. },
  8060. "src": "/course-design-vue"
  8061. })
  8062. _box.appendChild(_iframe);
  8063. _box.appendChild(_jie);
  8064. _formdiv = new U.UF.UI.form(
  8065. "项目设计",
  8066. _box, {
  8067. "id": "courseDesign" + cid + stage + task + tool,
  8068. "style": {
  8069. "width": "90%",
  8070. "height": "90%",
  8071. "overflow": 'hidden'
  8072. },
  8073. "onresize": function () { }
  8074. }, {
  8075. closecallback: function () { }
  8076. }, {
  8077. "style": {
  8078. "height": "36px"
  8079. }
  8080. }).form; //创建窗体
  8081. _taskbar = {
  8082. "id": str + _formdiv.id,
  8083. "style": {
  8084. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8085. },
  8086. "name": "项目设计",
  8087. "forms": _formdiv,
  8088. "click": function () {
  8089. U.MD.D.I.openApplication(str, obj, info);
  8090. }
  8091. }
  8092. break;
  8093. }
  8094. const script1 = document.createElement("script");
  8095. script1.type = "text/javascript";
  8096. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8097. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8098. const script2 = document.createElement("script");
  8099. script2.type = "text/javascript";
  8100. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8101. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8102. const script3 = document.createElement("script");
  8103. script3.type = "text/javascript";
  8104. script3.charset = "UTF-8";
  8105. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8106. const script4 = document.createElement("script");
  8107. script4.type = "text/javascript";
  8108. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8109. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8110. if (_iframe) {
  8111. if (str == 'doc') {
  8112. _iframe = _formdiv.querySelector('iframe')
  8113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8114. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8115. _iframe.contentWindow.document.body.appendChild(script1);
  8116. _iframe.contentWindow.document.body.appendChild(script2);
  8117. // _iframe.contentWindow.document.body.appendChild(script3);
  8118. _iframe.contentWindow.document.body.appendChild(script4);
  8119. })
  8120. if (onloadListener) {
  8121. _iframe.contentDocument.location.reload()
  8122. } else {
  8123. _iframe.contentDocument.location.reload()
  8124. }
  8125. } else if (str == 'courseDesign') {
  8126. U.UF.DL.iframeLoad(_iframe, function () {
  8127. // _iframe.contentWindow.U.MD.O.W.load();
  8128. // _iframe.contentWindow.document.body.appendChild(script1);
  8129. _iframe.contentWindow.document.body.appendChild(script2);
  8130. _iframe.contentWindow.document.body.appendChild(script4);
  8131. })
  8132. } else if (str == 'mind') {
  8133. _iframe = _formdiv.querySelector('iframe')
  8134. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8135. //
  8136. _iframe.contentWindow.document.body.appendChild(script1);
  8137. _iframe.contentWindow.document.body.appendChild(script2);
  8138. _iframe.contentWindow.document.body.appendChild(script4);
  8139. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8140. })
  8141. if (onloadListener) {
  8142. _iframe.contentDocument.location.reload()
  8143. } else {
  8144. _iframe.contentDocument.location.reload()
  8145. }
  8146. } else if (str == 'whiteboard') {
  8147. _iframe = _formdiv.querySelector('iframe')
  8148. let onloadListener = _iframe.onload = () => {
  8149. _iframe.contentWindow.document.body.appendChild(script1);
  8150. _iframe.contentWindow.document.body.appendChild(script2);
  8151. _iframe.contentWindow.document.body.appendChild(script4);
  8152. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8153. };
  8154. // if (onloadListener) {
  8155. // try {
  8156. // _iframe.src += "?cocorobo="+new Date().getTime()
  8157. // _iframe.contentWindow.document.location.reload()
  8158. // } catch (error) {
  8159. // }
  8160. // } else {
  8161. // _iframe.contentDocument.location.reload()
  8162. // }
  8163. } else {
  8164. _iframe.onload = () => {
  8165. _iframe.contentWindow.document.body.appendChild(script1);
  8166. _iframe.contentWindow.document.body.appendChild(script2);
  8167. // _iframe.contentWindow.document.body.appendChild(script3);
  8168. _iframe.contentWindow.document.body.appendChild(script4);
  8169. };
  8170. }
  8171. _jie.onclick = async () => {
  8172. let text = ''
  8173. if (aTool == 1) {
  8174. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8175. } else if (aTool == 6) {
  8176. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8177. } else if (aTool == 3) {
  8178. text = await U.MD.D.I.getEditorContent(_iframe);
  8179. }
  8180. _loading.style.display = 'flex'
  8181. console.log(_loading);
  8182. var _ajs = _iframe.contentWindow.document.createElement("script");
  8183. _ajs.type = "text/javascript";
  8184. _ajs.innerHTML =
  8185. // 'console.log(' + _loading + ');\n' +
  8186. 'var _js = document.createElement("script");\n' +
  8187. '_js.type="text/javascript";\n' +
  8188. '_js.charset="UTF-8";\n' +
  8189. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8190. "_js.onload = function(){\n" +
  8191. ' var a = document.getElementsByTagName("img")\n' +
  8192. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8193. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8194. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8195. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8196. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8197. "beforeUpload_shishi(file," +
  8198. "'" +
  8199. _userid +
  8200. "'" +
  8201. ", " +
  8202. "'" +
  8203. _cid +
  8204. "'" +
  8205. ", " +
  8206. "'" +
  8207. _stage +
  8208. "'" +
  8209. ", " +
  8210. "'" +
  8211. _task +
  8212. "'" +
  8213. ", " +
  8214. "'" +
  8215. _tool +
  8216. "'" +
  8217. ", " +
  8218. "'" +
  8219. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8220. "'" +
  8221. ", " +
  8222. "'" +
  8223. aTool +
  8224. "'" +
  8225. ", " +
  8226. "`" +
  8227. text +
  8228. "`" +
  8229. ")\n" +
  8230. " });\n" +
  8231. "}\n" +
  8232. "document.head.appendChild(_js);\n";
  8233. _iframe.contentWindow.document.head.appendChild(_ajs);
  8234. }
  8235. }
  8236. //U.MD.D.I.openClick(str);
  8237. //如果有任务栏信息
  8238. // if (_taskbar) {
  8239. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8240. // }
  8241. }
  8242. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8243. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8244. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8245. _userinfo = US.userInfo, //登录用户信息
  8246. _userid = US.userInfo.userid //登录用户id
  8247. let _iframe;
  8248. let _cid = cid,
  8249. _stage = stage,
  8250. _task = task,
  8251. _tool = tool;
  8252. var _jie = $$("div", {
  8253. "style": {
  8254. "position": "absolute",
  8255. "bottom": "50px",
  8256. "right": "50px",
  8257. "zIndex": "9999",
  8258. "backgroundColor": "#2268bc",
  8259. "color": "#fff",
  8260. "padding": "12px 20px",
  8261. "cursor": "pointer",
  8262. "borderRadius": "4px",
  8263. },
  8264. "innerHTML": "提交作业"
  8265. })
  8266. let aTool = ''
  8267. let _loading = document.createElement('div')
  8268. _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;"
  8269. // _loading.id = "";
  8270. let _lchild = document.createElement('div')
  8271. let _limg = document.createElement('img')
  8272. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8273. _limg.style = "width: 26px;margin-right: 10px;"
  8274. _lchild.appendChild(_limg)
  8275. let _lspan = document.createElement('span')
  8276. _lspan.innerHTML = "上传中..."
  8277. _lchild.appendChild(_lspan)
  8278. _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%);"
  8279. _loading.appendChild(_lchild)
  8280. let _box = $$('div', {
  8281. "style": {
  8282. "position": "relative",
  8283. "width": "100%",
  8284. "height": "100%",
  8285. },
  8286. })
  8287. _box.appendChild(_loading)
  8288. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8289. switch (str) {
  8290. case "whiteboard":
  8291. aTool = 1;
  8292. _iframe = $$("iframe", {
  8293. "frameborder": "no",
  8294. "border": "0",
  8295. "scrolling ": "no",
  8296. "style": {
  8297. "cssText": "border:0;width:100%;height:100%"
  8298. },
  8299. "src": "https://beta.iwb.cocorobo.cn/"
  8300. })
  8301. _box.appendChild(_iframe);
  8302. _box.appendChild(_jie);
  8303. _formdiv = new U.UF.UI.form(
  8304. "电子白板",
  8305. _box, {
  8306. "id": "whiteboard" + cid + stage + task + tool,
  8307. "style": {
  8308. "width": "90%",
  8309. "height": "90%",
  8310. "overflow": 'hidden'
  8311. },
  8312. "onresize": function () { }
  8313. }, {
  8314. closecallback: function () { }
  8315. }, {
  8316. "style": {
  8317. "height": "36px"
  8318. }
  8319. }).form; //创建窗体
  8320. _taskbar = {
  8321. "id": str + _formdiv.id,
  8322. "style": {
  8323. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8324. },
  8325. "name": "电子白板",
  8326. "forms": _formdiv,
  8327. "click": function () {
  8328. U.MD.D.I.openApplication(str, obj, info);
  8329. }
  8330. }
  8331. break;
  8332. case "mind":
  8333. aTool = 3;
  8334. _iframe = $$("iframe", {
  8335. "frameborder": "no",
  8336. "border": "0",
  8337. "scrolling ": "no",
  8338. "style": {
  8339. "cssText": "border:0;width:100%;height:100%"
  8340. },
  8341. "src": "/kityminder-editor/dist/index.html"
  8342. })
  8343. _box.appendChild(_iframe);
  8344. _box.appendChild(_jie);
  8345. _formdiv = new U.UF.UI.form(
  8346. "思维导图",
  8347. _box, { //"/jsmind/example/demo.html"
  8348. "id": "mind" + cid + stage + task + tool,
  8349. "style": {
  8350. "width": "90%",
  8351. "height": "90%",
  8352. "overflow": 'hidden'
  8353. },
  8354. "onresize": function () { }
  8355. }, {
  8356. closecallback: function () { }
  8357. }, {
  8358. "style": {
  8359. "height": "36px"
  8360. }
  8361. }).form; //创建窗体
  8362. _taskbar = {
  8363. "id": str + _formdiv.id,
  8364. "style": {
  8365. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8366. },
  8367. "name": "思维导图",
  8368. "forms": _formdiv,
  8369. "click": function () {
  8370. U.MD.D.I.openApplication(str, obj, info);
  8371. }
  8372. }
  8373. break;
  8374. case "MindMap":
  8375. aTool = 3;
  8376. _iframe = $$("iframe", {
  8377. "frameborder": "no",
  8378. "border": "0",
  8379. "scrolling ": "no",
  8380. "style": {
  8381. "cssText": "border:0;width:100%;height:100%"
  8382. },
  8383. "src": "//cloud.cocorobo.cn/mind/"
  8384. })
  8385. _box.appendChild(_iframe);
  8386. _box.appendChild(_jie);
  8387. _formdiv = new U.UF.UI.form(
  8388. "思维导图",
  8389. _box, { //"/jsmind/example/demo.html"
  8390. "id": "mind" + cid + stage + task + tool,
  8391. "style": {
  8392. "width": "90%",
  8393. "height": "90%",
  8394. "overflow": 'hidden'
  8395. },
  8396. "onresize": function () { }
  8397. }, {
  8398. closecallback: function () { }
  8399. }, {
  8400. "style": {
  8401. "height": "36px"
  8402. }
  8403. }).form; //创建窗体
  8404. _taskbar = {
  8405. "id": str + _formdiv.id,
  8406. "style": {
  8407. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8408. },
  8409. "name": "思维导图",
  8410. "forms": _formdiv,
  8411. "click": function () {
  8412. U.MD.D.I.openApplication(str, obj, info);
  8413. }
  8414. }
  8415. break;
  8416. case "doc":
  8417. aTool = 6;
  8418. _iframe = $$("iframe", {
  8419. "frameborder": "no",
  8420. "border": "0",
  8421. "scrolling ": "no",
  8422. "style": {
  8423. "cssText": "border:0;width:100%;height:100%"
  8424. },
  8425. "src": "/Office/Word/WordEditArea.htm"
  8426. })
  8427. _box.appendChild(_iframe);
  8428. _box.appendChild(_jie);
  8429. _formdiv = new U.UF.UI.form(
  8430. "协同文档",
  8431. _box, {
  8432. "id": "doc" + cid + stage + task + tool,
  8433. "style": {
  8434. "width": "90%",
  8435. "height": "90%",
  8436. "overflow": 'hidden'
  8437. },
  8438. "onresize": function () { }
  8439. }, {
  8440. closecallback: function () { }
  8441. }, {
  8442. "style": {
  8443. "height": "36px"
  8444. }
  8445. }).form; //创建窗体
  8446. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8447. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8448. })
  8449. _taskbar = {
  8450. "id": str + _formdiv.id,
  8451. "style": {
  8452. "backgroundImage": "url(/img/icon/doc.png)"
  8453. },
  8454. "name": "协同文档",
  8455. "forms": _formdiv,
  8456. "click": function () {
  8457. U.MD.D.I.openApplication(str, obj, info);
  8458. }
  8459. }
  8460. break;
  8461. case "mindNetwork": //好友打开
  8462. aTool = 7;
  8463. _iframe = $$("iframe", {
  8464. "webkitallowfullscreen": "",
  8465. "mozallowfullscreen": "",
  8466. "allowfullscreen": "",
  8467. "frameborder": "no",
  8468. "border": "0",
  8469. "scrolling ": "no",
  8470. "style": {
  8471. "cssText": "border:0; width:100%; height:100%;"
  8472. },
  8473. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8474. })
  8475. _box.appendChild(_iframe);
  8476. _box.appendChild(_jie);
  8477. _formdiv = new U.UF.UI.form(
  8478. "思维网格",
  8479. _box, {
  8480. "id": "mindNetwork" + cid + stage + task + tool,
  8481. "style": {
  8482. "width": "90%",
  8483. "height": "90%",
  8484. "overflow": 'hidden'
  8485. },
  8486. "onresize": function () { }
  8487. }, {
  8488. closecallback: function () { }
  8489. }, {
  8490. "style": {
  8491. "height": "36px"
  8492. }
  8493. }).form; //创建窗体
  8494. _taskbar = {
  8495. "id": str + _formdiv.id,
  8496. "style": {
  8497. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8498. },
  8499. "name": "思维网格",
  8500. "forms": _formdiv,
  8501. "click": function () {
  8502. U.MD.D.I.openApplication(str, obj, info);
  8503. }
  8504. }
  8505. break;
  8506. case "courseDesign":
  8507. _iframe = $$("iframe", {
  8508. "webkitallowfullscreen": "",
  8509. "mozallowfullscreen": "",
  8510. "allowfullscreen": "",
  8511. "frameborder": "no",
  8512. "border": "0",
  8513. "scrolling ": "no",
  8514. "style": {
  8515. "cssText": "border:0; width:100%; height:100%;"
  8516. },
  8517. "src": "/course-design-vue"
  8518. })
  8519. _box.appendChild(_iframe);
  8520. _box.appendChild(_jie);
  8521. _formdiv = new U.UF.UI.form(
  8522. "项目设计",
  8523. _box, {
  8524. "id": "courseDesign" + cid + stage + task + tool,
  8525. "style": {
  8526. "width": "90%",
  8527. "height": "90%",
  8528. "overflow": 'hidden'
  8529. },
  8530. "onresize": function () { }
  8531. }, {
  8532. closecallback: function () { }
  8533. }, {
  8534. "style": {
  8535. "height": "36px"
  8536. }
  8537. }).form; //创建窗体
  8538. _taskbar = {
  8539. "id": str + _formdiv.id,
  8540. "style": {
  8541. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8542. },
  8543. "name": "项目设计",
  8544. "forms": _formdiv,
  8545. "click": function () {
  8546. U.MD.D.I.openApplication(str, obj, info);
  8547. }
  8548. }
  8549. break;
  8550. }
  8551. const script1 = document.createElement("script");
  8552. script1.type = "text/javascript";
  8553. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8554. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8555. const script2 = document.createElement("script");
  8556. script2.type = "text/javascript";
  8557. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8558. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8559. const script3 = document.createElement("script");
  8560. script3.type = "text/javascript";
  8561. script3.charset = "UTF-8";
  8562. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8563. const script4 = document.createElement("script");
  8564. script4.type = "text/javascript";
  8565. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8566. script4.src = window.origin + "/js/Common/jietu2E.js";
  8567. if (_iframe) {
  8568. if (str == 'doc') {
  8569. _iframe = _formdiv.querySelector('iframe')
  8570. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8571. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8572. _iframe.contentWindow.document.body.appendChild(script1);
  8573. _iframe.contentWindow.document.body.appendChild(script2);
  8574. // _iframe.contentWindow.document.body.appendChild(script3);
  8575. _iframe.contentWindow.document.body.appendChild(script4);
  8576. })
  8577. if (onloadListener) {
  8578. _iframe.contentDocument.location.reload()
  8579. } else {
  8580. _iframe.contentDocument.location.reload()
  8581. }
  8582. } else if (str == 'courseDesign') {
  8583. U.UF.DL.iframeLoad(_iframe, function () {
  8584. // _iframe.contentWindow.U.MD.O.W.load();
  8585. // _iframe.contentWindow.document.body.appendChild(script1);
  8586. _iframe.contentWindow.document.body.appendChild(script2);
  8587. _iframe.contentWindow.document.body.appendChild(script4);
  8588. })
  8589. } else if (str == 'mind') {
  8590. _iframe = _formdiv.querySelector('iframe')
  8591. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8592. //
  8593. _iframe.contentWindow.document.body.appendChild(script1);
  8594. _iframe.contentWindow.document.body.appendChild(script2);
  8595. _iframe.contentWindow.document.body.appendChild(script4);
  8596. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8597. })
  8598. if (onloadListener) {
  8599. _iframe.contentDocument.location.reload()
  8600. } else {
  8601. _iframe.contentDocument.location.reload()
  8602. }
  8603. } else if (str == 'whiteboard') {
  8604. _iframe = _formdiv.querySelector('iframe')
  8605. let onloadListener = _iframe.onload = () => {
  8606. _iframe.contentWindow.document.body.appendChild(script1);
  8607. _iframe.contentWindow.document.body.appendChild(script2);
  8608. _iframe.contentWindow.document.body.appendChild(script4);
  8609. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8610. };
  8611. // if (onloadListener) {
  8612. // try {
  8613. // _iframe.src += "?cocorobo="+new Date().getTime()
  8614. // _iframe.contentWindow.document.location.reload()
  8615. // } catch (error) {
  8616. // }
  8617. // } else {
  8618. // _iframe.contentDocument.location.reload()
  8619. // }
  8620. } else {
  8621. _iframe.onload = () => {
  8622. _iframe.contentWindow.document.body.appendChild(script1);
  8623. _iframe.contentWindow.document.body.appendChild(script2);
  8624. // _iframe.contentWindow.document.body.appendChild(script3);
  8625. _iframe.contentWindow.document.body.appendChild(script4);
  8626. };
  8627. }
  8628. _jie.onclick = async () => {
  8629. let text = ''
  8630. if (aTool == 1) {
  8631. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8632. } else if (aTool == 6) {
  8633. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8634. } else if (aTool == 3) {
  8635. text = await U.MD.D.I.getEditorContent(_iframe);
  8636. }
  8637. _loading.style.display = 'flex'
  8638. console.log(_loading);
  8639. var _ajs = _iframe.contentWindow.document.createElement("script");
  8640. _ajs.type = "text/javascript";
  8641. _ajs.innerHTML =
  8642. // 'console.log(' + _loading + ');\n' +
  8643. 'var _js = document.createElement("script");\n' +
  8644. '_js.type="text/javascript";\n' +
  8645. '_js.charset="UTF-8";\n' +
  8646. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8647. "_js.onload = function(){\n" +
  8648. ' var a = document.getElementsByTagName("img")\n' +
  8649. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8650. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8651. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8652. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8653. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8654. "beforeUpload_shishi(file," +
  8655. "'" +
  8656. _userid +
  8657. "'" +
  8658. ", " +
  8659. "'" +
  8660. _cid +
  8661. "'" +
  8662. ", " +
  8663. "'" +
  8664. _stage +
  8665. "'" +
  8666. ", " +
  8667. "'" +
  8668. _task +
  8669. "'" +
  8670. ", " +
  8671. "'" +
  8672. _tool +
  8673. "'" +
  8674. ", " +
  8675. "'" +
  8676. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8677. "'" +
  8678. ", " +
  8679. "'" +
  8680. aTool +
  8681. "'" +
  8682. ", " +
  8683. "`" +
  8684. text +
  8685. "`" +
  8686. ")\n" +
  8687. " });\n" +
  8688. "}\n" +
  8689. "document.head.appendChild(_js);\n";
  8690. _iframe.contentWindow.document.head.appendChild(_ajs);
  8691. }
  8692. }
  8693. //U.MD.D.I.openClick(str);
  8694. //如果有任务栏信息
  8695. // if (_taskbar) {
  8696. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8697. // }
  8698. }
  8699. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8700. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8701. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8702. _userid = student.userid, //登录用户id
  8703. _username = student.student //用户名字
  8704. let _iframe;
  8705. let _cid = cid,
  8706. _stage = stage,
  8707. _task = task,
  8708. _tool = tool;
  8709. var _jie = $$("div", {
  8710. "style": {
  8711. "position": "absolute",
  8712. "bottom": "50px",
  8713. "right": "50px",
  8714. "zIndex": "9999",
  8715. "backgroundColor": "#2268bc",
  8716. "color": "#fff",
  8717. "padding": "12px 20px",
  8718. "cursor": "pointer",
  8719. "borderRadius": "4px",
  8720. },
  8721. "innerHTML": "提交作业"
  8722. })
  8723. let aTool = ''
  8724. let _loading = document.createElement('div')
  8725. _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;"
  8726. // _loading.id = "";
  8727. let _lchild = document.createElement('div')
  8728. let _limg = document.createElement('img')
  8729. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8730. _limg.style = "width: 26px;margin-right: 10px;"
  8731. _lchild.appendChild(_limg)
  8732. let _lspan = document.createElement('span')
  8733. _lspan.innerHTML = "上传中..."
  8734. _lchild.appendChild(_lspan)
  8735. _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%);"
  8736. _loading.appendChild(_lchild)
  8737. var _box = $$('div', {
  8738. "style": {
  8739. "position": "relative",
  8740. "width": "100%",
  8741. "height": "100%",
  8742. },
  8743. })
  8744. _box.appendChild(_loading)
  8745. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8746. switch (str) {
  8747. case "whiteboard":
  8748. aTool = 1;
  8749. _iframe = $$("iframe", {
  8750. "frameborder": "no",
  8751. "border": "0",
  8752. "scrolling ": "no",
  8753. "style": {
  8754. "cssText": "border:0;width:100%;height:100%"
  8755. },
  8756. "src": "https://beta.iwb.cocorobo.cn/"
  8757. })
  8758. _box.appendChild(_iframe);
  8759. _box.appendChild(_jie);
  8760. _formdiv = new U.UF.UI.form(
  8761. "电子白板-" + _username,
  8762. _box, {
  8763. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8764. "style": {
  8765. "width": "90%",
  8766. "height": "90%",
  8767. "overflow": 'hidden'
  8768. },
  8769. "onresize": function () { }
  8770. }, {
  8771. closecallback: function () { }
  8772. }, {
  8773. "style": {
  8774. "height": "36px"
  8775. }
  8776. }).form; //创建窗体
  8777. _taskbar = {
  8778. "id": str + _formdiv.id,
  8779. "style": {
  8780. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8781. },
  8782. "name": "电子白板",
  8783. "forms": _formdiv,
  8784. "click": function () {
  8785. U.MD.D.I.openApplication(str, obj, info);
  8786. }
  8787. }
  8788. break;
  8789. case "mind":
  8790. aTool = 3;
  8791. _iframe = $$("iframe", {
  8792. "frameborder": "no",
  8793. "border": "0",
  8794. "scrolling ": "no",
  8795. "style": {
  8796. "cssText": "border:0;width:100%;height:100%"
  8797. },
  8798. "src": "/kityminder-editor/dist/index.html"
  8799. })
  8800. _box.appendChild(_iframe);
  8801. _box.appendChild(_jie);
  8802. _formdiv = new U.UF.UI.form(
  8803. "思维导图-" + _username,
  8804. _box, { //"/jsmind/example/demo.html"
  8805. "id": "mind" + cid + stage + task + tool + _userid,
  8806. "style": {
  8807. "width": "90%",
  8808. "height": "90%",
  8809. "overflow": 'hidden'
  8810. },
  8811. "onresize": function () { }
  8812. }, {
  8813. closecallback: function () { }
  8814. }, {
  8815. "style": {
  8816. "height": "36px"
  8817. }
  8818. }).form; //创建窗体
  8819. _taskbar = {
  8820. "id": str + _formdiv.id,
  8821. "style": {
  8822. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8823. },
  8824. "name": "思维导图",
  8825. "forms": _formdiv,
  8826. "click": function () {
  8827. U.MD.D.I.openApplication(str, obj, info);
  8828. }
  8829. }
  8830. break;
  8831. case "MindMap":
  8832. aTool = 3;
  8833. _iframe = $$("iframe", {
  8834. "frameborder": "no",
  8835. "border": "0",
  8836. "scrolling ": "no",
  8837. "style": {
  8838. "cssText": "border:0;width:100%;height:100%"
  8839. },
  8840. "src": "//cloud.cocorobo.cn/mind/"
  8841. })
  8842. _box.appendChild(_iframe);
  8843. _box.appendChild(_jie);
  8844. _formdiv = new U.UF.UI.form(
  8845. "思维导图-" + _username,
  8846. _box, { //"/jsmind/example/demo.html"
  8847. "id": "mind" + cid + stage + task + tool + _userid,
  8848. "style": {
  8849. "width": "90%",
  8850. "height": "90%",
  8851. "overflow": 'hidden'
  8852. },
  8853. "onresize": function () { }
  8854. }, {
  8855. closecallback: function () { }
  8856. }, {
  8857. "style": {
  8858. "height": "36px"
  8859. }
  8860. }).form; //创建窗体
  8861. _taskbar = {
  8862. "id": str + _formdiv.id,
  8863. "style": {
  8864. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8865. },
  8866. "name": "思维导图",
  8867. "forms": _formdiv,
  8868. "click": function () {
  8869. U.MD.D.I.openApplication(str, obj, info);
  8870. }
  8871. }
  8872. break;
  8873. case "doc":
  8874. aTool = 6;
  8875. _iframe = $$("iframe", {
  8876. "frameborder": "no",
  8877. "border": "0",
  8878. "scrolling ": "no",
  8879. "style": {
  8880. "cssText": "border:0;width:100%;height:100%"
  8881. },
  8882. "src": "/Office/Word/WordEditArea.htm"
  8883. })
  8884. _box.appendChild(_iframe);
  8885. _box.appendChild(_jie);
  8886. _formdiv = new U.UF.UI.form(
  8887. "协同文档-" + _username,
  8888. _box, {
  8889. "id": "doc" + cid + stage + task + tool + _userid,
  8890. "style": {
  8891. "width": "90%",
  8892. "height": "90%",
  8893. "overflow": 'hidden'
  8894. },
  8895. "onresize": function () { }
  8896. }, {
  8897. closecallback: function () { }
  8898. }, {
  8899. "style": {
  8900. "height": "36px"
  8901. }
  8902. }).form; //创建窗体
  8903. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8904. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8905. })
  8906. _taskbar = {
  8907. "id": str + _formdiv.id,
  8908. "style": {
  8909. "backgroundImage": "url(/img/icon/doc.png)"
  8910. },
  8911. "name": "协同文档",
  8912. "forms": _formdiv,
  8913. "click": function () {
  8914. U.MD.D.I.openApplication(str, obj, info);
  8915. }
  8916. }
  8917. break;
  8918. case "mindNetwork": //好友打开
  8919. aTool = 7;
  8920. _iframe = $$("iframe", {
  8921. "webkitallowfullscreen": "",
  8922. "mozallowfullscreen": "",
  8923. "allowfullscreen": "",
  8924. "frameborder": "no",
  8925. "border": "0",
  8926. "scrolling ": "no",
  8927. "style": {
  8928. "cssText": "border:0; width:100%; height:100%;"
  8929. },
  8930. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8931. })
  8932. _box.appendChild(_iframe);
  8933. _box.appendChild(_jie);
  8934. _formdiv = new U.UF.UI.form(
  8935. "思维网格-" + _username,
  8936. _box, {
  8937. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8938. "style": {
  8939. "width": "90%",
  8940. "height": "90%",
  8941. "overflow": 'hidden'
  8942. },
  8943. "onresize": function () { }
  8944. }, {
  8945. closecallback: function () { }
  8946. }, {
  8947. "style": {
  8948. "height": "36px"
  8949. }
  8950. }).form; //创建窗体
  8951. _taskbar = {
  8952. "id": str + _formdiv.id,
  8953. "style": {
  8954. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8955. },
  8956. "name": "思维网格",
  8957. "forms": _formdiv,
  8958. "click": function () {
  8959. U.MD.D.I.openApplication(str, obj, info);
  8960. }
  8961. }
  8962. break;
  8963. case "courseDesign":
  8964. _iframe = $$("iframe", {
  8965. "webkitallowfullscreen": "",
  8966. "mozallowfullscreen": "",
  8967. "allowfullscreen": "",
  8968. "frameborder": "no",
  8969. "border": "0",
  8970. "scrolling ": "no",
  8971. "style": {
  8972. "cssText": "border:0; width:100%; height:100%;"
  8973. },
  8974. "src": "/course-design-vue"
  8975. })
  8976. _box.appendChild(_iframe);
  8977. _box.appendChild(_jie);
  8978. _formdiv = new U.UF.UI.form(
  8979. "项目设计-" + _username,
  8980. _box, {
  8981. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8982. "style": {
  8983. "width": "90%",
  8984. "height": "90%",
  8985. "overflow": 'hidden'
  8986. },
  8987. "onresize": function () { }
  8988. }, {
  8989. closecallback: function () { }
  8990. }, {
  8991. "style": {
  8992. "height": "36px"
  8993. }
  8994. }).form; //创建窗体
  8995. _taskbar = {
  8996. "id": str + _formdiv.id,
  8997. "style": {
  8998. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8999. },
  9000. "name": "项目设计",
  9001. "forms": _formdiv,
  9002. "click": function () {
  9003. U.MD.D.I.openApplication(str, obj, info);
  9004. }
  9005. }
  9006. break;
  9007. }
  9008. const script1 = document.createElement("script");
  9009. script1.type = "text/javascript";
  9010. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9011. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9012. const script2 = document.createElement("script");
  9013. script2.type = "text/javascript";
  9014. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9015. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9016. const script3 = document.createElement("script");
  9017. script3.type = "text/javascript";
  9018. script3.charset = "UTF-8";
  9019. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9020. const script4 = document.createElement("script");
  9021. script4.type = "text/javascript";
  9022. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9023. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9024. if (_iframe) {
  9025. if (str == 'doc') {
  9026. _iframe = _formdiv.querySelector('iframe')
  9027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9028. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9029. _iframe.contentWindow.document.body.appendChild(script1);
  9030. _iframe.contentWindow.document.body.appendChild(script2);
  9031. // _iframe.contentWindow.document.body.appendChild(script3);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. if (onloadListener) {
  9035. _iframe.contentDocument.location.reload()
  9036. } else {
  9037. _iframe.contentDocument.location.reload()
  9038. }
  9039. } else if (str == 'courseDesign') {
  9040. U.UF.DL.iframeLoad(_iframe, function () {
  9041. // _iframe.contentWindow.U.MD.O.W.load();
  9042. // _iframe.contentWindow.document.body.appendChild(script1);
  9043. _iframe.contentWindow.document.body.appendChild(script2);
  9044. _iframe.contentWindow.document.body.appendChild(script4);
  9045. })
  9046. } else if (str == 'mind') {
  9047. _iframe = _formdiv.querySelector('iframe')
  9048. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9049. //
  9050. _iframe.contentWindow.document.body.appendChild(script1);
  9051. _iframe.contentWindow.document.body.appendChild(script2);
  9052. _iframe.contentWindow.document.body.appendChild(script4);
  9053. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9054. })
  9055. if (onloadListener) {
  9056. _iframe.contentDocument.location.reload()
  9057. } else {
  9058. _iframe.contentDocument.location.reload()
  9059. }
  9060. } else if (str == 'whiteboard') {
  9061. _iframe = _formdiv.querySelector('iframe')
  9062. let onloadListener = _iframe.onload = () => {
  9063. _iframe.contentWindow.document.body.appendChild(script1);
  9064. _iframe.contentWindow.document.body.appendChild(script2);
  9065. _iframe.contentWindow.document.body.appendChild(script4);
  9066. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9067. };
  9068. // if (onloadListener) {
  9069. // try {
  9070. // _iframe.src += "?cocorobo="+new Date().getTime()
  9071. // _iframe.contentWindow.document.location.reload()
  9072. // } catch (error) {
  9073. // }
  9074. // } else {
  9075. // _iframe.contentDocument.location.reload()
  9076. // }
  9077. } else {
  9078. _iframe.onload = () => {
  9079. _iframe.contentWindow.document.body.appendChild(script1);
  9080. _iframe.contentWindow.document.body.appendChild(script2);
  9081. // _iframe.contentWindow.document.body.appendChild(script3);
  9082. _iframe.contentWindow.document.body.appendChild(script4);
  9083. };
  9084. }
  9085. _jie.onclick = async () => {
  9086. let text = ''
  9087. if (aTool == 1) {
  9088. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9089. } else if (aTool == 6) {
  9090. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9091. } else if (aTool == 3) {
  9092. text = await U.MD.D.I.getEditorContent(_iframe);
  9093. }
  9094. _loading.style.display = 'flex'
  9095. console.log(_loading);
  9096. var _ajs = _iframe.contentWindow.document.createElement("script");
  9097. _ajs.type = "text/javascript";
  9098. _ajs.innerHTML =
  9099. // 'console.log(' + _loading + ');\n' +
  9100. 'var _js = document.createElement("script");\n' +
  9101. '_js.type="text/javascript";\n' +
  9102. '_js.charset="UTF-8";\n' +
  9103. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9104. "_js.onload = function(){\n" +
  9105. ' var a = document.getElementsByTagName("img")\n' +
  9106. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9107. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9108. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9109. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9110. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9111. "beforeUpload_shishi(file," +
  9112. "'" +
  9113. _userid +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. _cid +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. _stage +
  9122. "'" +
  9123. ", " +
  9124. "'" +
  9125. _task +
  9126. "'" +
  9127. ", " +
  9128. "'" +
  9129. _tool +
  9130. "'" +
  9131. ", " +
  9132. "'" +
  9133. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9134. "'" +
  9135. ", " +
  9136. "'" +
  9137. aTool +
  9138. "'" +
  9139. ", " +
  9140. "`" +
  9141. text +
  9142. "`" +
  9143. ")\n" +
  9144. " });\n" +
  9145. "}\n" +
  9146. "document.head.appendChild(_js);\n";
  9147. _iframe.contentWindow.document.head.appendChild(_ajs);
  9148. }
  9149. }
  9150. }
  9151. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9152. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9153. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9154. _userid = student.userid, //登录用户id
  9155. _username = student.student //用户名字
  9156. let _iframe;
  9157. let _cid = cid,
  9158. _stage = stage,
  9159. _task = task,
  9160. _tool = tool;
  9161. var _jie = $$("div", {
  9162. "style": {
  9163. "position": "absolute",
  9164. "bottom": "50px",
  9165. "right": "50px",
  9166. "zIndex": "9999",
  9167. "backgroundColor": "#2268bc",
  9168. "color": "#fff",
  9169. "padding": "12px 20px",
  9170. "cursor": "pointer",
  9171. "borderRadius": "4px",
  9172. },
  9173. "innerHTML": "提交作业"
  9174. })
  9175. let aTool = ''
  9176. let _loading = document.createElement('div')
  9177. _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;"
  9178. // _loading.id = "";
  9179. let _lchild = document.createElement('div')
  9180. let _limg = document.createElement('img')
  9181. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9182. _limg.style = "width: 26px;margin-right: 10px;"
  9183. _lchild.appendChild(_limg)
  9184. let _lspan = document.createElement('span')
  9185. _lspan.innerHTML = "上传中..."
  9186. _lchild.appendChild(_lspan)
  9187. _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%);"
  9188. _loading.appendChild(_lchild)
  9189. var _box = $$('div', {
  9190. "style": {
  9191. "position": "relative",
  9192. "width": "100%",
  9193. "height": "100%",
  9194. },
  9195. })
  9196. _box.appendChild(_loading)
  9197. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9198. switch (str) {
  9199. case "whiteboard":
  9200. aTool = 1;
  9201. _iframe = $$("iframe", {
  9202. "frameborder": "no",
  9203. "border": "0",
  9204. "scrolling ": "no",
  9205. "style": {
  9206. "cssText": "border:0;width:100%;height:100%"
  9207. },
  9208. "src": "https://beta.iwb.cocorobo.cn/"
  9209. })
  9210. _box.appendChild(_iframe);
  9211. _box.appendChild(_jie);
  9212. _formdiv = new U.UF.UI.form(
  9213. "电子白板-" + _username,
  9214. _box, {
  9215. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9216. "style": {
  9217. "width": "90%",
  9218. "height": "90%",
  9219. "overflow": 'hidden'
  9220. },
  9221. "onresize": function () { }
  9222. }, {
  9223. closecallback: function () { }
  9224. }, {
  9225. "style": {
  9226. "height": "36px"
  9227. }
  9228. }).form; //创建窗体
  9229. _taskbar = {
  9230. "id": str + _formdiv.id,
  9231. "style": {
  9232. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9233. },
  9234. "name": "电子白板",
  9235. "forms": _formdiv,
  9236. "click": function () {
  9237. U.MD.D.I.openApplication(str, obj, info);
  9238. }
  9239. }
  9240. break;
  9241. case "mind":
  9242. aTool = 3;
  9243. _iframe = $$("iframe", {
  9244. "frameborder": "no",
  9245. "border": "0",
  9246. "scrolling ": "no",
  9247. "style": {
  9248. "cssText": "border:0;width:100%;height:100%"
  9249. },
  9250. "src": "/kityminder-editor/dist/index.html"
  9251. })
  9252. _box.appendChild(_iframe);
  9253. _box.appendChild(_jie);
  9254. _formdiv = new U.UF.UI.form(
  9255. "思维导图-" + _username,
  9256. _box, { //"/jsmind/example/demo.html"
  9257. "id": "mind" + cid + stage + task + tool + _userid,
  9258. "style": {
  9259. "width": "90%",
  9260. "height": "90%",
  9261. "overflow": 'hidden'
  9262. },
  9263. "onresize": function () { }
  9264. }, {
  9265. closecallback: function () { }
  9266. }, {
  9267. "style": {
  9268. "height": "36px"
  9269. }
  9270. }).form; //创建窗体
  9271. _taskbar = {
  9272. "id": str + _formdiv.id,
  9273. "style": {
  9274. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9275. },
  9276. "name": "思维导图",
  9277. "forms": _formdiv,
  9278. "click": function () {
  9279. U.MD.D.I.openApplication(str, obj, info);
  9280. }
  9281. }
  9282. break;
  9283. case "MindMap":
  9284. aTool = 3;
  9285. _iframe = $$("iframe", {
  9286. "frameborder": "no",
  9287. "border": "0",
  9288. "scrolling ": "no",
  9289. "style": {
  9290. "cssText": "border:0;width:100%;height:100%"
  9291. },
  9292. "src": "//cloud.cocorobo.cn/mind/"
  9293. })
  9294. _box.appendChild(_iframe);
  9295. _box.appendChild(_jie);
  9296. _formdiv = new U.UF.UI.form(
  9297. "思维导图-" + _username,
  9298. _box, { //"/jsmind/example/demo.html"
  9299. "id": "mind" + cid + stage + task + tool + _userid,
  9300. "style": {
  9301. "width": "90%",
  9302. "height": "90%",
  9303. "overflow": 'hidden'
  9304. },
  9305. "onresize": function () { }
  9306. }, {
  9307. closecallback: function () { }
  9308. }, {
  9309. "style": {
  9310. "height": "36px"
  9311. }
  9312. }).form; //创建窗体
  9313. _taskbar = {
  9314. "id": str + _formdiv.id,
  9315. "style": {
  9316. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9317. },
  9318. "name": "思维导图",
  9319. "forms": _formdiv,
  9320. "click": function () {
  9321. U.MD.D.I.openApplication(str, obj, info);
  9322. }
  9323. }
  9324. break;
  9325. case "doc":
  9326. aTool = 6;
  9327. _iframe = $$("iframe", {
  9328. "frameborder": "no",
  9329. "border": "0",
  9330. "scrolling ": "no",
  9331. "style": {
  9332. "cssText": "border:0;width:100%;height:100%"
  9333. },
  9334. "src": "/Office/Word/WordEditArea.htm"
  9335. })
  9336. _box.appendChild(_iframe);
  9337. _box.appendChild(_jie);
  9338. _formdiv = new U.UF.UI.form(
  9339. "协同文档-" + _username,
  9340. _box, {
  9341. "id": "doc" + cid + stage + task + tool + _userid,
  9342. "style": {
  9343. "width": "90%",
  9344. "height": "90%",
  9345. "overflow": 'hidden'
  9346. },
  9347. "onresize": function () { }
  9348. }, {
  9349. closecallback: function () { }
  9350. }, {
  9351. "style": {
  9352. "height": "36px"
  9353. }
  9354. }).form; //创建窗体
  9355. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9356. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9357. })
  9358. _taskbar = {
  9359. "id": str + _formdiv.id,
  9360. "style": {
  9361. "backgroundImage": "url(/img/icon/doc.png)"
  9362. },
  9363. "name": "协同文档",
  9364. "forms": _formdiv,
  9365. "click": function () {
  9366. U.MD.D.I.openApplication(str, obj, info);
  9367. }
  9368. }
  9369. break;
  9370. case "mindNetwork": //好友打开
  9371. aTool = 7;
  9372. _iframe = $$("iframe", {
  9373. "webkitallowfullscreen": "",
  9374. "mozallowfullscreen": "",
  9375. "allowfullscreen": "",
  9376. "frameborder": "no",
  9377. "border": "0",
  9378. "scrolling ": "no",
  9379. "style": {
  9380. "cssText": "border:0; width:100%; height:100%;"
  9381. },
  9382. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9383. })
  9384. _box.appendChild(_iframe);
  9385. _box.appendChild(_jie);
  9386. _formdiv = new U.UF.UI.form(
  9387. "思维网格-" + _username,
  9388. _box, {
  9389. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9390. "style": {
  9391. "width": "90%",
  9392. "height": "90%",
  9393. "overflow": 'hidden'
  9394. },
  9395. "onresize": function () { }
  9396. }, {
  9397. closecallback: function () { }
  9398. }, {
  9399. "style": {
  9400. "height": "36px"
  9401. }
  9402. }).form; //创建窗体
  9403. _taskbar = {
  9404. "id": str + _formdiv.id,
  9405. "style": {
  9406. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9407. },
  9408. "name": "思维网格",
  9409. "forms": _formdiv,
  9410. "click": function () {
  9411. U.MD.D.I.openApplication(str, obj, info);
  9412. }
  9413. }
  9414. break;
  9415. case "courseDesign":
  9416. _iframe = $$("iframe", {
  9417. "webkitallowfullscreen": "",
  9418. "mozallowfullscreen": "",
  9419. "allowfullscreen": "",
  9420. "frameborder": "no",
  9421. "border": "0",
  9422. "scrolling ": "no",
  9423. "style": {
  9424. "cssText": "border:0; width:100%; height:100%;"
  9425. },
  9426. "src": "/course-design-vue"
  9427. })
  9428. _box.appendChild(_iframe);
  9429. _box.appendChild(_jie);
  9430. _formdiv = new U.UF.UI.form(
  9431. "项目设计-" + _username,
  9432. _box, {
  9433. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9434. "style": {
  9435. "width": "90%",
  9436. "height": "90%",
  9437. "overflow": 'hidden'
  9438. },
  9439. "onresize": function () { }
  9440. }, {
  9441. closecallback: function () { }
  9442. }, {
  9443. "style": {
  9444. "height": "36px"
  9445. }
  9446. }).form; //创建窗体
  9447. _taskbar = {
  9448. "id": str + _formdiv.id,
  9449. "style": {
  9450. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9451. },
  9452. "name": "项目设计",
  9453. "forms": _formdiv,
  9454. "click": function () {
  9455. U.MD.D.I.openApplication(str, obj, info);
  9456. }
  9457. }
  9458. break;
  9459. }
  9460. const script1 = document.createElement("script");
  9461. script1.type = "text/javascript";
  9462. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9463. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9464. const script2 = document.createElement("script");
  9465. script2.type = "text/javascript";
  9466. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9467. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9468. const script3 = document.createElement("script");
  9469. script3.type = "text/javascript";
  9470. script3.charset = "UTF-8";
  9471. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9472. const script4 = document.createElement("script");
  9473. script4.type = "text/javascript";
  9474. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9475. script4.src = window.origin + "/js/Common/jietu2E.js";
  9476. if (_iframe) {
  9477. if (str == 'doc') {
  9478. _iframe = _formdiv.querySelector('iframe')
  9479. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9480. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9481. _iframe.contentWindow.document.body.appendChild(script1);
  9482. _iframe.contentWindow.document.body.appendChild(script2);
  9483. // _iframe.contentWindow.document.body.appendChild(script3);
  9484. _iframe.contentWindow.document.body.appendChild(script4);
  9485. })
  9486. if (onloadListener) {
  9487. _iframe.contentDocument.location.reload()
  9488. } else {
  9489. _iframe.contentDocument.location.reload()
  9490. }
  9491. } else if (str == 'courseDesign') {
  9492. U.UF.DL.iframeLoad(_iframe, function () {
  9493. // _iframe.contentWindow.U.MD.O.W.load();
  9494. // _iframe.contentWindow.document.body.appendChild(script1);
  9495. _iframe.contentWindow.document.body.appendChild(script2);
  9496. _iframe.contentWindow.document.body.appendChild(script4);
  9497. })
  9498. } else if (str == 'mind') {
  9499. _iframe = _formdiv.querySelector('iframe')
  9500. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9501. //
  9502. _iframe.contentWindow.document.body.appendChild(script1);
  9503. _iframe.contentWindow.document.body.appendChild(script2);
  9504. _iframe.contentWindow.document.body.appendChild(script4);
  9505. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9506. })
  9507. if (onloadListener) {
  9508. _iframe.contentDocument.location.reload()
  9509. } else {
  9510. _iframe.contentDocument.location.reload()
  9511. }
  9512. } else if (str == 'whiteboard') {
  9513. _iframe = _formdiv.querySelector('iframe')
  9514. let onloadListener = _iframe.onload = () => {
  9515. _iframe.contentWindow.document.body.appendChild(script1);
  9516. _iframe.contentWindow.document.body.appendChild(script2);
  9517. _iframe.contentWindow.document.body.appendChild(script4);
  9518. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9519. };
  9520. // if (onloadListener) {
  9521. // try {
  9522. // _iframe.src += "?cocorobo="+new Date().getTime()
  9523. // _iframe.contentWindow.document.location.reload()
  9524. // } catch (error) {
  9525. // }
  9526. // } else {
  9527. // _iframe.contentDocument.location.reload()
  9528. // }
  9529. } else {
  9530. _iframe.onload = () => {
  9531. _iframe.contentWindow.document.body.appendChild(script1);
  9532. _iframe.contentWindow.document.body.appendChild(script2);
  9533. // _iframe.contentWindow.document.body.appendChild(script3);
  9534. _iframe.contentWindow.document.body.appendChild(script4);
  9535. };
  9536. }
  9537. _jie.onclick = async () => {
  9538. let text = ''
  9539. if (aTool == 1) {
  9540. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9541. } else if (aTool == 6) {
  9542. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9543. } else if (aTool == 3) {
  9544. text = await U.MD.D.I.getEditorContent(_iframe);
  9545. }
  9546. _loading.style.display = 'flex'
  9547. console.log(_loading);
  9548. var _ajs = _iframe.contentWindow.document.createElement("script");
  9549. _ajs.type = "text/javascript";
  9550. _ajs.innerHTML =
  9551. // 'console.log(' + _loading + ');\n' +
  9552. 'var _js = document.createElement("script");\n' +
  9553. '_js.type="text/javascript";\n' +
  9554. '_js.charset="UTF-8";\n' +
  9555. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9556. "_js.onload = function(){\n" +
  9557. ' var a = document.getElementsByTagName("img")\n' +
  9558. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9559. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9560. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9561. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9562. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9563. "beforeUpload_shishi(file," +
  9564. "'" +
  9565. _userid +
  9566. "'" +
  9567. ", " +
  9568. "'" +
  9569. _cid +
  9570. "'" +
  9571. ", " +
  9572. "'" +
  9573. _stage +
  9574. "'" +
  9575. ", " +
  9576. "'" +
  9577. _task +
  9578. "'" +
  9579. ", " +
  9580. "'" +
  9581. _tool +
  9582. "'" +
  9583. ", " +
  9584. "'" +
  9585. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9586. "'" +
  9587. ", " +
  9588. "'" +
  9589. aTool +
  9590. "'" +
  9591. ", " +
  9592. "`" +
  9593. text +
  9594. "`" +
  9595. ")\n" +
  9596. " });\n" +
  9597. "}\n" +
  9598. "document.head.appendChild(_js);\n";
  9599. _iframe.contentWindow.document.head.appendChild(_ajs);
  9600. }
  9601. }
  9602. }
  9603. U.MD.D.I.getEditorContent = function (iframe) {
  9604. return new Promise((resolve, reject) => {
  9605. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9606. console.log(content);
  9607. resolve(content)
  9608. });
  9609. });
  9610. }
  9611. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9612. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9613. // if (res.value[0].length > 0) {
  9614. // // resolve(res.value[0][0].text);
  9615. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9616. // $(fileInput).val('');
  9617. // });
  9618. // }
  9619. // }, [], { "type": "GET", "withCredentials": true });
  9620. var xmlhttp;
  9621. var Mac, Sn, DeviceId
  9622. if (window.XMLHttpRequest) {
  9623. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9624. xmlhttp = new XMLHttpRequest();
  9625. } else {
  9626. // IE6, IE5 浏览器执行代码
  9627. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9628. }
  9629. xmlhttp.onreadystatechange = function () {
  9630. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9631. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9632. // resolve(res.value[0][0].text);
  9633. if (type == '2') {
  9634. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9635. } else if (type == '3') {
  9636. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9637. }
  9638. } else {
  9639. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9640. }
  9641. }
  9642. }
  9643. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9644. xmlhttp.send();
  9645. }
  9646. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9647. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9648. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9649. _userinfo = US.userInfo, //登录用户信息
  9650. _userid = US.userInfo.userid //登录用户id
  9651. let _iframe;
  9652. let _cid = cid,
  9653. _stage = stage,
  9654. _task = task,
  9655. _tool = tool;
  9656. var _jie = $$("div", {
  9657. "style": {
  9658. "position": "absolute",
  9659. "bottom": "50px",
  9660. "right": "50px",
  9661. "zIndex": "9999",
  9662. "backgroundColor": "#2268bc",
  9663. "color": "#fff",
  9664. "padding": "12px 20px",
  9665. "cursor": "pointer",
  9666. "borderRadius": "4px",
  9667. },
  9668. "innerHTML": "确认并提交"
  9669. })
  9670. let aTool = ''
  9671. let _loading = document.createElement('div')
  9672. _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;"
  9673. // _loading.id = "";
  9674. let _lchild = document.createElement('div')
  9675. let _limg = document.createElement('img')
  9676. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9677. _limg.style = "width: 26px;margin-right: 10px;"
  9678. _lchild.appendChild(_limg)
  9679. let _lspan = document.createElement('span')
  9680. _lspan.innerHTML = "上传中..."
  9681. _lchild.appendChild(_lspan)
  9682. _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%);"
  9683. _loading.appendChild(_lchild)
  9684. var _box = $$('div', {
  9685. "style": {
  9686. "position": "relative",
  9687. "width": "100%",
  9688. "height": "100%",
  9689. },
  9690. })
  9691. _box.appendChild(_loading)
  9692. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9693. switch (str) {
  9694. case "whiteboard":
  9695. aTool = 1;
  9696. _iframe = $$("iframe", {
  9697. "frameborder": "no",
  9698. "border": "0",
  9699. "scrolling ": "no",
  9700. "style": {
  9701. "cssText": "border:0;width:100%;height:100%"
  9702. },
  9703. "src": "https://beta.iwb.cocorobo.cn/"
  9704. })
  9705. _box.appendChild(_iframe);
  9706. _box.appendChild(_jie);
  9707. _formdiv = new U.UF.UI.form(
  9708. "电子白板",
  9709. _box, {
  9710. "id": "whiteboards" + cid + stage + task + tool,
  9711. "style": {
  9712. "width": "90%",
  9713. "height": "90%",
  9714. "overflow": 'hidden'
  9715. },
  9716. "onresize": function () { }
  9717. }, {
  9718. closecallback: function () { }
  9719. }, {
  9720. "style": {
  9721. "height": "36px"
  9722. }
  9723. }).form; //创建窗体
  9724. _taskbar = {
  9725. "id": str + _formdiv.id,
  9726. "style": {
  9727. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9728. },
  9729. "name": "电子白板",
  9730. "forms": _formdiv,
  9731. "click": function () {
  9732. U.MD.D.I.openApplication(str, obj, info);
  9733. }
  9734. }
  9735. break;
  9736. case "mind":
  9737. aTool = 3;
  9738. _iframe = $$("iframe", {
  9739. "frameborder": "no",
  9740. "border": "0",
  9741. "scrolling ": "no",
  9742. "style": {
  9743. "cssText": "border:0;width:100%;height:100%"
  9744. },
  9745. "src": "/kityminder-editor/dist/index.html"
  9746. });
  9747. _box.appendChild(_iframe);
  9748. _box.appendChild(_jie);
  9749. _formdiv = new U.UF.UI.form(
  9750. "思维导图",
  9751. _box, { //"/jsmind/example/demo.html"
  9752. "id": "minds" + cid + stage + task + tool,
  9753. "style": {
  9754. "width": "90%",
  9755. "height": "90%",
  9756. "overflow": 'hidden'
  9757. },
  9758. "onresize": function () { }
  9759. }, {
  9760. closecallback: function () { }
  9761. }, {
  9762. "style": {
  9763. "height": "36px"
  9764. }
  9765. }).form; //创建窗体
  9766. _taskbar = {
  9767. "id": str + _formdiv.id,
  9768. "style": {
  9769. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9770. },
  9771. "name": "思维导图",
  9772. "forms": _formdiv,
  9773. "click": function () {
  9774. U.MD.D.I.openApplication(str, obj, info);
  9775. }
  9776. }
  9777. break;
  9778. case "doc":
  9779. aTool = 6;
  9780. _iframe = $$("iframe", {
  9781. "frameborder": "no",
  9782. "border": "0",
  9783. "scrolling ": "no",
  9784. "style": {
  9785. "cssText": "border:0;width:100%;height:100%"
  9786. },
  9787. "src": "/Office/Word/WordEditArea.htm"
  9788. })
  9789. _box.appendChild(_iframe);
  9790. _box.appendChild(_jie);
  9791. _formdiv = new U.UF.UI.form(
  9792. "协同文档",
  9793. _box, {
  9794. "id": "docs" + cid + stage + task + tool,
  9795. "style": {
  9796. "width": "90%",
  9797. "height": "90%",
  9798. "overflow": 'hidden'
  9799. },
  9800. "onresize": function () { }
  9801. }, {
  9802. closecallback: function () { }
  9803. }, {
  9804. "style": {
  9805. "height": "36px"
  9806. }
  9807. }).form; //创建窗体
  9808. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9809. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9810. })
  9811. _taskbar = {
  9812. "id": str + _formdiv.id,
  9813. "style": {
  9814. "backgroundImage": "url(/img/icon/doc.png)"
  9815. },
  9816. "name": "协同文档",
  9817. "forms": _formdiv,
  9818. "click": function () {
  9819. U.MD.D.I.openApplication(str, obj, info);
  9820. }
  9821. }
  9822. break;
  9823. }
  9824. const script1 = document.createElement("script");
  9825. script1.type = "text/javascript";
  9826. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9827. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9828. const script2 = document.createElement("script");
  9829. script2.type = "text/javascript";
  9830. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9831. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9832. const script3 = document.createElement("script");
  9833. script3.type = "text/javascript";
  9834. script3.charset = "UTF-8";
  9835. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9836. const script4 = document.createElement("script");
  9837. script4.type = "text/javascript";
  9838. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9839. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9840. if (_iframe) {
  9841. if (str == 'doc') {
  9842. _iframe = _formdiv.querySelector('iframe')
  9843. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9844. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9845. _iframe.contentWindow.document.body.appendChild(script1);
  9846. _iframe.contentWindow.document.body.appendChild(script2);
  9847. // _iframe.contentWindow.document.body.appendChild(script3);
  9848. _iframe.contentWindow.document.body.appendChild(script4);
  9849. })
  9850. if (onloadListener) {
  9851. _iframe.contentDocument.location.reload()
  9852. } else {
  9853. _iframe.contentDocument.location.reload()
  9854. }
  9855. } else if (str == 'mind') {
  9856. _iframe = _formdiv.querySelector('iframe')
  9857. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9858. _iframe.contentWindow.document.body.appendChild(script1);
  9859. _iframe.contentWindow.document.body.appendChild(script2);
  9860. _iframe.contentWindow.document.body.appendChild(script4);
  9861. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9862. })
  9863. if (onloadListener) {
  9864. _iframe.contentDocument.location.reload()
  9865. } else {
  9866. _iframe.contentDocument.location.reload()
  9867. }
  9868. } else {
  9869. _iframe.onload = () => {
  9870. _iframe.contentWindow.document.body.appendChild(script1);
  9871. _iframe.contentWindow.document.body.appendChild(script2);
  9872. // _iframe.contentWindow.document.body.appendChild(script3);
  9873. _iframe.contentWindow.document.body.appendChild(script4);
  9874. };
  9875. }
  9876. _jie.onclick = async () => {
  9877. let text = ''
  9878. if (aTool == 6) {
  9879. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9880. } else if (aTool == 3) {
  9881. text = await U.MD.D.I.getEditorContent(_iframe);
  9882. }
  9883. _loading.style.display = 'flex'
  9884. console.log(_loading);
  9885. var _ajs = _iframe.contentWindow.document.createElement("script");
  9886. _ajs.type = "text/javascript";
  9887. _ajs.innerHTML =
  9888. // 'console.log(' + _loading + ');\n' +
  9889. 'var _js = document.createElement("script");\n' +
  9890. '_js.type="text/javascript";\n' +
  9891. '_js.charset="UTF-8";\n' +
  9892. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9893. "_js.onload = function(){\n" +
  9894. ' var a = document.getElementsByTagName("img")\n' +
  9895. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9896. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9897. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9898. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9899. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9900. "beforeUpload_shishi(file," +
  9901. "'" +
  9902. _userid +
  9903. "'" +
  9904. ", " +
  9905. "'" +
  9906. _cid +
  9907. "'" +
  9908. ", " +
  9909. "'" +
  9910. _stage +
  9911. "'" +
  9912. ", " +
  9913. "'" +
  9914. _task +
  9915. "'" +
  9916. ", " +
  9917. "'" +
  9918. _tool +
  9919. "'" +
  9920. ", " +
  9921. "'" +
  9922. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9923. "'" +
  9924. ", " +
  9925. "'" +
  9926. aTool +
  9927. "'" +
  9928. ", " +
  9929. "`" +
  9930. text +
  9931. "`" +
  9932. ")\n" +
  9933. " });\n" +
  9934. "}\n" +
  9935. "document.head.appendChild(_js);\n";
  9936. _iframe.contentWindow.document.head.appendChild(_ajs);
  9937. }
  9938. }
  9939. //U.MD.D.I.openClick(str);
  9940. //如果有任务栏信息
  9941. // if (_taskbar) {
  9942. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9943. // }
  9944. }
  9945. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9946. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9947. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9948. _userinfo = US.userInfo, //登录用户信息
  9949. _userid = US.userInfo.userid //登录用户id
  9950. let _iframe;
  9951. let _cid = cid,
  9952. _stage = stage,
  9953. _task = task,
  9954. _tool = tool;
  9955. var _jie = $$("div", {
  9956. "style": {
  9957. "position": "absolute",
  9958. "bottom": "50px",
  9959. "right": "50px",
  9960. "zIndex": "9999",
  9961. "backgroundColor": "#2268bc",
  9962. "color": "#fff",
  9963. "padding": "12px 20px",
  9964. "cursor": "pointer",
  9965. "borderRadius": "4px",
  9966. },
  9967. "innerHTML": "确认并提交"
  9968. })
  9969. let aTool = ''
  9970. let _loading = document.createElement('div')
  9971. _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;"
  9972. // _loading.id = "";
  9973. let _lchild = document.createElement('div')
  9974. let _limg = document.createElement('img')
  9975. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9976. _limg.style = "width: 26px;margin-right: 10px;"
  9977. _lchild.appendChild(_limg)
  9978. let _lspan = document.createElement('span')
  9979. _lspan.innerHTML = "上传中..."
  9980. _lchild.appendChild(_lspan)
  9981. _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%);"
  9982. _loading.appendChild(_lchild)
  9983. var _box = $$('div', {
  9984. "style": {
  9985. "position": "relative",
  9986. "width": "100%",
  9987. "height": "100%",
  9988. },
  9989. })
  9990. _box.appendChild(_loading)
  9991. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9992. switch (str) {
  9993. case "whiteboard":
  9994. aTool = 1;
  9995. _iframe = $$("iframe", {
  9996. "frameborder": "no",
  9997. "border": "0",
  9998. "scrolling ": "no",
  9999. "style": {
  10000. "cssText": "border:0;width:100%;height:100%"
  10001. },
  10002. "src": "https://beta.iwb.cocorobo.cn/"
  10003. })
  10004. _box.appendChild(_iframe);
  10005. _box.appendChild(_jie);
  10006. _formdiv = new U.UF.UI.form(
  10007. "电子白板",
  10008. _box, {
  10009. "id": "whiteboards" + cid + stage + task + tool,
  10010. "style": {
  10011. "width": "90%",
  10012. "height": "90%",
  10013. "overflow": 'hidden'
  10014. },
  10015. "onresize": function () { }
  10016. }, {
  10017. closecallback: function () { }
  10018. }, {
  10019. "style": {
  10020. "height": "36px"
  10021. }
  10022. }).form; //创建窗体
  10023. _taskbar = {
  10024. "id": str + _formdiv.id,
  10025. "style": {
  10026. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10027. },
  10028. "name": "电子白板",
  10029. "forms": _formdiv,
  10030. "click": function () {
  10031. U.MD.D.I.openApplication(str, obj, info);
  10032. }
  10033. }
  10034. break;
  10035. case "mind":
  10036. aTool = 3;
  10037. _iframe = $$("iframe", {
  10038. "frameborder": "no",
  10039. "border": "0",
  10040. "scrolling ": "no",
  10041. "style": {
  10042. "cssText": "border:0;width:100%;height:100%"
  10043. },
  10044. "src": "/kityminder-editor/dist/index.html"
  10045. });
  10046. _box.appendChild(_iframe);
  10047. _box.appendChild(_jie);
  10048. _formdiv = new U.UF.UI.form(
  10049. "思维导图",
  10050. _box, { //"/jsmind/example/demo.html"
  10051. "id": "minds" + cid + stage + task + tool,
  10052. "style": {
  10053. "width": "90%",
  10054. "height": "90%",
  10055. "overflow": 'hidden'
  10056. },
  10057. "onresize": function () { }
  10058. }, {
  10059. closecallback: function () { }
  10060. }, {
  10061. "style": {
  10062. "height": "36px"
  10063. }
  10064. }).form; //创建窗体
  10065. _taskbar = {
  10066. "id": str + _formdiv.id,
  10067. "style": {
  10068. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10069. },
  10070. "name": "思维导图",
  10071. "forms": _formdiv,
  10072. "click": function () {
  10073. U.MD.D.I.openApplication(str, obj, info);
  10074. }
  10075. }
  10076. break;
  10077. case "doc":
  10078. aTool = 6;
  10079. _iframe = $$("iframe", {
  10080. "frameborder": "no",
  10081. "border": "0",
  10082. "scrolling ": "no",
  10083. "style": {
  10084. "cssText": "border:0;width:100%;height:100%"
  10085. },
  10086. "src": "/Office/Word/WordEditArea.htm"
  10087. })
  10088. _box.appendChild(_iframe);
  10089. _box.appendChild(_jie);
  10090. _formdiv = new U.UF.UI.form(
  10091. "协同文档",
  10092. _box, {
  10093. "id": "docs" + cid + stage + task + tool,
  10094. "style": {
  10095. "width": "90%",
  10096. "height": "90%",
  10097. "overflow": 'hidden'
  10098. },
  10099. "onresize": function () { }
  10100. }, {
  10101. closecallback: function () { }
  10102. }, {
  10103. "style": {
  10104. "height": "36px"
  10105. }
  10106. }).form; //创建窗体
  10107. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10108. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10109. })
  10110. _taskbar = {
  10111. "id": str + _formdiv.id,
  10112. "style": {
  10113. "backgroundImage": "url(/img/icon/doc.png)"
  10114. },
  10115. "name": "协同文档",
  10116. "forms": _formdiv,
  10117. "click": function () {
  10118. U.MD.D.I.openApplication(str, obj, info);
  10119. }
  10120. }
  10121. break;
  10122. }
  10123. const script1 = document.createElement("script");
  10124. script1.type = "text/javascript";
  10125. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10126. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10127. const script2 = document.createElement("script");
  10128. script2.type = "text/javascript";
  10129. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10130. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10131. const script3 = document.createElement("script");
  10132. script3.type = "text/javascript";
  10133. script3.charset = "UTF-8";
  10134. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10135. const script4 = document.createElement("script");
  10136. script4.type = "text/javascript";
  10137. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10138. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10139. if (_iframe) {
  10140. if (str == 'doc') {
  10141. _iframe = _formdiv.querySelector('iframe')
  10142. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10143. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10144. _iframe.contentWindow.document.body.appendChild(script1);
  10145. _iframe.contentWindow.document.body.appendChild(script2);
  10146. // _iframe.contentWindow.document.body.appendChild(script3);
  10147. _iframe.contentWindow.document.body.appendChild(script4);
  10148. })
  10149. if (onloadListener) {
  10150. _iframe.contentDocument.location.reload()
  10151. } else {
  10152. _iframe.contentDocument.location.reload()
  10153. }
  10154. } else if (str == 'mind') {
  10155. _iframe = _formdiv.querySelector('iframe')
  10156. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10157. _iframe.contentWindow.document.body.appendChild(script1);
  10158. _iframe.contentWindow.document.body.appendChild(script2);
  10159. _iframe.contentWindow.document.body.appendChild(script4);
  10160. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10161. })
  10162. if (onloadListener) {
  10163. _iframe.contentDocument.location.reload()
  10164. } else {
  10165. _iframe.contentDocument.location.reload()
  10166. }
  10167. } else {
  10168. _iframe.onload = () => {
  10169. _iframe.contentWindow.document.body.appendChild(script1);
  10170. _iframe.contentWindow.document.body.appendChild(script2);
  10171. // _iframe.contentWindow.document.body.appendChild(script3);
  10172. _iframe.contentWindow.document.body.appendChild(script4);
  10173. };
  10174. }
  10175. _jie.onclick = async () => {
  10176. let text = ''
  10177. if (aTool == 6) {
  10178. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10179. } else if (aTool == 3) {
  10180. text = await U.MD.D.I.getEditorContent(_iframe);
  10181. }
  10182. _loading.style.display = 'flex'
  10183. console.log(_loading);
  10184. var _ajs = _iframe.contentWindow.document.createElement("script");
  10185. _ajs.type = "text/javascript";
  10186. _ajs.innerHTML =
  10187. // 'console.log(' + _loading + ');\n' +
  10188. 'var _js = document.createElement("script");\n' +
  10189. '_js.type="text/javascript";\n' +
  10190. '_js.charset="UTF-8";\n' +
  10191. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10192. "_js.onload = function(){\n" +
  10193. ' var a = document.getElementsByTagName("img")\n' +
  10194. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10195. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10196. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10197. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10198. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10199. "beforeUpload_shishi(file," +
  10200. "'" +
  10201. _userid +
  10202. "'" +
  10203. ", " +
  10204. "'" +
  10205. _cid +
  10206. "'" +
  10207. ", " +
  10208. "'" +
  10209. _stage +
  10210. "'" +
  10211. ", " +
  10212. "'" +
  10213. _task +
  10214. "'" +
  10215. ", " +
  10216. "'" +
  10217. _tool +
  10218. "'" +
  10219. ", " +
  10220. "'" +
  10221. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10222. "'" +
  10223. ", " +
  10224. "'" +
  10225. aTool +
  10226. "'" +
  10227. ", " +
  10228. "`" +
  10229. text +
  10230. "`" +
  10231. ")\n" +
  10232. " });\n" +
  10233. "}\n" +
  10234. "document.head.appendChild(_js);\n";
  10235. _iframe.contentWindow.document.head.appendChild(_ajs);
  10236. }
  10237. }
  10238. //U.MD.D.I.openClick(str);
  10239. //如果有任务栏信息
  10240. // if (_taskbar) {
  10241. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10242. // }
  10243. }
  10244. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10245. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10246. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10247. _userinfo = US.userInfo, //登录用户信息
  10248. _userid = US.userInfo.userid //登录用户id
  10249. let _iframe;
  10250. let _cid = cid,
  10251. _stage = stage,
  10252. _task = task,
  10253. _tool = tool;
  10254. var _jie = $$("div", {
  10255. "style": {
  10256. "position": "absolute",
  10257. "bottom": "50px",
  10258. "right": "50px",
  10259. "zIndex": "9999",
  10260. "backgroundColor": "#2268bc",
  10261. "color": "#fff",
  10262. "padding": "12px 20px",
  10263. "cursor": "pointer",
  10264. "borderRadius": "4px",
  10265. },
  10266. "innerHTML": "上传模板"
  10267. })
  10268. let aTool = ''
  10269. let _loading = document.createElement('div')
  10270. _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;"
  10271. // _loading.id = "";
  10272. let _lchild = document.createElement('div')
  10273. let _limg = document.createElement('img')
  10274. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10275. _limg.style = "width: 26px;margin-right: 10px;"
  10276. _lchild.appendChild(_limg)
  10277. let _lspan = document.createElement('span')
  10278. _lspan.innerHTML = "上传中..."
  10279. _lchild.appendChild(_lspan)
  10280. _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%);"
  10281. _loading.appendChild(_lchild)
  10282. var _box = $$('div', {
  10283. "style": {
  10284. "position": "relative",
  10285. "width": "100%",
  10286. "height": "100%",
  10287. },
  10288. })
  10289. _box.appendChild(_loading)
  10290. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10291. switch (str) {
  10292. case "whiteboard":
  10293. aTool = 1;
  10294. _iframe = $$("iframe", {
  10295. "frameborder": "no",
  10296. "border": "0",
  10297. "scrolling ": "no",
  10298. "style": {
  10299. "cssText": "border:0;width:100%;height:100%"
  10300. },
  10301. "src": "https://beta.iwb.cocorobo.cn/"
  10302. })
  10303. _box.appendChild(_iframe);
  10304. _box.appendChild(_jie);
  10305. _formdiv = new U.UF.UI.form(
  10306. "电子白板",
  10307. _box, {
  10308. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10309. "style": {
  10310. "width": "90%",
  10311. "height": "90%",
  10312. "overflow": 'hidden'
  10313. },
  10314. "onresize": function () { }
  10315. }, {
  10316. closecallback: function () { }
  10317. }, {
  10318. "style": {
  10319. "height": "36px"
  10320. }
  10321. }).form; //创建窗体
  10322. _taskbar = {
  10323. "id": str + _formdiv.id,
  10324. "style": {
  10325. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10326. },
  10327. "name": "电子白板",
  10328. "forms": _formdiv,
  10329. "click": function () {
  10330. U.MD.D.I.openApplication(str, obj, info);
  10331. }
  10332. }
  10333. break;
  10334. case "mind":
  10335. aTool = 3;
  10336. _iframe = $$("iframe", {
  10337. "frameborder": "no",
  10338. "border": "0",
  10339. "scrolling ": "no",
  10340. "style": {
  10341. "cssText": "border:0;width:100%;height:100%"
  10342. },
  10343. "src": "/kityminder-editor/dist/index.html"
  10344. });
  10345. _box.appendChild(_iframe);
  10346. _box.appendChild(_jie);
  10347. _formdiv = new U.UF.UI.form(
  10348. "思维导图",
  10349. _box, { //"/jsmind/example/demo.html"
  10350. "id": "minds_Yu" + cid + stage + task + tool,
  10351. "style": {
  10352. "width": "90%",
  10353. "height": "90%",
  10354. "overflow": 'hidden'
  10355. },
  10356. "onresize": function () { }
  10357. }, {
  10358. closecallback: function () { }
  10359. }, {
  10360. "style": {
  10361. "height": "36px"
  10362. }
  10363. }).form; //创建窗体
  10364. _taskbar = {
  10365. "id": str + _formdiv.id,
  10366. "style": {
  10367. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10368. },
  10369. "name": "思维导图",
  10370. "forms": _formdiv,
  10371. "click": function () {
  10372. U.MD.D.I.openApplication(str, obj, info);
  10373. }
  10374. }
  10375. break;
  10376. case "doc":
  10377. aTool = 6;
  10378. _iframe = $$("iframe", {
  10379. "frameborder": "no",
  10380. "border": "0",
  10381. "scrolling ": "no",
  10382. "style": {
  10383. "cssText": "border:0;width:100%;height:100%"
  10384. },
  10385. "src": "/Office/Word/WordEditArea.htm"
  10386. })
  10387. _box.appendChild(_iframe);
  10388. _box.appendChild(_jie);
  10389. _formdiv = new U.UF.UI.form(
  10390. "协同文档",
  10391. _box, {
  10392. "id": "docs_Yu" + cid + stage + task + tool,
  10393. "style": {
  10394. "width": "90%",
  10395. "height": "90%",
  10396. "overflow": 'hidden'
  10397. },
  10398. "onresize": function () { }
  10399. }, {
  10400. closecallback: function () { }
  10401. }, {
  10402. "style": {
  10403. "height": "36px"
  10404. }
  10405. }).form; //创建窗体
  10406. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10407. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10408. })
  10409. _taskbar = {
  10410. "id": str + _formdiv.id,
  10411. "style": {
  10412. "backgroundImage": "url(/img/icon/doc.png)"
  10413. },
  10414. "name": "协同文档",
  10415. "forms": _formdiv,
  10416. "click": function () {
  10417. U.MD.D.I.openApplication(str, obj, info);
  10418. }
  10419. }
  10420. break;
  10421. case "CocoPi":
  10422. aTool = 57;
  10423. _iframe = $$("iframe", {
  10424. "allowpaymentrequest": "allowpaymentrequest",
  10425. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10426. "webkitallowfullscreen": "",
  10427. "mozallowfullscreen": "",
  10428. "frameborder": "no",
  10429. "border": "0",
  10430. "scrolling ": "no",
  10431. "style": {
  10432. "cssText": "border:0;width:100%;height:100%"
  10433. },
  10434. "src": "https://pi.cocorobo.cn/"
  10435. })
  10436. _box.appendChild(_iframe);
  10437. _box.appendChild(_jie);
  10438. _formdiv = new U.UF.UI.form(
  10439. "CocoPi",
  10440. _box, {
  10441. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10442. "style": {
  10443. "width": "90%",
  10444. "height": "90%",
  10445. "overflow": 'hidden'
  10446. },
  10447. "onresize": function () { }
  10448. }, {
  10449. closecallback: function () { }
  10450. }, {
  10451. "style": {
  10452. "height": "36px"
  10453. }
  10454. }).form; //创建窗体
  10455. _taskbar = {
  10456. "id": str + _formdiv.id,
  10457. "style": {
  10458. "backgroundImage": "url(/img/icon/cocopi.png)"
  10459. },
  10460. "name": "CocoPi",
  10461. "forms": _formdiv,
  10462. "click": function () {
  10463. U.MD.D.I.openApplication(str, obj, info);
  10464. }
  10465. }
  10466. break;
  10467. }
  10468. if (_iframe) {
  10469. if (str == 'doc') {
  10470. _iframe = _formdiv.querySelector('iframe')
  10471. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10472. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10473. })
  10474. if (onloadListener) {
  10475. _iframe.contentDocument.location.reload()
  10476. } else {
  10477. _iframe.contentDocument.location.reload()
  10478. }
  10479. } else if (str == 'mind') {
  10480. _iframe = _formdiv.querySelector('iframe')
  10481. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10482. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10483. })
  10484. if (onloadListener) {
  10485. _iframe.contentDocument.location.reload()
  10486. } else {
  10487. _iframe.contentDocument.location.reload()
  10488. }
  10489. } else if (str == 'whiteboard') {
  10490. _iframe = _formdiv.querySelector('iframe')
  10491. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10492. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10493. })
  10494. // if (onloadListener) {
  10495. // try {
  10496. // _iframe.src += "?cocorobo="+new Date().getTime()
  10497. // _iframe.contentWindow.document.location.reload()
  10498. // } catch (error) {
  10499. // }
  10500. // } else {
  10501. // _iframe.contentDocument.location.reload()
  10502. // }
  10503. } else if (str == 'CocoPi') {
  10504. _iframe = _formdiv.querySelector('iframe')
  10505. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10506. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10507. })
  10508. if (onloadListener) {
  10509. _iframe.contentDocument.location.reload()
  10510. } else {
  10511. _iframe.contentDocument.location.reload()
  10512. }
  10513. } else {
  10514. _iframe.onload = () => { };
  10515. }
  10516. _jie.onclick = async () => {
  10517. let text = ''
  10518. let type = '2'
  10519. if (aTool == 1) {
  10520. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10521. type = '3'
  10522. } else if (aTool == 6) {
  10523. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10524. type = '1'
  10525. } else if (aTool == 3) {
  10526. text = await U.MD.D.I.getEditorContent(_iframe);
  10527. type = '2'
  10528. } else if (aTool == 57) {
  10529. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10530. type = '4'
  10531. }
  10532. _loading.style.display = 'flex'
  10533. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10534. }
  10535. }
  10536. //U.MD.D.I.openClick(str);
  10537. //如果有任务栏信息
  10538. // if (_taskbar) {
  10539. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10540. // }
  10541. }
  10542. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10543. var xmlhttp;
  10544. var Mac, Sn, DeviceId
  10545. if (window.XMLHttpRequest) {
  10546. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10547. xmlhttp = new XMLHttpRequest();
  10548. } else {
  10549. // IE6, IE5 浏览器执行代码
  10550. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10551. }
  10552. xmlhttp.onreadystatechange = function () {
  10553. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10554. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10555. // resolve(res.value[0][0].text);
  10556. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10557. }
  10558. }
  10559. }
  10560. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10561. xmlhttp.send();
  10562. }
  10563. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10564. var xmlhttp;
  10565. var Mac, Sn, DeviceId
  10566. if (window.XMLHttpRequest) {
  10567. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10568. xmlhttp = new XMLHttpRequest();
  10569. } else {
  10570. // IE6, IE5 浏览器执行代码
  10571. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10572. }
  10573. xmlhttp.onreadystatechange = function () {
  10574. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10575. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10576. // resolve(res.value[0][0].text);
  10577. if (type == '2') {
  10578. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10579. } else if (type == '3') {
  10580. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10581. } else if (type == '4') {
  10582. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10583. }
  10584. } else {
  10585. if (type == '2') {
  10586. iframe.contentWindow.editor.minder.importData('json', '')
  10587. } else if (type == '3') {
  10588. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10589. } else if (type == '4') {
  10590. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10591. }
  10592. }
  10593. }
  10594. }
  10595. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10596. xmlhttp.send();
  10597. }
  10598. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10599. var xmlhttp;
  10600. var Mac, Sn, DeviceId
  10601. if (window.XMLHttpRequest) {
  10602. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10603. xmlhttp = new XMLHttpRequest();
  10604. } else {
  10605. // IE6, IE5 浏览器执行代码
  10606. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10607. }
  10608. xmlhttp.onreadystatechange = function () {
  10609. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10610. if (xmlhttp.response) {
  10611. // resolve(res.value[0][0].text);
  10612. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10613. // $(fileInput).val('');
  10614. // });
  10615. span.innerHTML = '上传成功'
  10616. setTimeout(() => {
  10617. loading.style.display = 'none'
  10618. }, 1000);
  10619. }
  10620. }
  10621. }
  10622. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10623. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10624. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10625. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10626. // 设置请求头,表示请求体的编码格式
  10627. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10628. // 设置请求体,使用url-encoded格式的数据
  10629. }
  10630. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10631. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10632. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10633. _userinfo = US.userInfo, //登录用户信息
  10634. _userid = US.userInfo.userid //登录用户id
  10635. let _iframe;
  10636. let _cid = cid,
  10637. _stage = stage,
  10638. _task = task,
  10639. _tool = tool;
  10640. var _jie = $$("div", {
  10641. "style": {
  10642. "position": "absolute",
  10643. "bottom": "50px",
  10644. "right": "50px",
  10645. "zIndex": "9999",
  10646. "backgroundColor": "#2268bc",
  10647. "color": "#fff",
  10648. "padding": "12px 20px",
  10649. "cursor": "pointer",
  10650. "borderRadius": "4px",
  10651. },
  10652. "innerHTML": "提交作业"
  10653. })
  10654. let aTool = ''
  10655. let _loading = document.createElement('div')
  10656. _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;"
  10657. // _loading.id = "";
  10658. let _lchild = document.createElement('div')
  10659. let _limg = document.createElement('img')
  10660. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10661. _limg.style = "width: 26px;margin-right: 10px;"
  10662. _lchild.appendChild(_limg)
  10663. let _lspan = document.createElement('span')
  10664. _lspan.innerHTML = "上传中..."
  10665. _lchild.appendChild(_lspan)
  10666. _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%);"
  10667. _loading.appendChild(_lchild)
  10668. var _box = $$('div', {
  10669. "style": {
  10670. "position": "relative",
  10671. "width": "100%",
  10672. "height": "100%",
  10673. },
  10674. })
  10675. _box.appendChild(_loading)
  10676. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10677. switch (str) {
  10678. case "CocoPi":
  10679. aTool = 57;
  10680. _iframe = $$("iframe", {
  10681. "allowpaymentrequest": "allowpaymentrequest",
  10682. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10683. "webkitallowfullscreen": "",
  10684. "mozallowfullscreen": "",
  10685. "frameborder": "no",
  10686. "border": "0",
  10687. "scrolling ": "no",
  10688. "style": {
  10689. "cssText": "border:0;width:100%;height:100%"
  10690. },
  10691. "src": "https://pi.cocorobo.cn/"
  10692. })
  10693. _box.appendChild(_iframe);
  10694. _box.appendChild(_jie);
  10695. _formdiv = new U.UF.UI.form(
  10696. "CocoPi",
  10697. _box, {
  10698. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10699. "style": {
  10700. "width": "90%",
  10701. "height": "90%",
  10702. "overflow": 'hidden'
  10703. },
  10704. "onresize": function () { }
  10705. }, {
  10706. closecallback: function () { }
  10707. }, {
  10708. "style": {
  10709. "height": "36px"
  10710. }
  10711. }).form; //创建窗体
  10712. _taskbar = {
  10713. "id": str + _formdiv.id,
  10714. "style": {
  10715. "backgroundImage": "url(/img/icon/cocopi.png)"
  10716. },
  10717. "name": "CocoPi",
  10718. "forms": _formdiv,
  10719. "click": function () {
  10720. U.MD.D.I.openApplication(str, obj, info);
  10721. }
  10722. }
  10723. break;
  10724. }
  10725. if (_iframe) {
  10726. if (str == 'CocoPi') {
  10727. _iframe = _formdiv.querySelector('iframe')
  10728. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10729. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10730. })
  10731. if (onloadListener) {
  10732. _iframe.contentDocument.location.reload()
  10733. } else {
  10734. _iframe.contentDocument.location.reload()
  10735. }
  10736. }
  10737. _jie.onclick = async () => {
  10738. let text = ''
  10739. if (aTool == 57) {
  10740. text = _iframe.contentWindow.getLoadXmlStr()
  10741. }
  10742. _loading.style.display = 'flex'
  10743. console.log(_loading);
  10744. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10745. _loading.style.display = 'none'
  10746. let _div = document.createElement('div')
  10747. _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;"
  10748. let _inner = document.createElement('div')
  10749. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10750. _inner.innerHTML = "上传成功"
  10751. _div.appendChild(_inner)
  10752. _iframe.contentWindow.window.document.body.appendChild(_div)
  10753. _div.onclick = () => {
  10754. _iframe.contentWindow.window.document.body.removeChild(_div)
  10755. }
  10756. setTimeout(() => {
  10757. _iframe.contentWindow.window.document.body.removeChild(_div)
  10758. }, 1000);
  10759. }, [], { "type": "POST", "withCredentials": true });
  10760. }
  10761. }
  10762. }
  10763. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10764. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10765. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10766. _userid = student.userid, //登录用户id
  10767. _username = student.student //用户名字
  10768. let _iframe;
  10769. let _cid = cid,
  10770. _stage = stage,
  10771. _task = task,
  10772. _tool = tool;
  10773. var _jie = $$("div", {
  10774. "style": {
  10775. "position": "absolute",
  10776. "bottom": "50px",
  10777. "right": "50px",
  10778. "zIndex": "9999",
  10779. "backgroundColor": "#2268bc",
  10780. "color": "#fff",
  10781. "padding": "12px 20px",
  10782. "cursor": "pointer",
  10783. "borderRadius": "4px",
  10784. },
  10785. "innerHTML": "提交作业"
  10786. })
  10787. let aTool = ''
  10788. let _loading = document.createElement('div')
  10789. _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;"
  10790. // _loading.id = "";
  10791. let _lchild = document.createElement('div')
  10792. let _limg = document.createElement('img')
  10793. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10794. _limg.style = "width: 26px;margin-right: 10px;"
  10795. _lchild.appendChild(_limg)
  10796. let _lspan = document.createElement('span')
  10797. _lspan.innerHTML = "上传中..."
  10798. _lchild.appendChild(_lspan)
  10799. _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%);"
  10800. _loading.appendChild(_lchild)
  10801. var _box = $$('div', {
  10802. "style": {
  10803. "position": "relative",
  10804. "width": "100%",
  10805. "height": "100%",
  10806. },
  10807. })
  10808. _box.appendChild(_loading)
  10809. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10810. switch (str) {
  10811. case "CocoPi":
  10812. aTool = 57;
  10813. _iframe = $$("iframe", {
  10814. "allowpaymentrequest": "allowpaymentrequest",
  10815. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10816. "webkitallowfullscreen": "",
  10817. "mozallowfullscreen": "",
  10818. "frameborder": "no",
  10819. "border": "0",
  10820. "scrolling ": "no",
  10821. "style": {
  10822. "cssText": "border:0;width:100%;height:100%"
  10823. },
  10824. "src": "https://pi.cocorobo.cn/"
  10825. })
  10826. _box.appendChild(_iframe);
  10827. _box.appendChild(_jie);
  10828. _formdiv = new U.UF.UI.form(
  10829. "CocoPi-" + _username,
  10830. _box, {
  10831. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10832. "style": {
  10833. "width": "90%",
  10834. "height": "90%",
  10835. "overflow": 'hidden'
  10836. },
  10837. "onresize": function () { }
  10838. }, {
  10839. closecallback: function () { }
  10840. }, {
  10841. "style": {
  10842. "height": "36px"
  10843. }
  10844. }).form; //创建窗体
  10845. _taskbar = {
  10846. "id": str + _formdiv.id,
  10847. "style": {
  10848. "backgroundImage": "url(/img/icon/cocopi.png)"
  10849. },
  10850. "name": "CocoPi",
  10851. "forms": _formdiv,
  10852. "click": function () {
  10853. U.MD.D.I.openApplication(str, obj, info);
  10854. }
  10855. }
  10856. break;
  10857. }
  10858. if (_iframe) {
  10859. if (str == 'CocoPi') {
  10860. _iframe = _formdiv.querySelector('iframe')
  10861. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10862. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10863. })
  10864. if (onloadListener) {
  10865. _iframe.contentDocument.location.reload()
  10866. } else {
  10867. _iframe.contentDocument.location.reload()
  10868. }
  10869. }
  10870. _jie.onclick = async () => {
  10871. let text = ''
  10872. if (aTool == 57) {
  10873. text = _iframe.contentWindow.getLoadXmlStr()
  10874. }
  10875. _loading.style.display = 'flex'
  10876. console.log(_loading);
  10877. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10878. _loading.style.display = 'none'
  10879. let _div = document.createElement('div')
  10880. _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;"
  10881. let _inner = document.createElement('div')
  10882. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10883. _inner.innerHTML = "上传成功"
  10884. _div.appendChild(_inner)
  10885. _iframe.contentWindow.window.document.body.appendChild(_div)
  10886. _div.onclick = () => {
  10887. _iframe.contentWindow.window.document.body.removeChild(_div)
  10888. }
  10889. setTimeout(() => {
  10890. _iframe.contentWindow.window.document.body.removeChild(_div)
  10891. }, 1000);
  10892. }, [], { "type": "POST", "withCredentials": true });
  10893. }
  10894. }
  10895. }
  10896. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10897. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10898. if (res.value[0].length > 0) {
  10899. if (atool == 57) {
  10900. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10901. }
  10902. } else {
  10903. if (atool == 57) {
  10904. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10905. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10906. }
  10907. }
  10908. }, [], { "type": "POST", "withCredentials": true });
  10909. }
  10910. U.MD.D.addOp = function(text,type,time){
  10911. var userInfo = US.userInfo;
  10912. if(Object.keys(userInfo).length !== 0){
  10913. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10914. }, [], { "type": "POST", "withCredentials": true });
  10915. }
  10916. }