DeskTop.js 646 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "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. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  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": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503StudentDeskIcon = [
  1522. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //SPROUT Lab
  1528. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1529. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1535. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. ];
  1545. //010204
  1546. U.MD.D.I.x010204TeacherDeskIcon = [
  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. ];
  1550. //010204
  1551. U.MD.D.I.x010204StudentDeskIcon = [
  1552. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. ];
  1557. //trail
  1558. U.MD.D.I.trailTeacherDeskIcon = [
  1559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //trail
  1563. U.MD.D.I.trailStudentDeskIcon = [
  1564. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010504
  1570. U.MD.D.I.x010504TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1574. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1575. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1578. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //010504
  1581. U.MD.D.I.x010504StudentDeskIcon = [
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //SCNUET
  1588. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1594. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1595. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1596. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1600. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1601. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1602. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1603. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1606. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1607. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1608. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1609. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1610. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1611. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1612. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1613. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETAdminDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETStudentDeskIcon = [
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //x020201
  1651. U.MD.D.I.x020201TeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1666. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1667. ];
  1668. //x020201
  1669. U.MD.D.I.x020201AdminDeskIcon = [
  1670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1675. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1676. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1677. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1679. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1681. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1682. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1683. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1684. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1685. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1686. ];
  1687. //020201
  1688. U.MD.D.I.x020201StudentDeskIcon = [
  1689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. ];
  1694. //#region 桌面初始化a
  1695. /**
  1696. * 初始化桌面的起始函数
  1697. *
  1698. */
  1699. U.MD.D.I.init = function () {
  1700. if ($("#U_MD_D_K")[0]) {
  1701. //初始化桌面图标
  1702. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1703. // var clickUrl = ':12588/requestIp.php';
  1704. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1705. // U.MD.D.I.Ip = data;
  1706. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1707. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1708. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1709. // })
  1710. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1711. // })
  1712. }
  1713. }
  1714. /**
  1715. * 模式切换
  1716. *
  1717. */
  1718. U.MD.D.I.ModeCheck = function (type) {
  1719. if (US.Config.type == type) {
  1720. return
  1721. }
  1722. US.Config.type = type
  1723. $('.U_PBL_Check .active')[0].className = ''
  1724. if (type == 1) {
  1725. $('.U_PBL_Check div')[0].className = 'active'
  1726. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1727. } else {
  1728. $('.U_PBL_Check div')[1].className = 'active'
  1729. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1730. }
  1731. //初始化桌面图标
  1732. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1733. if (type == 2) {
  1734. U.MD.D.I.openApplication("project")
  1735. }
  1736. }
  1737. /**
  1738. * 隐藏任务栏
  1739. *
  1740. * @param {element} 桌面元素
  1741. */
  1742. U.MD.D.I.hiddenTaskbar = function (el) {
  1743. //任务栏位置变小
  1744. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1745. //桌面的位置变大
  1746. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1747. }
  1748. /**
  1749. * 隐藏任务栏
  1750. *
  1751. * @param {element} 桌面元素
  1752. */
  1753. U.MD.D.I.hiddenTaskbarout = function (el) {
  1754. //任务栏位置变小
  1755. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1756. //任务栏位置变化
  1757. U.selectEl(el).css({ "bottom": "-60px" });
  1758. //桌面的位置变大
  1759. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1760. }
  1761. }
  1762. /**
  1763. * 初始化打印桌面图标
  1764. *
  1765. * @param {element} 桌面元素
  1766. */
  1767. U.MD.D.I.initDesktopIcons = function (el, type) {
  1768. var i, //用于循环
  1769. _content, //桌面图标元素
  1770. _iconcontent, //桌面图标元素
  1771. _frag = $$("frag"), //定义一个碎片元素
  1772. _type = US.userInfo.type,
  1773. _org = US.userInfo.org,
  1774. _oid = US.userInfo.organizeid,
  1775. _role = US.userInfo.role,
  1776. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1777. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1778. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1779. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1780. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1781. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1782. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1783. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1784. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1785. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1786. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1787. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1788. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1789. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1790. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1791. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1792. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1793. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1794. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1795. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1796. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1797. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1798. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1799. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1800. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1801. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1802. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1803. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1804. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1805. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1806. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1807. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1808. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1809. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1810. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1811. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1812. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1813. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1814. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1815. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1816. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1817. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1818. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1819. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1820. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1821. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1822. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1823. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1824. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1825. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1826. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1827. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1828. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1829. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1830. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1831. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1832. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1833. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1834. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1835. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1836. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1837. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1838. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1839. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1840. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1841. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1842. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1843. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1844. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1845. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1846. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1847. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1848. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1849. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1850. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1851. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1852. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1853. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1854. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1855. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1856. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1857. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1858. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1859. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1860. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1861. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1862. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1863. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1864. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1865. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1866. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1867. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1868. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1869. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1870. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1871. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1872. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1873. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1874. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1875. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1876. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1877. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1878. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1879. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1880. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1881. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1882. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1883. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5'];
  1884. 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'];
  1885. //清楚桌面图标
  1886. el.innerHTML = "";
  1887. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1888. _teacherDesktopIconInfo.push(
  1889. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1890. { "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)" } },
  1891. )
  1892. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1893. }
  1894. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1895. _teacherDesktopIconInfo.push(
  1896. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1897. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1898. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1899. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1900. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1901. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1902. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1904. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1905. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1906. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1907. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1908. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1909. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1910. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1911. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1912. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1913. )
  1914. }
  1915. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1916. _teacherDesktopIconInfo.push(
  1917. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1918. )
  1919. }
  1920. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1921. // _teacherDesktopIconInfo.push(
  1922. // )
  1923. // }
  1924. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1925. _teacherDesktopIconInfo.push(
  1926. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1927. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1928. )
  1929. }
  1930. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1931. _teacherDesktopIconInfo.push(
  1932. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1933. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1934. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1935. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1936. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1937. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1938. )
  1939. _studentDesktopIconInfo.push(
  1940. )
  1941. }
  1942. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1943. _teacherDesktopIconInfo.push(
  1944. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1945. )
  1946. _studentDesktopIconInfo.push(
  1947. )
  1948. }
  1949. //010606 组织
  1950. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1951. _teacherDesktopIconInfo.push(
  1952. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1953. )
  1954. _studentDesktopIconInfo.push(
  1955. )
  1956. }
  1957. //麒麟二中 和 民新小学
  1958. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1959. _teacherDesktopIconInfo.push(
  1960. )
  1961. }
  1962. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1963. _teacherDesktopIconInfo.push(
  1964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1966. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1967. )
  1968. }
  1969. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1970. _hkTeacherDeskIconInfo.push(
  1971. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1972. )
  1973. }
  1974. //北师大附中(010601)
  1975. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1976. // _teacherDesktopIconInfo.push(
  1977. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1978. // )
  1979. // _studentDesktopIconInfo.push(
  1980. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1981. // )
  1982. // }
  1983. //樂善堂余近卿中學
  1984. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1985. _teacherDesktopIconInfo.push(
  1986. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1987. )
  1988. }
  1989. // Education Artificial Intelligence
  1990. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1993. )
  1994. }
  1995. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1996. _teacherDesktopIconInfo.push(
  1997. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1998. )
  1999. }
  2000. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2001. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2002. _teacherDesktopIconInfo.push(
  2003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2005. )
  2006. }
  2007. //麒麟二中
  2008. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2009. _studentDesktopIconInfo.push(
  2010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2012. )
  2013. }
  2014. //万科双语
  2015. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2016. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2017. if (el.Name == '项目管理') {
  2018. el.Name = 'PBL项目'
  2019. }
  2020. return el
  2021. })
  2022. _studentDesktopIconInfo3.push(
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. )
  2025. }
  2026. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2027. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2028. return el.Name != '魔盒识字' && el.Name != '24点'
  2029. })
  2030. }
  2031. 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) {
  2032. _studentDesktopIconInfo.push(
  2033. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2034. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2035. )
  2036. }
  2037. //循环创建桌面图标
  2038. if (type == 1) {
  2039. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2040. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2041. _content = $$("div", {
  2042. className: "U_MD_D_KO",
  2043. "onmousedown": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_studentDesktopIconInfo[i]]),
  2047. "onclick": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_studentDesktopIconInfo[i]])
  2051. }, _frag); //
  2052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2055. }
  2056. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2057. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2058. _content = $$("div", {
  2059. className: "U_MD_D_KO",
  2060. "onmousedown": U.UF.C.closure(function (obj) {
  2061. //防止拖动图标即打开了桌面应用
  2062. U.MD.D.click(this, obj);
  2063. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2064. "onclick": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSStudentDeskIconInfo[i]])
  2068. }, _frag); //
  2069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2072. } //
  2073. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2074. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_ytyStudentDeskIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_ytyStudentDeskIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2089. } //
  2090. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2091. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_jccssylStudentDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_jccssylStudentDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2108. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_scnuaiStudentDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_scnuaiStudentDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2125. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_caleStudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_caleStudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2140. }
  2141. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2142. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_thuioeStudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_thuioeStudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2159. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_tpcStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_tpcStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. } //
  2175. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2176. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_chjyjStudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_chjyjStudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2193. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_szjkyStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_szjkyStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2210. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_x020201StudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_x020201StudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2225. }
  2226. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2227. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_SCNUETStudentDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_SCNUETStudentDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2244. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_dseiStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_dseiStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2261. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2278. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_nsfxStudentDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_nsfxStudentDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2295. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_stiaStudentDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_stiaStudentDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2312. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_szdjgStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_szdjgStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2329. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_x010607StudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_x010607StudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2346. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_xhlyStudentDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_xhlyStudentDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2363. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2380. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_x010503StudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_x010503StudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2397. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_x010504StudentDeskIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_x010504StudentDeskIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2414. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_x010204StudentDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_x010204StudentDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2431. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_trailStudentDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_trailStudentDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2446. }
  2447. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2448. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2465. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x010608StudentDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010608StudentDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2482. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_siesStudentDeskIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_siesStudentDeskIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2499. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_guzmsStudentDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_guzmsStudentDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2516. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_hkStudentDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_hkStudentDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2533. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_hkaceStudentDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_hkaceStudentDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2550. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_BSDNSstudentDesktopIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2567. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_cocobizStudentDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_cocobizStudentDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2584. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_xxzjkyStudentDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2601. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_studentDesktopIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_studentDesktopIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2618. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2619. _content = $$("div", {
  2620. className: "U_MD_D_KO",
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_tcStudentDeskIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_tcStudentDeskIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2633. }
  2634. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2635. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_szscStudentDeskIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szscStudentDeskIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2650. }
  2651. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2652. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_studentDesktopIconInfo3[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_studentDesktopIconInfo3[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2667. }
  2668. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2669. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2670. _content = $$("div", {
  2671. className: "U_MD_D_KO",
  2672. "onmousedown": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_studentDesktopIconInfo2[i]]),
  2676. "onclick": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_studentDesktopIconInfo2[i]])
  2680. }, _frag); //
  2681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2684. }
  2685. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2686. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2687. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2688. continue
  2689. }
  2690. _content = $$("div", {
  2691. className: "U_MD_D_KO",
  2692. "onmousedown": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_wanketeacherDesktopIconInfo[i]]),
  2696. "onclick": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_wanketeacherDesktopIconInfo[i]])
  2700. }, _frag); //
  2701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2704. }
  2705. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2706. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2707. _content = $$("div", {
  2708. className: "U_MD_D_KO",
  2709. "onmousedown": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_wankeAdminDesktopIconInfo[i]]),
  2713. "onclick": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_wankeAdminDesktopIconInfo[i]])
  2717. }, _frag); //
  2718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2721. }
  2722. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2723. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2724. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2725. continue
  2726. }
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_scnuaiTeacherDeskIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2743. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2744. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2745. continue
  2746. }
  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. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_BSDNSteacherDesktopIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2763. for (i = 0; i < _scnuaiAdminDeskIconInfo.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. }, [_scnuaiAdminDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_scnuaiAdminDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2780. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2781. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_jccssylTeacherDeskIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_jccssylTeacherDeskIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2800. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2801. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2802. continue
  2803. }
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_caleTeacherDeskIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_caleTeacherDeskIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2820. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_tpcOrganizerDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_tpcOrganizerDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2837. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2838. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2839. continue
  2840. }
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_tpcTeacherDeskIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_tpcTeacherDeskIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2857. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2858. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2859. continue
  2860. }
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_teacherDesktopIconInfo2[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_teacherDesktopIconInfo2[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2875. }
  2876. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2877. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2878. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2879. continue
  2880. }
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_thuioeTeacherDeskIconInfo[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_thuioeTeacherDeskIconInfo[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2895. }
  2896. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2897. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2898. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2899. continue
  2900. }
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_lotechTeacherDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_lotechTeacherDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2915. }//
  2916. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2917. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2918. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2919. continue
  2920. }
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2937. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2938. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2939. continue
  2940. }
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_siesTeacherDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_siesTeacherDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2957. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2958. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2959. continue
  2960. }
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_guzmsTeacherDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_guzmsTeacherDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2977. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2978. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2979. continue
  2980. }
  2981. _content = $$("div", {
  2982. className: "U_MD_D_KO",
  2983. "onmousedown": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_longhuaTeacherDeskIconInfo[i]]),
  2987. "onclick": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_longhuaTeacherDeskIconInfo[i]])
  2991. }, _frag); //
  2992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2995. }
  2996. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2997. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2998. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2999. continue
  3000. }
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_ytyTeacherDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_ytyTeacherDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3015. }
  3016. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3017. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3018. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3019. continue
  3020. }
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_yunhaiTeacherDeskIconInfo[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3035. } //_hkStudentDeskIconInfo
  3036. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3037. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3038. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3039. continue
  3040. }
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3057. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3058. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3059. continue
  3060. }
  3061. _content = $$("div", {
  3062. className: "U_MD_D_KO",
  3063. "onmousedown": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_hkTeacherDeskIconInfo[i]]),
  3067. "onclick": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_hkTeacherDeskIconInfo[i]])
  3071. }, _frag); //
  3072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3075. }
  3076. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3077. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3078. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3079. continue
  3080. }
  3081. _content = $$("div", {
  3082. className: "U_MD_D_KO",
  3083. "onmousedown": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_hkaceTeacherDeskIconInfo[i]]),
  3087. "onclick": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_hkaceTeacherDeskIconInfo[i]])
  3091. }, _frag); //
  3092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3095. }
  3096. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3097. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3098. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3099. continue
  3100. }
  3101. _content = $$("div", {
  3102. className: "U_MD_D_KO",
  3103. "onmousedown": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_cocobizTeacherDeskIconInfo[i]]),
  3107. "onclick": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_cocobizTeacherDeskIconInfo[i]])
  3111. }, _frag); //
  3112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3115. }
  3116. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3117. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3118. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3119. continue
  3120. }
  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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3135. }
  3136. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3137. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_gdjgAdminDeskIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_gdjgAdminDeskIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3154. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3155. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3156. continue
  3157. }
  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. }, [_gdjgTeacherDeskIconInfo[i]]),
  3164. "onclick": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_gdjgTeacherDeskIconInfo[i]])
  3168. }, _frag); //
  3169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3172. }
  3173. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3174. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3175. if(_role === 0 && _szherTeacherDeskIconInfo[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. }, [_szherTeacherDeskIconInfo[i]]),
  3184. "onclick": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_szherTeacherDeskIconInfo[i]])
  3188. }, _frag); //
  3189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3192. }
  3193. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3194. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3195. _content = $$("div", {
  3196. className: "U_MD_D_KO",
  3197. "onmousedown": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_heyuannAdminDeskIconInfo[i]]),
  3201. "onclick": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_heyuannAdminDeskIconInfo[i]])
  3205. }, _frag); //
  3206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3209. }
  3210. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3211. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3212. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3213. continue
  3214. }
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_heyuanTeacherDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_heyuanTeacherDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3229. } //
  3230. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3231. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_dseiAdminDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_dseiAdminDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3248. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_dseiTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_dseiTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. } //
  3267. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3268. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_chjyjAdminDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_chjyjAdminDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3285. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_chjyjTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_chjyjTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3305. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3306. _content = $$("div", {
  3307. className: "U_MD_D_KO",
  3308. "onmousedown": U.UF.C.closure(function (obj) {
  3309. //防止拖动图标即打开了桌面应用
  3310. U.MD.D.click(this, obj);
  3311. }, [_szjkyAdminDeskIconInfo[i]]),
  3312. "onclick": U.UF.C.closure(function (obj) {
  3313. //防止拖动图标即打开了桌面应用
  3314. U.MD.D.click(this, obj);
  3315. }, [_szjkyAdminDeskIconInfo[i]])
  3316. }, _frag); //
  3317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3320. }//
  3321. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3322. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3323. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3324. continue
  3325. }
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_szjkyTeacherDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_szjkyTeacherDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3342. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3343. _content = $$("div", {
  3344. className: "U_MD_D_KO",
  3345. "onmousedown": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_x020201AdminDeskIconInfo[i]]),
  3349. "onclick": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_x020201AdminDeskIconInfo[i]])
  3353. }, _frag); //
  3354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3357. }//
  3358. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3359. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3360. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3361. continue
  3362. }
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_x020201TeacherDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_x020201TeacherDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3377. }
  3378. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3379. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3380. _content = $$("div", {
  3381. className: "U_MD_D_KO",
  3382. "onmousedown": U.UF.C.closure(function (obj) {
  3383. //防止拖动图标即打开了桌面应用
  3384. U.MD.D.click(this, obj);
  3385. }, [_SCNUETAdminDeskIconInfo[i]]),
  3386. "onclick": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_SCNUETAdminDeskIconInfo[i]])
  3390. }, _frag); //
  3391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3394. }//
  3395. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3396. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3397. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3398. continue
  3399. }
  3400. _content = $$("div", {
  3401. className: "U_MD_D_KO",
  3402. "onmousedown": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3406. "onclick": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_SCNUETTeacherDeskIconInfo[i]])
  3410. }, _frag); //
  3411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3414. }
  3415. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3416. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3417. _content = $$("div", {
  3418. className: "U_MD_D_KO",
  3419. "onmousedown": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_futianAdminDeskIconInfo[i]]),
  3423. "onclick": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_futianAdminDeskIconInfo[i]])
  3427. }, _frag); //
  3428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3431. }
  3432. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3433. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3434. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3435. continue
  3436. }
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_futianTeacherDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_futianTeacherDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3451. }
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3453. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3454. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_MingdeTeacherDeskIcon[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_MingdeTeacherDeskIcon[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3473. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3474. _content = $$("div", {
  3475. className: "U_MD_D_KO",
  3476. "onmousedown": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_lhsAdminDesktopIconInfo[i]]),
  3480. "onclick": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_lhsAdminDesktopIconInfo[i]])
  3484. }, _frag); //
  3485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3488. }
  3489. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3490. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3491. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3492. continue
  3493. }
  3494. _content = $$("div", {
  3495. className: "U_MD_D_KO",
  3496. "onmousedown": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_lhsteacherDesktopIconInfo[i]]),
  3500. "onclick": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_lhsteacherDesktopIconInfo[i]])
  3504. }, _frag); //
  3505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3508. }
  3509. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3510. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3511. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3512. continue
  3513. }
  3514. _content = $$("div", {
  3515. className: "U_MD_D_KO",
  3516. "onmousedown": U.UF.C.closure(function (obj) {
  3517. //防止拖动图标即打开了桌面应用
  3518. U.MD.D.click(this, obj);
  3519. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3520. "onclick": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_zhoujiateacherDesktopIconInfo[i]])
  3524. }, _frag); //
  3525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3528. }
  3529. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3530. for (i = 0; i < _hanDeskIcon.length; i++) {
  3531. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3532. continue
  3533. }
  3534. _content = $$("div", {
  3535. className: "U_MD_D_KO",
  3536. "onmousedown": U.UF.C.closure(function (obj) {
  3537. //防止拖动图标即打开了桌面应用
  3538. U.MD.D.click(this, obj);
  3539. }, [_hanDeskIcon[i]]),
  3540. "onclick": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_hanDeskIcon[i]])
  3544. }, _frag); //
  3545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3548. }
  3549. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3550. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3551. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3552. continue
  3553. }
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖动图标即打开了桌面应用
  3558. U.MD.D.click(this, obj);
  3559. }, [_orgStemDeskIcon[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_orgStemDeskIcon[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3568. }
  3569. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3570. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3571. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3572. continue
  3573. }
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_szulsDeskIcon[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_szulsDeskIcon[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3588. }
  3589. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3590. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3591. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3592. continue
  3593. }
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_orgDesktopIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_orgDesktopIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3610. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3611. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3612. continue
  3613. }
  3614. _content = $$("div", {
  3615. className: "U_MD_D_KO",
  3616. "onmousedown": U.UF.C.closure(function (obj) {
  3617. //防止拖动图标即打开了桌面应用
  3618. U.MD.D.click(this, obj);
  3619. }, [_schoolDesktopIconInfo[i]]),
  3620. "onclick": U.UF.C.closure(function (obj) {
  3621. //防止拖动图标即打开了桌面应用
  3622. U.MD.D.click(this, obj);
  3623. }, [_schoolDesktopIconInfo[i]])
  3624. }, _frag); //
  3625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3628. }
  3629. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3630. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3631. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3632. continue
  3633. }
  3634. _content = $$("div", {
  3635. className: "U_MD_D_KO",
  3636. "onmousedown": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_GMteacherDesktopIconInfo[i]]),
  3640. "onclick": U.UF.C.closure(function (obj) {
  3641. //防止拖动图标即打开了桌面应用
  3642. U.MD.D.click(this, obj);
  3643. }, [_GMteacherDesktopIconInfo[i]])
  3644. }, _frag); //
  3645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3648. }
  3649. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3650. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3651. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3652. continue
  3653. }
  3654. _content = $$("div", {
  3655. className: "U_MD_D_KO",
  3656. "onmousedown": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_SONGteacherDesktopIconInfo[i]]),
  3660. "onclick": U.UF.C.closure(function (obj) {
  3661. //防止拖动图标即打开了桌面应用
  3662. U.MD.D.click(this, obj);
  3663. }, [_SONGteacherDesktopIconInfo[i]])
  3664. }, _frag); //
  3665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3668. }
  3669. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3670. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3671. _content = $$("div", {
  3672. className: "U_MD_D_KO",
  3673. "onmousedown": U.UF.C.closure(function (obj) {
  3674. //防止拖动图标即打开了桌面应用
  3675. U.MD.D.click(this, obj);
  3676. }, [_GMstudentDesktopIconInfo[i]]),
  3677. "onclick": U.UF.C.closure(function (obj) {
  3678. //防止拖动图标即打开了桌面应用
  3679. U.MD.D.click(this, obj);
  3680. }, [_GMstudentDesktopIconInfo[i]])
  3681. }, _frag); //
  3682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3685. }
  3686. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3687. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3688. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3689. continue
  3690. }
  3691. _content = $$("div", {
  3692. className: "U_MD_D_KO",
  3693. "onmousedown": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_tcTeacherDeskIconInfo[i]]),
  3697. "onclick": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_tcTeacherDeskIconInfo[i]])
  3701. }, _frag); //
  3702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3705. }
  3706. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3707. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3708. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3709. continue
  3710. }
  3711. _content = $$("div", {
  3712. className: "U_MD_D_KO",
  3713. "onmousedown": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_tcOrganizerDeskIconInfo[i]]),
  3717. "onclick": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_tcOrganizerDeskIconInfo[i]])
  3721. }, _frag); //
  3722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3725. }
  3726. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3727. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3728. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3729. continue
  3730. }
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_szscTeacherDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_szscTeacherDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3745. }
  3746. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3747. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szscOrganizerDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_szscOrganizerDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3767. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3768. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3769. continue
  3770. }
  3771. _content = $$("div", {
  3772. className: "U_MD_D_KO",
  3773. "onmousedown": U.UF.C.closure(function (obj) {
  3774. //防止拖动图标即打开了桌面应用
  3775. U.MD.D.click(this, obj);
  3776. }, [_nsfxTeacherDeskIconInfo[i]]),
  3777. "onclick": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_nsfxTeacherDeskIconInfo[i]])
  3781. }, _frag); //
  3782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3785. }
  3786. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3787. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3788. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3789. continue
  3790. }
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_stiaTeacherDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_stiaTeacherDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3807. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_szdjgTeacherDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_szdjgTeacherDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3825. }
  3826. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3827. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3828. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3829. continue
  3830. }
  3831. _content = $$("div", {
  3832. className: "U_MD_D_KO",
  3833. "onmousedown": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_x010607TeacherDeskIconInfo[i]]),
  3837. "onclick": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_x010607TeacherDeskIconInfo[i]])
  3841. }, _frag); //
  3842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3845. }
  3846. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3847. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3848. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3849. continue
  3850. }
  3851. _content = $$("div", {
  3852. className: "U_MD_D_KO",
  3853. "onmousedown": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_xhlyTeacherDeskIconInfo[i]]),
  3857. "onclick": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_xhlyTeacherDeskIconInfo[i]])
  3861. }, _frag); //
  3862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3865. }
  3866. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3867. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3868. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3869. continue
  3870. }
  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. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3877. "onclick": U.UF.C.closure(function (obj) {
  3878. //防止拖动图标即打开了桌面应用
  3879. U.MD.D.click(this, obj);
  3880. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3881. }, _frag); //
  3882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3885. }
  3886. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3887. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3888. if(_role === 0 && _x010503TeacherDeskIconInfo[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. }, [_x010503TeacherDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_x010503TeacherDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3905. }
  3906. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3907. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3908. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3909. continue
  3910. }
  3911. _content = $$("div", {
  3912. className: "U_MD_D_KO",
  3913. "onmousedown": U.UF.C.closure(function (obj) {
  3914. //防止拖动图标即打开了桌面应用
  3915. U.MD.D.click(this, obj);
  3916. }, [_x010504TeacherDeskIconInfo[i]]),
  3917. "onclick": U.UF.C.closure(function (obj) {
  3918. //防止拖动图标即打开了桌面应用
  3919. U.MD.D.click(this, obj);
  3920. }, [_x010504TeacherDeskIconInfo[i]])
  3921. }, _frag); //
  3922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3925. }
  3926. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3927. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3928. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3929. continue
  3930. }
  3931. _content = $$("div", {
  3932. className: "U_MD_D_KO",
  3933. "onmousedown": U.UF.C.closure(function (obj) {
  3934. //防止拖动图标即打开了桌面应用
  3935. U.MD.D.click(this, obj);
  3936. }, [_x010204TeacherDeskIconInfo[i]]),
  3937. "onclick": U.UF.C.closure(function (obj) {
  3938. //防止拖动图标即打开了桌面应用
  3939. U.MD.D.click(this, obj);
  3940. }, [_x010204TeacherDeskIconInfo[i]])
  3941. }, _frag); //
  3942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3945. }
  3946. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3947. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3948. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3949. continue
  3950. }
  3951. _content = $$("div", {
  3952. className: "U_MD_D_KO",
  3953. "onmousedown": U.UF.C.closure(function (obj) {
  3954. //防止拖动图标即打开了桌面应用
  3955. U.MD.D.click(this, obj);
  3956. }, [_trailTeacherDeskIconInfo[i]]),
  3957. "onclick": U.UF.C.closure(function (obj) {
  3958. //防止拖动图标即打开了桌面应用
  3959. U.MD.D.click(this, obj);
  3960. }, [_trailTeacherDeskIconInfo[i]])
  3961. }, _frag); //
  3962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3965. }
  3966. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3967. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3968. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3969. continue
  3970. }
  3971. _content = $$("div", {
  3972. className: "U_MD_D_KO",
  3973. "onmousedown": U.UF.C.closure(function (obj) {
  3974. //防止拖动图标即打开了桌面应用
  3975. U.MD.D.click(this, obj);
  3976. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3977. "onclick": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3981. }, _frag); //
  3982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3985. }
  3986. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3987. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3988. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3989. continue
  3990. }
  3991. _content = $$("div", {
  3992. className: "U_MD_D_KO",
  3993. "onmousedown": U.UF.C.closure(function (obj) {
  3994. //防止拖动图标即打开了桌面应用
  3995. U.MD.D.click(this, obj);
  3996. }, [_x010608TeacherDeskIconInfo[i]]),
  3997. "onclick": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_x010608TeacherDeskIconInfo[i]])
  4001. }, _frag); //
  4002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4005. }
  4006. } else {
  4007. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4008. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4009. continue
  4010. }
  4011. _content = $$("div", {
  4012. className: "U_MD_D_KO",
  4013. "onmousedown": U.UF.C.closure(function (obj) {
  4014. //防止拖动图标即打开了桌面应用
  4015. U.MD.D.click(this, obj);
  4016. }, [_teacherDesktopIconInfo[i]]),
  4017. "onclick": U.UF.C.closure(function (obj) {
  4018. //防止拖动图标即打开了桌面应用
  4019. U.MD.D.click(this, obj);
  4020. }, [_teacherDesktopIconInfo[i]])
  4021. }, _frag); //
  4022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4025. }
  4026. }
  4027. } else {
  4028. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4029. _content = $$("div", {
  4030. className: "U_MD_D_KO",
  4031. style: { 'width': '124px', 'height': '145px' },
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_easyDesktopIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_easyDesktopIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4044. }
  4045. }
  4046. if (type == 1) {
  4047. //加载好后给图标定位
  4048. U.MD.D.iconPostion($(_frag).Child());
  4049. } else {
  4050. //加载好后给图标定位
  4051. U.MD.D.iconPostion2($(_frag).Child());
  4052. }
  4053. //把图标加载到页面
  4054. el.appendChild(_frag);
  4055. }
  4056. /**
  4057. * 显示任务栏
  4058. *
  4059. * @param {element} 桌面元素
  4060. */
  4061. U.MD.D.I.displayTaskbar = function (el) {
  4062. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4063. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4064. //任务栏位置变化
  4065. U.selectEl(el).css({ "bottom": "0px" });
  4066. //桌面位置变话
  4067. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4068. }
  4069. }
  4070. //#region 桌面图标拖动逻辑
  4071. /**
  4072. * 桌面排列图标
  4073. *
  4074. * @param {element} 桌面元素
  4075. * @param {object} 上下相距的距离
  4076. * @param {object} 左右相距的距离
  4077. * @return {object} 命名空间
  4078. */
  4079. U.MD.D.iconPostion = function (childs, top, left) {
  4080. var i; //用于循环处理
  4081. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4082. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4083. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4084. for (i = 0; i < childs.length; i++) {
  4085. //如果竖排top超过了范围处理
  4086. if (top + 95 > US.height - 10) {
  4087. //left超过了页面范围处理,则向上重叠打印处理
  4088. if ((left + 180) > US.width) {
  4089. top -= 110;
  4090. left -= 90;
  4091. }
  4092. //没有超过范围,那么left+90添加到下一个竖排打印
  4093. else {
  4094. left += 90;
  4095. top = 15;
  4096. };
  4097. }
  4098. //给图标的位置赋值
  4099. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4100. if (i < childs.length - 1) {
  4101. //页面图标每次向下加95
  4102. top += 95;
  4103. }
  4104. }
  4105. //返回最后调用的图标的位置
  4106. return [top, left];
  4107. }
  4108. /**
  4109. * 桌面排列图标
  4110. *
  4111. * @param {element} 桌面元素
  4112. * @param {object} 上下相距的距离
  4113. * @param {object} 左右相距的距离
  4114. * @return {object} 命名空间
  4115. */
  4116. U.MD.D.iconPostion2 = function (childs, top, left) {
  4117. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4118. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4119. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4120. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4121. for (i = 0; i < childs.length; i++) {
  4122. //如果竖排top超过了范围处理
  4123. if (left + 150 > US.width - 10) {
  4124. //left超过了页面范围处理,则向上重叠打印处理
  4125. if ((top + 180) > US.Height) {
  4126. top -= 150;
  4127. left -= 150;
  4128. }
  4129. //没有超过范围,那么left+90添加到下一个竖排打印
  4130. else {
  4131. top += 150;
  4132. left = ol;
  4133. };
  4134. }
  4135. //给图标的位置赋值
  4136. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4137. if (i < childs.length - 1) {
  4138. //页面图标每次向下加95
  4139. left += 150;
  4140. }
  4141. }
  4142. //返回最后调用的图标的位置
  4143. return [top, left];
  4144. }
  4145. /**
  4146. * 桌面点击事件逻辑
  4147. *
  4148. * @param {element} 桌面元素
  4149. * @param {object} 上下相距的距离
  4150. * @param {object} 左右相距的距离
  4151. * @return {object} 命名空间
  4152. */
  4153. U.MD.D.click = function (el, obj) {
  4154. var _buttonnumber = event.button; //点击的按钮的事件值
  4155. var _userinfo = US.userInfo;
  4156. U.UF.EV.stopBubble(); //阻止向上冒泡
  4157. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4158. if (_buttonnumber < 2) {
  4159. //如果是click事件的处理
  4160. if (event.type == "click") {
  4161. //如果元素在mousemove事件中没有移动则出发click事件
  4162. if (!U.MD.D.I.IsDrag) {
  4163. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4164. U.alert("请先登录您的账号!");
  4165. setTimeout(() => {
  4166. U.MD.U.L.login();
  4167. }, 2000);
  4168. } else {
  4169. //打开应用处理
  4170. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4171. }
  4172. }
  4173. }
  4174. //如果是mouse事件的处理
  4175. else {
  4176. if (US.Config.type == '1') {
  4177. //拖动处理,添加拖动和拖动结束事件
  4178. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4179. }
  4180. }
  4181. U.MD.D.I.IsDrag = false;
  4182. }
  4183. }
  4184. /**
  4185. * 拖动的处理
  4186. *
  4187. */
  4188. U.MD.D.iconMove = function () {
  4189. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4190. U.MD.D.I.IsDrag = true;
  4191. }
  4192. /**
  4193. * 拖动结束后,这里是定位处理,以网状的形式定位
  4194. *
  4195. * @param {element} 拖动的元素
  4196. * @return {object} 命名空间
  4197. */
  4198. U.MD.D.iconUp = function (el) {
  4199. var _top = 15,
  4200. _left = 20,
  4201. _margin,
  4202. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4203. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4204. if (_positioninfo["OT"] > 15) {
  4205. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4206. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4207. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4208. }
  4209. if (_positioninfo["OL"] > 20) {
  4210. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4211. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4212. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4213. }
  4214. //while循环判断么一个重叠的元素
  4215. do {
  4216. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4217. _top = _positioninfo[0] + 95; //得到定位后的top
  4218. _left = _positioninfo[1]; //得到定位后的left
  4219. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4220. }
  4221. /**
  4222. * 判断拖动后图标是否重叠
  4223. *
  4224. * @param {element} 拖动的元素
  4225. * @param {element} 桌面所有的元素
  4226. * @param {array} 拖动元素的位置
  4227. ----------[0] 上 top
  4228. ----------[1] 左 left
  4229. * @return {object} 命名空间
  4230. */
  4231. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4232. //循环所有的图标
  4233. for (var i = 0; i < childs.length; i++) {
  4234. //判断有没有和该图标诶子重叠的元素
  4235. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4236. return childs[i]; //如果有返回
  4237. }
  4238. }
  4239. }
  4240. //#endregion
  4241. //#endregion
  4242. //#region 桌面应用
  4243. /**
  4244. * 打开应用
  4245. *
  4246. * @param {string} 类型
  4247. -----------------Disk 网盘系统
  4248. -----------------PDisk 学习系统网盘
  4249. -----------------Poto 图片
  4250. -----------------Video 视频
  4251. -----------------Music 音乐
  4252. -----------------Word word
  4253. -----------------Excel excel
  4254. -----------------Txt 记事本
  4255. -----------------PB 学习系统
  4256. -----------------Blog 朋友圈系统
  4257. -----------------FTP ftp系统
  4258. -----------------Group 好友群
  4259. -----------------SY 首页系统
  4260. -----------------Set 个人设置
  4261. -----------------XSet 系统设置
  4262. -----------------App 我们所有的app
  4263. -----------------BC c.1473.cn 平台
  4264. -----------------CWeb d.1473.cn 变成平台
  4265. -----------------其他的外联系统 我们统一用iframe打开
  4266. * @param {array} 类型
  4267. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4268. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4269. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4270. 如果第一个参数为其他,则无第二个参数
  4271. * @returns {array}
  4272. */
  4273. window.addEventListener('message', function (e) { // 监听 message 事件
  4274. // alert(e.data.type);
  4275. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4276. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4277. //3是展示全部阶段 2学生 1老师 4专家
  4278. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4279. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4280. //3是展示全部阶段 2学生 1老师 4专家
  4281. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4282. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4283. //3是展示全部阶段 2学生 1老师 4专家
  4284. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4285. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4286. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4287. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4288. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4289. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4290. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4291. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4292. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4293. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4294. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4295. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4296. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4297. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4298. //3是展示全部阶段 2学生 1老师 4专家
  4299. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4300. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4301. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4302. U.MD.D.I.selectUser();
  4303. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4304. var _formel = document.getElementById("study");
  4305. U.UF.F.windowZooming(_formel);
  4306. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4307. var _formel = document.getElementById("studyDetail");
  4308. U.UF.F.windowZooming(_formel);
  4309. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4310. var _formel = document.getElementById("studyDetail");
  4311. U.UF.F.windowZooming(_formel);
  4312. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4313. var _formel = document.getElementById("studentStudy");
  4314. U.UF.F.windowZooming(_formel);
  4315. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4316. // var _formel = document.getElementById("study");
  4317. //如果最大化了,那么就把他缩小
  4318. // if (_formel.ismaximize) {
  4319. // return;
  4320. // }
  4321. // U.UF.F.windowZooming(_formel);
  4322. // U.UF.F.topWindow(_formel);
  4323. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4324. // var _formel = document.getElementById("studyDetail");
  4325. //如果最大化了,那么就把他缩小
  4326. // if (_formel.ismaximize) {
  4327. // return;
  4328. // }
  4329. // U.UF.F.windowZooming(_formel);
  4330. // U.UF.F.topWindow(_formel);
  4331. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4332. // var _formel = document.getElementById("studentStudy");
  4333. // if (_formel.ismaximize) {
  4334. // return;
  4335. // }
  4336. // U.UF.F.windowZooming(_formel);
  4337. // U.UF.F.topWindow(_formel);
  4338. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4339. var _formel = document.getElementById("study");
  4340. // if (_formel.ismaximize) {
  4341. // return;
  4342. // }
  4343. // U.UF.F.windowZooming(_formel);
  4344. U.UF.F.topWindow(_formel);
  4345. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4346. var _formel = document.getElementById("studentIndex");
  4347. U.UF.F.windowZooming(_formel);
  4348. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4349. var _formel = document.getElementById("studyDetailS");
  4350. U.UF.F.windowZooming(_formel);
  4351. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4352. var _formel = document.getElementById("studioIndex");
  4353. U.UF.F.windowZooming(_formel);
  4354. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4355. var _formel = document.getElementById("studyDetailStudio");
  4356. U.UF.F.windowZooming(_formel);
  4357. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4358. var _formel = document.getElementById("studyDetailStudio");
  4359. U.UF.F.windowZooming(_formel);
  4360. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4361. var _formel = document.getElementById("studyDetailNT");
  4362. U.UF.F.windowZooming(_formel);
  4363. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4364. var _formel = document.getElementById("studyDetailS");
  4365. U.UF.F.windowZooming(_formel);
  4366. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4367. var _formel = document.getElementById("studyDetailS");
  4368. U.UF.F.topWindow(_formel);
  4369. } else if (e.data.tools && e.data.tools == "1") {
  4370. // U.MD.D.I.openApplication("whiteboard")
  4371. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4372. } else if (e.data.tools && e.data.tools == "2") {
  4373. U.MD.D.I.openApplication("note")
  4374. } else if (e.data.tools && e.data.tools == "3") {
  4375. // U.MD.D.I.openApplication("mind")
  4376. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4377. } else if (e.data.tools && e.data.tools == "4") {
  4378. U.MD.D.I.openApplication("investigation")
  4379. } else if (e.data.tools && e.data.tools == "6") {
  4380. // U.MD.D.I.openApplication("doc")
  4381. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4382. } else if (e.data.tools && e.data.tools == "7") {
  4383. // U.MD.D.I.openApplication("mindNetwork")
  4384. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4385. } else if (e.data.tools && e.data.tools == "8") {
  4386. U.MD.D.I.openApplication("library")
  4387. } else if (e.data.tools && e.data.tools == "17") {
  4388. U.MD.D.I.openApplication("stuLibrary")
  4389. } else if (e.data.tools && e.data.tools == "18") {
  4390. U.MD.D.I.openApplication("train")
  4391. } else if (e.data.tools && e.data.tools == "21") {
  4392. U.MD.D.I.openApplication("program")
  4393. } else if (e.data.tools && e.data.tools == "22") {
  4394. U.MD.D.I.openApplication("AIprogram2")
  4395. } else if (e.data.tools && e.data.tools == "23") {
  4396. U.MD.D.I.openApplication("Pythonprogram")
  4397. } else if (e.data.tools && e.data.tools == "24") {
  4398. U.MD.D.I.openApplication("AIprogram")
  4399. } else if (e.data.tools && e.data.tools == "25") {
  4400. U.MD.D.I.openApplication("sys")
  4401. } else if (e.data.tools && e.data.tools == "26") {
  4402. // U.MD.D.I.openApplication("courseDesign")
  4403. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4404. } else if (e.data.tools && e.data.tools == "31") {
  4405. U.MD.D.I.openApplication("netWorkPanel")
  4406. } else if (e.data.tools && e.data.tools == "32") {
  4407. U.MD.D.I.openApplication("codeEdit")
  4408. } else if (e.data.tools && e.data.tools == "57") {
  4409. U.MD.D.I.openApplication("CocoPi")
  4410. } else if (e.data.tools && e.data.tools == "63") {
  4411. U.MD.D.I.openApplication("Wood")
  4412. } else if (e.data.tools && e.data.tools == "58") {
  4413. U.MD.D.I.openApplication("car")
  4414. } else if (e.data.tools && e.data.tools == "59") {
  4415. U.MD.D.I.openApplication("lineSearch")
  4416. } else if (e.data.tools && e.data.tools == "60") {
  4417. U.MD.D.I.openApplication("deepLearning")
  4418. } else if (e.data.tools && e.data.tools == "61") {
  4419. U.MD.D.I.openApplication("allHistory")
  4420. } else if (e.data.tools && e.data.tools == "28") {
  4421. U.MD.D.I.openApplication("translation")
  4422. } else if (e.data.tools && e.data.tools == "37") {
  4423. U.MD.D.I.openApplication("mohe")
  4424. } else if (e.data.tools && e.data.tools == "38") {
  4425. U.MD.D.I.openApplication("24game")
  4426. } else if (e.data.tools && e.data.tools == "39") {
  4427. U.MD.D.I.openApplication("GeoGebra")
  4428. } else if (e.data.tools && e.data.tools == "43") {
  4429. U.MD.D.I.openApplication("studentEvaluate")
  4430. } else if (e.data.tools && e.data.tools == "44") {
  4431. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4432. } else if (e.data.tools && e.data.tools == "46") {
  4433. U.MD.D.I.openApplication("project")
  4434. } else if (e.data.tools && e.data.tools == "71") {
  4435. U.MD.D.I.openApplication("aigptCourse")
  4436. } else if (e.data.tools && e.data.tools == "1s") {
  4437. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4438. } else if (e.data.tools && e.data.tools == "3s") {
  4439. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4440. } else if (e.data.tools && e.data.tools == "6s") {
  4441. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4442. } else if (e.data.tools && e.data.tools == "1studio") {
  4443. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4444. } else if (e.data.tools && e.data.tools == "3studio") {
  4445. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4446. } else if (e.data.tools && e.data.tools == "6studio") {
  4447. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4448. } else if (e.data.tools && e.data.tools == "3y") {
  4449. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4450. } else if (e.data.tools && e.data.tools == "1y") {
  4451. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4452. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4453. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4454. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4455. U.MD.D.I.openApplication("AIAnalyse")
  4456. } else if (e.data.tools && e.data.tools == "1teacher") {
  4457. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4458. } else if (e.data.tools && e.data.tools == "3teacher") {
  4459. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4460. } else if (e.data.tools && e.data.tools == "7teacher") {
  4461. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4462. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4463. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4464. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4465. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4466. } else if (e.data.tools && e.data.tools == "1E") {
  4467. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4468. } else if (e.data.tools && e.data.tools == "3E") {
  4469. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4470. } else if (e.data.tools && e.data.tools == "57y") {
  4471. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4472. } else if (e.data.tools && e.data.tools == "57u") {
  4473. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4474. } else if (e.data.tools && e.data.tools == "57teacher") {
  4475. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4476. } else if (e.data.tools && e.data.tools == "64") {
  4477. U.MD.D.I.openApplication("AIChat")
  4478. } else if (e.data.tools && e.data.tools == "66") {
  4479. U.MD.D.I.openApplication("formulaEdi")
  4480. } else if (e.data.tools && e.data.tools == "67") {
  4481. U.MD.D.I.openApplication("molStr")
  4482. } else if (e.data.tools && e.data.tools == "68") {
  4483. U.MD.D.I.openApplication("timeAxis")
  4484. } else if (e.data.tools && e.data.tools == "openCourse") {
  4485. let _data = {
  4486. typea: e.data.typea || '',
  4487. typeb: e.data.typeb || '',
  4488. typed: e.data.typed || '',
  4489. }
  4490. U.MD.D.I.openInApplication("index", _data)
  4491. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4492. let _data = {
  4493. classid: e.data.classid || '',
  4494. }
  4495. U.MD.D.I.openInApplication("dataClass", _data)
  4496. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4497. let _data = {
  4498. cid: e.data.cid || '',
  4499. gid: e.data.gid || '',
  4500. }
  4501. U.MD.D.I.openInApplication("opencCscl", _data)
  4502. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4503. U.MD.D.I.openApplication("dataBoardTest")
  4504. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4505. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4506. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4507. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4508. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4509. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4510. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4511. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4512. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4513. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4514. }else if (e.data.tools && e.data.tools == "loginSz") {
  4515. U.MD.D.I.openInApplication("loginSz")
  4516. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4517. if($('#classroom_observation_board')[0]){
  4518. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4519. }
  4520. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4521. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4522. if($('#classroom_observation_ob_comment')[0]){
  4523. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4524. }
  4525. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4526. }
  4527. });
  4528. U.MD.D.I.selectUser = function () {
  4529. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4530. if (res.value[0].length > 0) {
  4531. US.userInfo = res.value[0][0];
  4532. $(".userName")[0].innerHTML = US.userInfo.username;
  4533. }
  4534. }, [], { "type": "GET", "withCredentials": true });
  4535. }
  4536. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4537. var _userinfo = US.userInfo, //登录用户信息
  4538. _userid = US.userInfo.userid, //登录用户id
  4539. _oid = _userinfo.organizeid,
  4540. _type = US.userInfo.type,
  4541. _org = US.userInfo.org,
  4542. _role = US.userInfo.role,
  4543. _classId = US.userInfo.classid;
  4544. if (_type == 4) {
  4545. tType = 4
  4546. }
  4547. switch (str) {
  4548. case "studyDetailNT": //无终端模式
  4549. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4550. setTimeout(() => {
  4551. U.MD.U.L.login();
  4552. }, 2000);
  4553. } else {
  4554. _formdiv = new U.UF.UI.form(
  4555. "课程详情",
  4556. $$("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 }), {
  4557. "id": "studyDetailNT",
  4558. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4559. "onresize": function () { }
  4560. }, {
  4561. closecallback: function () { }
  4562. }, { "style": { "height": "36px" } }).form; //创建窗体
  4563. _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); } }
  4564. break;
  4565. }
  4566. case "studyDetail":
  4567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4568. setTimeout(() => {
  4569. U.MD.U.L.login();
  4570. }, 2000);
  4571. } else {
  4572. _formdiv = new U.UF.UI.form(
  4573. "课程详情",
  4574. $$("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 }), {
  4575. "id": "studyDetail",
  4576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4577. "onresize": function () { }
  4578. }, {
  4579. closecallback: function () { }
  4580. }, { "style": { "height": "36px" } }).form; //创建窗体
  4581. _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); } }
  4582. break;
  4583. }
  4584. case "studyDetailTrain":
  4585. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4586. setTimeout(() => {
  4587. U.MD.U.L.login();
  4588. }, 2000);
  4589. } else {
  4590. _formdiv = new U.UF.UI.form(
  4591. "培训详情",
  4592. $$("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 }), {
  4593. "id": "studyDetailTrain",
  4594. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. _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); } }
  4600. break;
  4601. }
  4602. case "studyDetailS":
  4603. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4604. setTimeout(() => {
  4605. U.MD.U.L.login();
  4606. }, 2000);
  4607. } else {
  4608. _formdiv = new U.UF.UI.form(
  4609. "项目详情",
  4610. $$("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 }), {
  4611. "id": "studyDetailS",
  4612. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4613. "onresize": function () { }
  4614. }, {
  4615. closecallback: function () { }
  4616. }, { "style": { "height": "36px" } }).form; //创建窗体
  4617. _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); } }
  4618. break;
  4619. }
  4620. case "studyDetailStudio":
  4621. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4622. setTimeout(() => {
  4623. U.MD.U.L.login();
  4624. }, 2000);
  4625. } else {
  4626. _formdiv = new U.UF.UI.form(
  4627. "工作详情",
  4628. $$("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 }), {
  4629. "id": "studyDetailStudio",
  4630. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4631. "onresize": function () { }
  4632. }, {
  4633. closecallback: function () { }
  4634. }, { "style": { "height": "36px" } }).form; //创建窗体
  4635. _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); } }
  4636. break;
  4637. }
  4638. case "studyDetailS5":
  4639. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4640. setTimeout(() => {
  4641. U.MD.U.L.login();
  4642. }, 2000);
  4643. } else {
  4644. _formdiv = new U.UF.UI.form(
  4645. "项目详情",
  4646. $$("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 }), {
  4647. "id": "studyDetailS",
  4648. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4649. "onresize": function () { }
  4650. }, {
  4651. closecallback: function () { }
  4652. }, { "style": { "height": "36px" } }).form; //创建窗体
  4653. _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); } }
  4654. break;
  4655. }
  4656. case "studyDetailGM":
  4657. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4658. setTimeout(() => {
  4659. U.MD.U.L.login();
  4660. }, 2000);
  4661. } else {
  4662. _formdiv = new U.UF.UI.form(
  4663. "课程详情",
  4664. $$("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 }), {
  4665. "id": "studyDetail",
  4666. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4667. "onresize": function () { }
  4668. }, {
  4669. closecallback: function () { }
  4670. }, { "style": { "height": "36px" } }).form; //创建窗体
  4671. _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); } }
  4672. break;
  4673. }
  4674. case "hanUrl":
  4675. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4676. setTimeout(() => {
  4677. U.MD.U.L.login();
  4678. }, 2000);
  4679. } else {
  4680. _formdiv = new U.UF.UI.form(
  4681. "汉字宫",
  4682. $$("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" }), {
  4683. "id": "hanUrl",
  4684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //创建窗体
  4689. _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); } }
  4690. break;
  4691. }
  4692. case "index":
  4693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4694. setTimeout(() => {
  4695. U.MD.U.L.login();
  4696. }, 2000);
  4697. } else {
  4698. _formdiv = new U.UF.UI.form(
  4699. "课程中心",
  4700. $$("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 }), {
  4701. "id": "study",
  4702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4703. "onresize": function () { }
  4704. }, {
  4705. closecallback: function () { }
  4706. }, { "style": { "height": "36px" } }).form; //创建窗体
  4707. _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); } }
  4708. break;
  4709. }
  4710. case "dataClass":
  4711. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4712. setTimeout(() => {
  4713. U.MD.U.L.login();
  4714. }, 2000);
  4715. } else {
  4716. _formdiv = new U.UF.UI.form(
  4717. "数据报告",
  4718. $$("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 }), {
  4719. "id": "dataClass",
  4720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4721. "onresize": function () { }
  4722. }, {
  4723. closecallback: function () { }
  4724. }, { "style": { "height": "36px" } }).form; //创建窗体
  4725. _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); } }
  4726. break;
  4727. }
  4728. case "opencCscl":
  4729. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4730. setTimeout(() => {
  4731. U.MD.U.L.login();
  4732. }, 2000);
  4733. } else {
  4734. _formdiv = new U.UF.UI.form(
  4735. "协同建构",
  4736. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4737. "id": "futureClass",
  4738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4739. "onresize": function () { }
  4740. }, {
  4741. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4742. }, { "style": { "height": "36px" } }).form; //创建窗体
  4743. _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); } }
  4744. break;
  4745. }
  4746. case "openCourseUpdate":
  4747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4748. setTimeout(() => {
  4749. U.MD.U.L.login();
  4750. }, 2000);
  4751. } else {
  4752. _formdiv = new U.UF.UI.form(
  4753. "课程管理",
  4754. $$("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 }), {
  4755. "id": "openCourseUpdate",
  4756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4757. "onresize": function () { }
  4758. }, {
  4759. closecallback: function () { }
  4760. }, { "style": { "height": "36px" } }).form; //创建窗体
  4761. break;
  4762. }
  4763. case "openNewCourseUpdate":
  4764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4765. setTimeout(() => {
  4766. U.MD.U.L.login();
  4767. }, 2000);
  4768. } else {
  4769. _formdiv = new U.UF.UI.form(
  4770. "课程管理",
  4771. $$("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 }), {
  4772. "id": "openCourseUpdate",
  4773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4774. "onresize": function () { }
  4775. }, {
  4776. closecallback: function () { }
  4777. }, { "style": { "height": "36px" } }).form; //创建窗体
  4778. break;
  4779. }
  4780. case "openCourseEUpdate":
  4781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4782. setTimeout(() => {
  4783. U.MD.U.L.login();
  4784. }, 2000);
  4785. } else {
  4786. _formdiv = new U.UF.UI.form(
  4787. "课程管理",
  4788. $$("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 }), {
  4789. "id": "openCourseUpdate",
  4790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4791. "onresize": function () { }
  4792. }, {
  4793. closecallback: function () { }
  4794. }, { "style": { "height": "36px" } }).form; //创建窗体
  4795. break;
  4796. }
  4797. case "openCourseAiUpdate":
  4798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4799. setTimeout(() => {
  4800. U.MD.U.L.login();
  4801. }, 2000);
  4802. } else {
  4803. _formdiv = new U.UF.UI.form(
  4804. "课程管理",
  4805. $$("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 }), {
  4806. "id": "openCourseUpdate",
  4807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4808. "onresize": function () { }
  4809. }, {
  4810. closecallback: function () { }
  4811. }, { "style": { "height": "36px" } }).form; //创建窗体
  4812. break;
  4813. }
  4814. case "openCourseNewUpdate":
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. setTimeout(() => {
  4817. U.MD.U.L.login();
  4818. }, 2000);
  4819. } else {
  4820. _formdiv = new U.UF.UI.form(
  4821. "课程管理",
  4822. $$("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 }), {
  4823. "id": "openCourseUpdate",
  4824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //创建窗体
  4829. break;
  4830. }
  4831. case "inviteLoginSz":
  4832. _formdiv = new U.UF.UI.form(
  4833. "随机码登录",
  4834. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4835. "id": "loginSz",
  4836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4837. "onresize": function () { }
  4838. }, {
  4839. closecallback: function () { }
  4840. }, { "style": { "height": "36px" } }).form; //创建窗体
  4841. break;
  4842. case "loginSz":
  4843. _formdiv = new U.UF.UI.form(
  4844. "教师登录",
  4845. $$("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" }), {
  4846. "id": "loginSz",
  4847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //创建窗体
  4852. break;
  4853. case "teacher":
  4854. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4855. setTimeout(() => {
  4856. U.MD.U.L.login();
  4857. }, 2000);
  4858. } else {
  4859. _formdiv = new U.UF.UI.form(
  4860. "教师管理",
  4861. $$("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 }), {
  4862. "id": "teacher",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. break;
  4869. }
  4870. case "dataBoardSZArea":
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "综合数据看板",
  4878. $$("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 }), {
  4879. "id": "dataBoardSZArea",
  4880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. break;
  4886. }
  4887. case "dataBoardSZCity":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "综合数据看板",
  4895. $$("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 }), {
  4896. "id": "dataBoardSZCity",
  4897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. break;
  4903. }
  4904. case "classroom_observation_board":
  4905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4906. setTimeout(() => {
  4907. U.MD.U.L.login();
  4908. }, 2000);
  4909. } else {
  4910. _formdiv = new U.UF.UI.form(
  4911. "课堂观察",
  4912. $$("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 }), {
  4913. "id": "classroom_observation_board",
  4914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. break;
  4920. }
  4921. case "classroom_observation_ob_comment":
  4922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4923. setTimeout(() => {
  4924. U.MD.U.L.login();
  4925. }, 2000);
  4926. } else {
  4927. _formdiv = new U.UF.UI.form(
  4928. "课堂审核",
  4929. $$("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 }), {
  4930. "id": "classroom_observation_ob_comment",
  4931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. break;
  4937. }
  4938. }
  4939. }
  4940. U.MD.D.I.openApplication = function (str, obj, info) {
  4941. obj = obj || {};
  4942. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4943. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4944. _userinfo = US.userInfo, //登录用户信息
  4945. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4946. _oid = obj.organizeid || _userinfo.organizeid,
  4947. _type = US.userInfo.type,
  4948. _org = US.userInfo.org,
  4949. _role = US.userInfo.role,
  4950. _classId = US.userInfo.classid,
  4951. _TscreenType = 1
  4952. _screenType = 2,
  4953. _SscreenType = 3;
  4954. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4955. return;
  4956. }
  4957. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4958. switch (str) {
  4959. case "studnetProject": //好友打开
  4960. _formdiv = new U.UF.UI.form(
  4961. "我的项目",
  4962. $$("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 }), {
  4963. "id": "studnetProject",
  4964. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4965. "onresize": function () { }
  4966. }, {
  4967. closecallback: function () { }
  4968. }, { "style": { "height": "36px" } }).form; //创建窗体
  4969. _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); } }
  4970. break;
  4971. case "studentEvaluate": //好友打开
  4972. _formdiv = new U.UF.UI.form(
  4973. "我的评价",
  4974. $$("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 }), {
  4975. "id": "studentEvaluate",
  4976. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4977. "onresize": function () { }
  4978. }, {
  4979. closecallback: function () { }
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. _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); } }
  4982. break;
  4983. case "my":
  4984. _formdiv = new U.UF.UI.form(
  4985. "我的资料",
  4986. $$("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 }), {
  4987. "id": "my",
  4988. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. break;
  4995. case "program":
  4996. _formdiv = new U.UF.UI.form(
  4997. "编程平台",
  4998. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4999. "id": "program",
  5000. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5001. "onresize": function () { }
  5002. }, {
  5003. closecallback: function () { }
  5004. }, { "style": { "height": "36px" } }).form; //创建窗体
  5005. _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); } }
  5006. break;
  5007. case "library":
  5008. _formdiv = new U.UF.UI.form(
  5009. "素材库",
  5010. $$("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 }), {
  5011. "id": "library",
  5012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5013. "onresize": function () { }
  5014. }, {
  5015. closecallback: function () { }
  5016. }, { "style": { "height": "36px" } }).form; //创建窗体
  5017. _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); } }
  5018. break;
  5019. case "whiteboard":
  5020. _formdiv = new U.UF.UI.form(
  5021. "电子白板",
  5022. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5023. "id": "whiteboard",
  5024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //创建窗体
  5029. _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); } }
  5030. break;
  5031. case "investigation":
  5032. _formdiv = new U.UF.UI.form(
  5033. "问卷调查",
  5034. $$("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 }), {
  5035. "id": "investigation",
  5036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5037. "onresize": function () { }
  5038. }, {
  5039. closecallback: function () { }
  5040. }, { "style": { "height": "36px" } }).form; //创建窗体
  5041. _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); } }
  5042. break;
  5043. case "note":
  5044. _formdiv = new U.UF.UI.form(
  5045. "便签分类",
  5046. $$("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 }), {
  5047. "id": "note",
  5048. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5049. "onresize": function () { }
  5050. }, {
  5051. closecallback: function () { }
  5052. }, { "style": { "height": "36px" } }).form; //创建窗体
  5053. _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); } }
  5054. break;
  5055. // case "score":
  5056. // _formdiv = new U.UF.UI.form(
  5057. // "量规评分",
  5058. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5059. // "id": "score",
  5060. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5061. // "onresize": function() {}
  5062. // }, {
  5063. // closecallback: function() {}
  5064. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5065. // _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); } }
  5066. // break;
  5067. case "mind":
  5068. _formdiv = new U.UF.UI.form(
  5069. "思维导图",
  5070. $$("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"
  5071. "id": "mind",
  5072. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5073. "onresize": function () { }
  5074. }, {
  5075. closecallback: function () { }
  5076. }, { "style": { "height": "36px" } }).form; //创建窗体
  5077. _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); } }
  5078. break;
  5079. case "doc":
  5080. // U.MD.D.I.isRoom();
  5081. _formdiv = new U.UF.UI.form(
  5082. "协同文档",
  5083. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5084. "id": "doc",
  5085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5091. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5092. // })
  5093. _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); } }
  5094. break;
  5095. case "studentStudy":
  5096. _formdiv = new U.UF.UI.form(
  5097. "课程中心",
  5098. $$("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
  5099. "id": "studentStudy",
  5100. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "train": //好友打开
  5108. _formdiv = new U.UF.UI.form(
  5109. "训练平台",
  5110. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5111. "id": "train",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "mindNetwork": //好友打开
  5120. _formdiv = new U.UF.UI.form(
  5121. "思维网格",
  5122. $$("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 }), {
  5123. "id": "mindNetwork",
  5124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5130. break;
  5131. case "studentClassRoom": //好友打开
  5132. _formdiv = new U.UF.UI.form(
  5133. "实时课堂",
  5134. $$("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 }), {
  5135. "id": "studentClassRoom",
  5136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. setTimeout(() => {
  5143. U.UF.F.windowZooming(_formdiv)
  5144. }, 0);
  5145. break;
  5146. }
  5147. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5148. switch (str) {
  5149. case "studnetProject": //好友打开
  5150. _formdiv = new U.UF.UI.form(
  5151. "我的项目",
  5152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5153. "id": "studnetProject",
  5154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //创建窗体
  5159. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5160. break;
  5161. case "studentEvaluate": //好友打开
  5162. _formdiv = new U.UF.UI.form(
  5163. "我的评价",
  5164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5165. "id": "studentEvaluate",
  5166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5172. break;
  5173. case "my":
  5174. _formdiv = new U.UF.UI.form(
  5175. "我的资料",
  5176. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5177. "id": "my",
  5178. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5184. break;
  5185. case "program":
  5186. _formdiv = new U.UF.UI.form(
  5187. "编程平台",
  5188. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5189. "id": "program",
  5190. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5196. break;
  5197. case "library":
  5198. _formdiv = new U.UF.UI.form(
  5199. "素材库",
  5200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5201. "id": "library",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5208. break;
  5209. case "whiteboard":
  5210. _formdiv = new U.UF.UI.form(
  5211. "电子白板",
  5212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5213. "id": "whiteboard",
  5214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5220. break;
  5221. case "investigation":
  5222. _formdiv = new U.UF.UI.form(
  5223. "问卷调查",
  5224. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5225. "id": "investigation",
  5226. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5227. "onresize": function () { }
  5228. }, {
  5229. closecallback: function () { }
  5230. }, { "style": { "height": "36px" } }).form; //创建窗体
  5231. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5232. break;
  5233. case "note":
  5234. _formdiv = new U.UF.UI.form(
  5235. "便签分类",
  5236. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5237. "id": "note",
  5238. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5239. "onresize": function () { }
  5240. }, {
  5241. closecallback: function () { }
  5242. }, { "style": { "height": "36px" } }).form; //创建窗体
  5243. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5244. break;
  5245. // case "score":
  5246. // _formdiv = new U.UF.UI.form(
  5247. // "量规评分",
  5248. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5249. // "id": "score",
  5250. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5251. // "onresize": function() {}
  5252. // }, {
  5253. // closecallback: function() {}
  5254. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. // _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); } }
  5256. // break;
  5257. case "mind":
  5258. _formdiv = new U.UF.UI.form(
  5259. "思维导图",
  5260. $$("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"
  5261. "id": "mind",
  5262. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5268. break;
  5269. case "doc":
  5270. // U.MD.D.I.isRoom();
  5271. _formdiv = new U.UF.UI.form(
  5272. "协同文档",
  5273. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5274. "id": "doc",
  5275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5276. "onresize": function () { }
  5277. }, {
  5278. closecallback: function () { }
  5279. }, { "style": { "height": "36px" } }).form; //创建窗体
  5280. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5281. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5282. })
  5283. _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); } }
  5284. break;
  5285. case "train": //好友打开
  5286. _formdiv = new U.UF.UI.form(
  5287. "训练平台",
  5288. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5289. "id": "train",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5296. break;
  5297. case "studentStudy":
  5298. _formdiv = new U.UF.UI.form(
  5299. "课程中心",
  5300. $$("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
  5301. "id": "studentStudy",
  5302. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5308. break;
  5309. case "mindNetwork": //好友打开
  5310. _formdiv = new U.UF.UI.form(
  5311. "思维网格",
  5312. $$("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 }), {
  5313. "id": "mindNetwork",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "studentClassRoom": //好友打开
  5322. _formdiv = new U.UF.UI.form(
  5323. "实时课堂",
  5324. $$("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 }), {
  5325. "id": "studentClassRoom",
  5326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. setTimeout(() => {
  5333. U.UF.F.windowZooming(_formdiv)
  5334. }, 0);
  5335. break;
  5336. }
  5337. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5338. //选择应用处理
  5339. switch (str) {
  5340. case "project": //好友打开
  5341. _formdiv = new U.UF.UI.form(
  5342. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5343. $$("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 }), {
  5344. "id": "project",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5351. break;
  5352. case "student":
  5353. _formdiv = new U.UF.UI.form(
  5354. "学生管理",
  5355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5356. "id": "student",
  5357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5363. break;
  5364. case "evaluate":
  5365. _formdiv = new U.UF.UI.form(
  5366. "学生评价",
  5367. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5368. "id": "evaluate",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5375. break;
  5376. case "sys":
  5377. _formdiv = new U.UF.UI.form(
  5378. "目标管理",
  5379. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5380. "id": "sys",
  5381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //创建窗体
  5386. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5387. break;
  5388. case "courseDesign":
  5389. _formdiv = new U.UF.UI.form(
  5390. "项目设计",
  5391. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5392. "id": "courseDesign",
  5393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5399. break;
  5400. case "program":
  5401. _formdiv = new U.UF.UI.form(
  5402. "编程平台",
  5403. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5404. "id": "program",
  5405. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5411. break;
  5412. case "class":
  5413. _formdiv = new U.UF.UI.form(
  5414. "班级管理",
  5415. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5416. "id": "class",
  5417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5423. break;
  5424. case "Grade":
  5425. _formdiv = new U.UF.UI.form(
  5426. "年级管理",
  5427. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5428. "id": "Grade",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5435. break;
  5436. case "teacherOffice":
  5437. _formdiv = new U.UF.UI.form(
  5438. "教研室",
  5439. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5440. "id": "teacherOffice",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. case "my":
  5449. _formdiv = new U.UF.UI.form(
  5450. "我的资料",
  5451. $$("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 }), {
  5452. "id": "my",
  5453. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5454. "onresize": function () { }
  5455. }, {
  5456. closecallback: function () { }
  5457. }, { "style": { "height": "36px" } }).form; //创建窗体
  5458. _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); } }
  5459. break;
  5460. case "notice":
  5461. _formdiv = new U.UF.UI.form(
  5462. "通知公告",
  5463. $$("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 }), {
  5464. "id": "notice",
  5465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5466. "onresize": function () { }
  5467. }, {
  5468. closecallback: function () { }
  5469. }, { "style": { "height": "36px" } }).form; //创建窗体
  5470. _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); } }
  5471. break;
  5472. case "library":
  5473. _formdiv = new U.UF.UI.form(
  5474. "素材库",
  5475. $$("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 }), {
  5476. "id": "library",
  5477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5478. "onresize": function () { }
  5479. }, {
  5480. closecallback: function () { }
  5481. }, { "style": { "height": "36px" } }).form; //创建窗体
  5482. _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); } }
  5483. break;
  5484. case "whiteboard":
  5485. _formdiv = new U.UF.UI.form(
  5486. "电子白板",
  5487. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5488. "id": "whiteboard",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. _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); } }
  5495. break;
  5496. case "investigation":
  5497. _formdiv = new U.UF.UI.form(
  5498. "问卷调查",
  5499. $$("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 }), {
  5500. "id": "investigation",
  5501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. _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); } }
  5507. break;
  5508. case "note":
  5509. _formdiv = new U.UF.UI.form(
  5510. "便签分类",
  5511. $$("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 }), {
  5512. "id": "note",
  5513. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5514. "onresize": function () { }
  5515. }, {
  5516. closecallback: function () { }
  5517. }, { "style": { "height": "36px" } }).form; //创建窗体
  5518. _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); } }
  5519. break;
  5520. // case "score":
  5521. // _formdiv = new U.UF.UI.form(
  5522. // "量规评分",
  5523. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5524. // "id": "score",
  5525. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5526. // "onresize": function() {}
  5527. // }, {
  5528. // closecallback: function() {}
  5529. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. // _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); } }
  5531. // break;
  5532. case "mind":
  5533. _formdiv = new U.UF.UI.form(
  5534. "思维导图",
  5535. $$("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"
  5536. "id": "mind",
  5537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, { "style": { "height": "36px" } }).form; //创建窗体
  5542. _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); } }
  5543. break;
  5544. case "doc":
  5545. // U.MD.D.I.isRoom();
  5546. _formdiv = new U.UF.UI.form(
  5547. "协同文档",
  5548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5549. "id": "doc",
  5550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5556. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5557. })
  5558. _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); } }
  5559. break;
  5560. case "study":
  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-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
  5564. "id": "study",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "mindNetwork": //好友打开
  5573. _formdiv = new U.UF.UI.form(
  5574. "思维网格",
  5575. $$("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 }), {
  5576. "id": "mindNetwork",
  5577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "train": //好友打开
  5585. _formdiv = new U.UF.UI.form(
  5586. "训练平台",
  5587. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5588. "id": "mindNetwork",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "teacherClassRoom": //好友打开
  5597. _formdiv = new U.UF.UI.form(
  5598. "实时课堂",
  5599. $$("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 }), {
  5600. "id": "teacherClassRoom",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. setTimeout(() => {
  5608. U.UF.F.windowZooming(_formdiv)
  5609. }, 0);
  5610. break;
  5611. }
  5612. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5613. switch (str) {
  5614. case "project": //好友打开
  5615. _formdiv = new U.UF.UI.form(
  5616. "课程管理",
  5617. $$("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 }), {
  5618. "id": "project",
  5619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5625. break;
  5626. case "evaluate":
  5627. _formdiv = new U.UF.UI.form(
  5628. "学生评价",
  5629. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5630. "id": "evaluate",
  5631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //创建窗体
  5636. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5637. break;
  5638. case "notice":
  5639. _formdiv = new U.UF.UI.form(
  5640. "通知公告",
  5641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5642. "id": "notice",
  5643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //创建窗体
  5648. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5649. break;
  5650. case "stuLibrary":
  5651. _formdiv = new U.UF.UI.form(
  5652. "学习资料",
  5653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5654. "id": "stuLibrary",
  5655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5661. break;
  5662. case "program":
  5663. _formdiv = new U.UF.UI.form(
  5664. "编程平台",
  5665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5666. "id": "program",
  5667. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5673. break;
  5674. case "whiteboard":
  5675. _formdiv = new U.UF.UI.form(
  5676. "电子白板",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5678. "id": "whiteboard",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5685. break;
  5686. case "investigation":
  5687. _formdiv = new U.UF.UI.form(
  5688. "问卷调查",
  5689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5690. "id": "investigation",
  5691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5697. break;
  5698. case "mind":
  5699. _formdiv = new U.UF.UI.form(
  5700. "思维导图",
  5701. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5702. "id": "mind",
  5703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5709. break;
  5710. case "doc":
  5711. // U.MD.D.I.isRoom();
  5712. _formdiv = new U.UF.UI.form(
  5713. "协同文档",
  5714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5715. "id": "doc",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5722. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5723. })
  5724. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5725. break;
  5726. case "study":
  5727. _formdiv = new U.UF.UI.form(
  5728. "课程中心",
  5729. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5730. "id": "study",
  5731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5737. break;
  5738. case "mindNetwork": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "思维网格",
  5741. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5742. "id": "mindNetwork",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5749. break;
  5750. case "train": //好友打开
  5751. _formdiv = new U.UF.UI.form(
  5752. "训练平台",
  5753. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5754. "id": "train",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5761. break;
  5762. case "sys":
  5763. _formdiv = new U.UF.UI.form(
  5764. "目标管理",
  5765. $$("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 }), {
  5766. "id": "sys",
  5767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5773. break;
  5774. case "courseDesign":
  5775. _formdiv = new U.UF.UI.form(
  5776. "项目设计",
  5777. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5778. "id": "courseDesign",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. }
  5787. } else if (!_type) {
  5788. switch (str) {
  5789. case "my":
  5790. _formdiv = new U.UF.UI.form(
  5791. "我的资料",
  5792. $$("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 }), {
  5793. "id": "my",
  5794. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. _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); } }
  5800. break;
  5801. }
  5802. }
  5803. switch (str) {
  5804. // AIprogram2 AI体验 aihub.cocorobo.cn
  5805. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5806. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5807. case "formulaEdi": //公式编辑
  5808. _formdiv = new U.UF.UI.form(
  5809. "公式编辑",
  5810. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5811. "id": "formulaEdi",
  5812. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. _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); } }
  5818. break;
  5819. case "molStr": //分子结构
  5820. _formdiv = new U.UF.UI.form(
  5821. "分子结构",
  5822. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5823. "id": "molStr",
  5824. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. case "timeAxis": //时间轴
  5832. _formdiv = new U.UF.UI.form(
  5833. "时间轴",
  5834. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5835. "id": "timeAxis",
  5836. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. _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); } }
  5842. break;
  5843. case "AIprogram2": //AI体验
  5844. _formdiv = new U.UF.UI.form(
  5845. "AI体验",
  5846. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5847. "id": "AIprogram2",
  5848. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _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); } }
  5854. break;
  5855. case "Pythonprogram": //python编程
  5856. _formdiv = new U.UF.UI.form(
  5857. "Python编程",
  5858. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5859. "id": "Pythonprogram",
  5860. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. case "AIprogram": //ai编程
  5868. _formdiv = new U.UF.UI.form(
  5869. "AI编程平台",
  5870. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5871. "id": "AIprogram",
  5872. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //创建窗体
  5877. _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); } }
  5878. break;
  5879. case "CocoPi": //CocoPi
  5880. _formdiv = new U.UF.UI.form(
  5881. "CocoPi",
  5882. $$("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" }), {
  5883. "id": "CocoPi",
  5884. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5885. "onresize": function () { }
  5886. }, {
  5887. closecallback: function () { }
  5888. }, { "style": { "height": "36px" } }).form; //创建窗体
  5889. _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); } }
  5890. break;
  5891. case "Wood": //Wood
  5892. _formdiv = new U.UF.UI.form(
  5893. "海龟编程",
  5894. $$("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/" }), {
  5895. "id": "Wood",
  5896. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //创建窗体
  5901. _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); } }
  5902. break;
  5903. case "car": //模拟驾驶
  5904. _formdiv = new U.UF.UI.form(
  5905. "模拟驾驶",
  5906. $$("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/" }), {
  5907. "id": "car",
  5908. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. _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); } }
  5914. break;
  5915. case "lineSearch": //路径搜索
  5916. _formdiv = new U.UF.UI.form(
  5917. "路径搜索",
  5918. $$("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/" }), {
  5919. "id": "lineSearch",
  5920. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //创建窗体
  5925. _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); } }
  5926. break;
  5927. case "deepLearning": //深度学习
  5928. _formdiv = new U.UF.UI.form(
  5929. "深度学习",
  5930. $$("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/#" }), {
  5931. "id": "deepLearning",
  5932. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, { "style": { "height": "36px" } }).form; //创建窗体
  5937. _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); } }
  5938. break;
  5939. case "allHistory": //深度学习
  5940. _formdiv = new U.UF.UI.form(
  5941. "全历史",
  5942. $$("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/" }), {
  5943. "id": "allHistory",
  5944. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, { "style": { "height": "36px" } }).form; //创建窗体
  5949. _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); } }
  5950. break;
  5951. case "chatPDF": //ai编程
  5952. _formdiv = new U.UF.UI.form(
  5953. "chatPDF",
  5954. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5955. "id": "chatPDF",
  5956. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5957. "onresize": function () { }
  5958. }, {
  5959. closecallback: function () { }
  5960. }, { "style": { "height": "36px" } }).form; //创建窗体
  5961. _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); } }
  5962. break;
  5963. case "resources": //国家教育
  5964. _formdiv = new U.UF.UI.form(
  5965. "国家教育",
  5966. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5967. "id": "resources",
  5968. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5969. "onresize": function () { }
  5970. }, {
  5971. closecallback: function () { }
  5972. }, { "style": { "height": "36px" } }).form; //创建窗体
  5973. _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); } }
  5974. break;
  5975. case "codeEdit": //源码编辑
  5976. _formdiv = new U.UF.UI.form(
  5977. "源码编辑",
  5978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5979. "id": "codeEdit",
  5980. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5981. "onresize": function () { }
  5982. }, {
  5983. closecallback: function () { }
  5984. }, { "style": { "height": "36px" } }).form; //创建窗体
  5985. _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); } }
  5986. break; //
  5987. case "MindMap": //MindMap
  5988. _formdiv = new U.UF.UI.form(
  5989. "MindMap",
  5990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5991. "id": "MindMap",
  5992. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5993. "onresize": function () { }
  5994. }, {
  5995. closecallback: function () { }
  5996. }, { "style": { "height": "36px" } }).form; //创建窗体
  5997. _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); } }
  5998. break;
  5999. case "netWorkPanel": //netWorkPanel
  6000. _formdiv = new U.UF.UI.form(
  6001. "netWorkPanel",
  6002. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6003. "id": "netWorkPanel",
  6004. "style": { "width": "80%", "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/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6010. break;
  6011. case "GeoGebra": //GeoGebra
  6012. _formdiv = new U.UF.UI.form(
  6013. "GeoGebra",
  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": "//www.geogebra.org/calculator" }), {
  6015. "id": "GeoGebra",
  6016. "style": { "width": "80%", "height": "90%", "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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6022. break;
  6023. case "translation": //翻译
  6024. _formdiv = new U.UF.UI.form(
  6025. "翻译",
  6026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6027. "id": "translation",
  6028. "style": { "width": "80%", "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/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6034. break;
  6035. case "mohe": //魔盒
  6036. _formdiv = new U.UF.UI.form(
  6037. "魔盒识字",
  6038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6039. "id": "mohe",
  6040. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6046. break;
  6047. case "24game": //24点
  6048. _formdiv = new U.UF.UI.form(
  6049. "24点",
  6050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6051. "id": "24game",
  6052. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. _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); } }
  6058. break;
  6059. case "case":
  6060. _formdiv = new U.UF.UI.form(
  6061. "课程进展",
  6062. $$("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 }), {
  6063. "id": "case",
  6064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //创建窗体
  6069. _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); } }
  6070. break;
  6071. case "snf":
  6072. _formdiv = new U.UF.UI.form(
  6073. "赛诺梵",
  6074. $$("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" }), {
  6075. "id": "snf",
  6076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //创建窗体
  6081. _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); } }
  6082. break;
  6083. case "hanFamily":
  6084. _formdiv = new U.UF.UI.form(
  6085. "汉字家族",
  6086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6087. "id": "hanFamily",
  6088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //创建窗体
  6093. _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); } }
  6094. break;
  6095. case "hanClassics":
  6096. _formdiv = new U.UF.UI.form(
  6097. "国学经典",
  6098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6099. "id": "hanClassics",
  6100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _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); } }
  6106. break;
  6107. case "hanTraining":
  6108. _formdiv = new U.UF.UI.form(
  6109. "笔画训练",
  6110. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6111. "id": "hanTraining",
  6112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. _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); } }
  6118. break;
  6119. case "hanClass":
  6120. _formdiv = new U.UF.UI.form(
  6121. "书法课堂",
  6122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6123. "id": "hanClass",
  6124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _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); } }
  6130. break;
  6131. case "han":
  6132. _formdiv = new U.UF.UI.form(
  6133. "汉字宫",
  6134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6135. "id": "han",
  6136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _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); } }
  6142. break;
  6143. case "projectGM": //课程管理
  6144. _formdiv = new U.UF.UI.form(
  6145. "课程管理",
  6146. $$("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 }), {
  6147. "id": "projectGM",
  6148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _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); } }
  6154. break;
  6155. case "studyGM": //课程中心
  6156. _formdiv = new U.UF.UI.form(
  6157. "课程中心",
  6158. $$("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
  6159. "id": "study",
  6160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. _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); } }
  6166. break;
  6167. // studentGM
  6168. case "studentGM": //学生管理
  6169. _formdiv = new U.UF.UI.form(
  6170. "学生管理",
  6171. $$("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 }), {
  6172. "id": "studentGM",
  6173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "evaluateGM": //学生评价
  6181. _formdiv = new U.UF.UI.form(
  6182. "学生评价",
  6183. $$("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 }), {
  6184. "id": "evaluateGM",
  6185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. _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); } }
  6191. break;
  6192. // classGM
  6193. case "classGM": //班级管理
  6194. _formdiv = new U.UF.UI.form(
  6195. "班级管理",
  6196. $$("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 }), {
  6197. "id": "classGM",
  6198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //创建窗体
  6203. _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); } }
  6204. break;
  6205. // dataGM
  6206. case "dataGM":
  6207. _formdiv = new U.UF.UI.form(
  6208. "我的资料",
  6209. $$("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 }), {
  6210. "id": "dataGM",
  6211. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _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); } }
  6217. break;
  6218. // caseGM
  6219. case "caseGM": //课程进展
  6220. _formdiv = new U.UF.UI.form(
  6221. "课程进展",
  6222. $$("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 }), {
  6223. "id": "caseGM",
  6224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _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); } }
  6230. break;
  6231. // meterialGM
  6232. case "meterialGM": //素材库
  6233. _formdiv = new U.UF.UI.form(
  6234. "素材库",
  6235. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6236. "id": "meterialGM",
  6237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6243. break;
  6244. // evaluateSGM
  6245. case "evaluateSGM": //我的评价
  6246. _formdiv = new U.UF.UI.form(
  6247. "我的评价",
  6248. $$("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 }), {
  6249. "id": "evaluateSGM",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. case "jupyter": //jupyter
  6258. _formdiv = new U.UF.UI.form(
  6259. "jupyter",
  6260. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6261. "id": "jupyter",
  6262. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "number": //数字实验室
  6270. _formdiv = new U.UF.UI.form(
  6271. "数字实验室",
  6272. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6273. "id": "number",
  6274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "studentCourse": //项目管理 学生
  6282. _formdiv = new U.UF.UI.form(
  6283. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6284. $$("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 }), {
  6285. "id": "studentCourse",
  6286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. case "studentCourseS": //项目管理 老师
  6294. _formdiv = new U.UF.UI.form(
  6295. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6296. $$("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 }), {
  6297. "id": "studentCourseS",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _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); } }
  6304. break;
  6305. case "studentIndex": //项目中心
  6306. _formdiv = new U.UF.UI.form(
  6307. "项目中心",
  6308. $$("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 }), {
  6309. "id": "studentIndex",
  6310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _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); } }
  6316. break;
  6317. case "CaseDesignS":
  6318. _formdiv = new U.UF.UI.form(
  6319. "项目进展",
  6320. $$("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 }), {
  6321. "id": "case",
  6322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break;
  6329. case "tcStudent": //腾讯学生管理
  6330. _formdiv = new U.UF.UI.form(
  6331. "学生管理",
  6332. $$("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 }), {
  6333. "id": "tcStudent",
  6334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. case "tcSchool": //腾讯学校管理
  6342. _formdiv = new U.UF.UI.form(
  6343. "学校管理",
  6344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6345. "id": "tcSchool",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6352. break;
  6353. case "tcTeacher": //腾讯学校管理
  6354. _formdiv = new U.UF.UI.form(
  6355. "教师管理",
  6356. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6357. "id": "tcTeacher",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6364. break;
  6365. case "teacher":
  6366. _formdiv = new U.UF.UI.form(
  6367. "教师管理",
  6368. $$("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 }), {
  6369. "id": "teacher",
  6370. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _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); } }
  6376. break;
  6377. case "tcData": //腾讯我的资料
  6378. _formdiv = new U.UF.UI.form(
  6379. "我的资料",
  6380. $$("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 }), {
  6381. "id": "tcData",
  6382. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. case "tcNotice": //腾讯消息通知
  6390. _formdiv = new U.UF.UI.form(
  6391. "消息通知",
  6392. $$("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 }), {
  6393. "id": "tcNotice",
  6394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "myReport": //好友打开
  6402. _formdiv = new U.UF.UI.form(
  6403. "我的评价",
  6404. $$("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 }), {
  6405. "id": "myReport",
  6406. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. case "learnAna": //好友打开
  6414. _formdiv = new U.UF.UI.form(
  6415. "学习分析",
  6416. $$("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 }), {
  6417. "id": "learnAna",
  6418. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break;
  6425. case "AIChat": //AI共创
  6426. _formdiv = new U.UF.UI.form(
  6427. "AI共创",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6429. "id": "AIChat",
  6430. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. istop: true,
  6434. closecallback: function () { $("#aichat_icon").remove(); },
  6435. narrowcallback: function () {
  6436. if (!$("#aichat_icon")[0]) {
  6437. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6438. }
  6439. },
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _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); } }
  6442. break;
  6443. case "ainew": //AI共创
  6444. _formdiv = new U.UF.UI.form(
  6445. "AI协同",
  6446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6447. "id": "ainew",
  6448. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _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); } }
  6454. break;
  6455. case "gpt4": //gpt4
  6456. _formdiv = new U.UF.UI.form(
  6457. "AI助手",
  6458. $$("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 }), {
  6459. "id": "gpt4",
  6460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6461. "onresize": function () { }
  6462. }, {
  6463. closecallback: function () { }
  6464. }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. _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); } }
  6466. break;
  6467. case "aigpt": //gpt4
  6468. _formdiv = new U.UF.UI.form(
  6469. "AI助手+",
  6470. $$("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 }), {
  6471. "id": "aigpt",
  6472. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () {
  6476. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6477. }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6481. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6482. })
  6483. break;
  6484. case "aiKnowledge": //aiKnowledge
  6485. _formdiv = new U.UF.UI.form(
  6486. "知识建构",
  6487. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6488. "id": "aiKnowledge",
  6489. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6495. break;
  6496. case "futureClass": //AI共创
  6497. _formdiv = new U.UF.UI.form(
  6498. "协同建构",
  6499. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6500. "id": "synergyCourse",
  6501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () {
  6505. $("iframe", _formdiv)[0].contentWindow.loginout();
  6506. }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. _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); } }
  6509. break;
  6510. case "aiagent": //ai agent
  6511. _formdiv = new U.UF.UI.form(
  6512. "AI Agent",
  6513. $$("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" }), {
  6514. "id": "AIAgent",
  6515. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _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); } }
  6521. break;
  6522. case "dataBoard": //数据看板
  6523. _formdiv = new U.UF.UI.form(
  6524. "数据看板",
  6525. $$("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 }), {
  6526. "id": "dataBoard",
  6527. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "dataBoardSies": //数据融合
  6535. _formdiv = new U.UF.UI.form(
  6536. "数据融合",
  6537. $$("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 }), {
  6538. "id": "dataBoardSies",
  6539. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "dataBoardNew": //数据看板
  6547. _formdiv = new U.UF.UI.form(
  6548. "综合看板",
  6549. $$("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 }), {
  6550. "id": "dataBoardNew",
  6551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "dataBoardTest": //数据看板
  6559. _formdiv = new U.UF.UI.form(
  6560. "评测看板",
  6561. $$("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 }), {
  6562. "id": "dataBoardTest",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "AIAnalyse": //AI共创
  6571. _formdiv = new U.UF.UI.form(
  6572. "AI分析",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6574. "id": "AIAnalyse",
  6575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "studioCourse": //AI共创
  6583. _formdiv = new U.UF.UI.form(
  6584. "工作管理",
  6585. $$("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 }), {
  6586. "id": "studioCourse",
  6587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "studioIndex": //AI共创
  6595. _formdiv = new U.UF.UI.form(
  6596. "工作中心",
  6597. $$("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 }), {
  6598. "id": "studioIndex",
  6599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. break;
  6606. case "source":
  6607. _formdiv = new U.UF.UI.form(
  6608. "教学资源",
  6609. $$("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 }), {
  6610. "id": "source",
  6611. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "testTeacher":
  6619. _formdiv = new U.UF.UI.form(
  6620. "教师管理",
  6621. $$("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 }), {
  6622. "id": "testTeacher",
  6623. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "testStudent":
  6631. _formdiv = new U.UF.UI.form(
  6632. "教师中心",
  6633. $$("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 }), {
  6634. "id": "testStudent",
  6635. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "testTeacherSies":
  6643. _formdiv = new U.UF.UI.form(
  6644. "教师管理",
  6645. $$("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 }), {
  6646. "id": "testTeacherSies",
  6647. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. break;
  6654. case "testStudentSies":
  6655. _formdiv = new U.UF.UI.form(
  6656. "教师中心",
  6657. $$("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 }), {
  6658. "id": "testStudentSies",
  6659. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "ytpbl": //消息通知
  6667. _formdiv = new U.UF.UI.form(
  6668. "案例征集",
  6669. $$("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 }), {
  6670. "id": "ytpbl",
  6671. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _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); } }
  6677. // 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");
  6678. break;
  6679. case "aiCourseResource": //人工智能窗体
  6680. _formdiv = new U.UF.UI.form(
  6681. false,
  6682. $$("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 }), {
  6683. "id": "aiCourseResource",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { },
  6686. "isdrag": false,
  6687. }, {
  6688. closecallback: function () { }
  6689. }, { "style": { "height": "36px" } }).form; //创建窗体
  6690. _taskbar = ''
  6691. break;
  6692. case "szdjgCocooroboX": //图形化编程
  6693. _formdiv = new U.UF.UI.form(
  6694. "图形化编程",
  6695. $$("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" }), {
  6696. "id": "szdjgCocooroboX",
  6697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6698. "onresize": function () { }
  6699. }, {
  6700. closecallback: function () { }
  6701. }, { "style": { "height": "36px" } }).form; //创建窗体
  6702. _taskbar = ''
  6703. break;
  6704. case "szdjgPython": //python编程
  6705. _formdiv = new U.UF.UI.form(
  6706. "Python编程",
  6707. $$("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" }), {
  6708. "id": "szdjgPython",
  6709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6710. "onresize": function () { }
  6711. }, {
  6712. closecallback: function () { }
  6713. }, { "style": { "height": "36px" } }).form; //创建窗体
  6714. _taskbar = ''
  6715. break;
  6716. case "Record":
  6717. _formdiv = new U.UF.UI.form(
  6718. "观察记录",
  6719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6720. "id": "Record",
  6721. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //创建窗体
  6726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6727. break;
  6728. case "aigptCourse":
  6729. _formdiv = new U.UF.UI.form(
  6730. "AI智能体",
  6731. $$("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' }), {
  6732. "id": "aigptCourse",
  6733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //创建窗体
  6738. _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); } }
  6739. break;
  6740. case "classroomObservation":
  6741. _formdiv = new U.UF.UI.form(
  6742. "课堂观察",
  6743. $$("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 }), {
  6744. "id": "classroomObservation",
  6745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () { }
  6749. }, { "style": { "height": "36px" } }).form; //创建窗体
  6750. _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); } }
  6751. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6752. break;
  6753. case "pblCourse":
  6754. _formdiv = new U.UF.UI.form(
  6755. "学生PBL",
  6756. $$("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 }), {
  6757. "id": "pblCourse",
  6758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6764. break;
  6765. }
  6766. //U.MD.D.I.openClick(str);
  6767. //如果有任务栏信息
  6768. if (_taskbar) {
  6769. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6770. }
  6771. }
  6772. // U.MD.D.I.openClick = function(str){
  6773. // var click = '';
  6774. // switch(str){
  6775. // case 'friend':
  6776. // click = '我的好友';
  6777. // break;
  6778. // case 'domain':
  6779. // click = '域名管理';
  6780. // break;
  6781. // case 'disk':
  6782. // click = '我的云盘';
  6783. // break;
  6784. // case 'word':
  6785. // click = 'Word';
  6786. // break;
  6787. // case 'excel':
  6788. // click = 'Execl';
  6789. // break;
  6790. // case 'txt':
  6791. // click = '文本文件';
  6792. // break;
  6793. // case 'lookupFriend':
  6794. // click = '查找好友';
  6795. // break;
  6796. // case 'ftp':
  6797. // click = 'FTP';
  6798. // break;
  6799. // case 'group':
  6800. // click = '群组';
  6801. // break;
  6802. // case 'set':
  6803. // click = '我的设置';
  6804. // break;
  6805. // case 'systemSet':
  6806. // click = '系统设置';
  6807. // break;
  6808. // case 'boomYun':
  6809. // click = '互联办公';
  6810. // break;
  6811. // case 'xz':
  6812. // click = '云端下载';
  6813. // break;
  6814. // case 'client':
  6815. // click = '有思浏览器';
  6816. // break;
  6817. // case 'backEndProgramming':
  6818. // click = '在线后台编程';
  6819. // break;
  6820. // case 'frontEndProgramming':
  6821. // click = '在线前端编程';
  6822. // break;
  6823. // default: break;
  6824. // }
  6825. // if(U.MD.D.I.Ip && click){
  6826. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6827. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6828. // })
  6829. // }
  6830. // }
  6831. /**
  6832. *函数作用:ajax简易函数,使用post格式
  6833. *@param url {data} 后台地址
  6834. *@param data {data} 参数json
  6835. *@param fn {data} 回调函数
  6836. *
  6837. */
  6838. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6839. // var xhr = new XMLHttpRequest();
  6840. // xhr.open("GET",url,true);
  6841. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6842. // xhr.onreadystatechange = function(){
  6843. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6844. // fn.call(this,xhr.responseText);
  6845. // }
  6846. // };
  6847. // xhr.send();
  6848. // }
  6849. /*判断是否是内网IP*/
  6850. // U.MD.D.I.isInnerIPFn = function(str){
  6851. // var curPageUrl = str;
  6852. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6853. // curPageUrl =curPageUrl.replace(reg1,'');
  6854. // // console.log('curPageUrl-1 '+curPageUrl);
  6855. // var reg2 = /\:+/g;//替换冒号为一点
  6856. // curPageUrl =curPageUrl.replace(reg2,'.');
  6857. // // console.log('curPageUrl-2 '+curPageUrl);
  6858. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6859. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6860. // if(curPageUrl[2] != '16'){
  6861. // return ipAddress;
  6862. // }else{
  6863. // return false;
  6864. // }
  6865. // }
  6866. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6867. // //compatibility for firefox and chrome
  6868. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6869. // var pc = new myPeerConnection({
  6870. // iceServers: []
  6871. // }),
  6872. // noop = function() {},
  6873. // localIPs = {},
  6874. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6875. // key;
  6876. // function iterateIP(ip) {
  6877. // if (!localIPs[ip]) onNewIP(ip);
  6878. // localIPs[ip] = true;
  6879. // }
  6880. // //create a bogus data channel
  6881. // pc.createDataChannel("");
  6882. // // create offer and set local description
  6883. // pc.createOffer().then(function(sdp) {
  6884. // sdp.sdp.split('\n').forEach(function(line) {
  6885. // if (line.indexOf('candidate') < 0) return;
  6886. // line.match(ipRegex).forEach(iterateIP);
  6887. // });
  6888. // pc.setLocalDescription(sdp, noop, noop);
  6889. // }).catch(function(reason) {
  6890. // // An error occurred, so handle the failure to connect
  6891. // });
  6892. // //sten for candidate events
  6893. // pc.onicecandidate = function(ice) {
  6894. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6895. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6896. // };
  6897. // }
  6898. // U.MD.D.I.getUserIpBool = function(callback){
  6899. // U.MD.D.I.getUserIP(function(ip){
  6900. // alert("Got IP! :" + ip);
  6901. // });
  6902. //}
  6903. //#endregion
  6904. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6905. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6906. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6907. _userinfo = US.userInfo, //登录用户信息
  6908. _userid = US.userInfo.userid //登录用户id
  6909. let _iframe;
  6910. let _cid = cid,
  6911. _stage = stage,
  6912. _task = task,
  6913. _tool = tool;
  6914. var _jie = $$("div", {
  6915. "style": {
  6916. "position": "absolute",
  6917. "bottom": "50px",
  6918. "right": "50px",
  6919. "zIndex": "9999",
  6920. "backgroundColor": "#2268bc",
  6921. "color": "#fff",
  6922. "padding": "12px 20px",
  6923. "cursor": "pointer",
  6924. "borderRadius": "4px",
  6925. },
  6926. "innerHTML": "提交作业"
  6927. })
  6928. let aTool = ''
  6929. let _loading = document.createElement('div')
  6930. _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;"
  6931. // _loading.id = "";
  6932. let _lchild = document.createElement('div')
  6933. let _limg = document.createElement('img')
  6934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6935. _limg.style = "width: 26px;margin-right: 10px;"
  6936. _lchild.appendChild(_limg)
  6937. let _lspan = document.createElement('span')
  6938. _lspan.innerHTML = "上传中..."
  6939. _lchild.appendChild(_lspan)
  6940. _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%);"
  6941. _loading.appendChild(_lchild)
  6942. var _box = $$('div', {
  6943. "style": {
  6944. "position": "relative",
  6945. "width": "100%",
  6946. "height": "100%",
  6947. },
  6948. })
  6949. _box.appendChild(_loading)
  6950. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6951. switch (str) {
  6952. case "whiteboard":
  6953. aTool = 1;
  6954. _iframe = $$("iframe", {
  6955. "frameborder": "no",
  6956. "border": "0",
  6957. "scrolling ": "no",
  6958. "style": {
  6959. "cssText": "border:0;width:100%;height:100%"
  6960. },
  6961. "src": "https://beta.iwb.cocorobo.cn/"
  6962. })
  6963. _box.appendChild(_iframe);
  6964. _box.appendChild(_jie);
  6965. _formdiv = new U.UF.UI.form(
  6966. "电子白板",
  6967. _box, {
  6968. "id": "whiteboard" + cid + stage + task + tool,
  6969. "style": {
  6970. "width": "90%",
  6971. "height": "90%",
  6972. "overflow": 'hidden'
  6973. },
  6974. "onresize": function () { }
  6975. }, {
  6976. closecallback: function () { }
  6977. }, {
  6978. "style": {
  6979. "height": "36px"
  6980. }
  6981. }).form; //创建窗体
  6982. _taskbar = {
  6983. "id": str + _formdiv.id,
  6984. "style": {
  6985. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6986. },
  6987. "name": "电子白板",
  6988. "forms": _formdiv,
  6989. "click": function () {
  6990. U.MD.D.I.openApplication(str, obj, info);
  6991. }
  6992. }
  6993. break;
  6994. case "mind":
  6995. aTool = 3;
  6996. _iframe = $$("iframe", {
  6997. "frameborder": "no",
  6998. "border": "0",
  6999. "scrolling ": "no",
  7000. "style": {
  7001. "cssText": "border:0;width:100%;height:100%"
  7002. },
  7003. "src": "/kityminder-editor/dist/index.html"
  7004. })
  7005. _box.appendChild(_iframe);
  7006. _box.appendChild(_jie);
  7007. _formdiv = new U.UF.UI.form(
  7008. "思维导图",
  7009. _box, { //"/jsmind/example/demo.html"
  7010. "id": "mind" + cid + stage + task + tool,
  7011. "style": {
  7012. "width": "90%",
  7013. "height": "90%",
  7014. "overflow": 'hidden'
  7015. },
  7016. "onresize": function () { }
  7017. }, {
  7018. closecallback: function () { }
  7019. }, {
  7020. "style": {
  7021. "height": "36px"
  7022. }
  7023. }).form; //创建窗体
  7024. _taskbar = {
  7025. "id": str + _formdiv.id,
  7026. "style": {
  7027. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7028. },
  7029. "name": "思维导图",
  7030. "forms": _formdiv,
  7031. "click": function () {
  7032. U.MD.D.I.openApplication(str, obj, info);
  7033. }
  7034. }
  7035. break;
  7036. case "MindMap":
  7037. aTool = 3;
  7038. _iframe = $$("iframe", {
  7039. "frameborder": "no",
  7040. "border": "0",
  7041. "scrolling ": "no",
  7042. "style": {
  7043. "cssText": "border:0;width:100%;height:100%"
  7044. },
  7045. "src": "//cloud.cocorobo.cn/mind/"
  7046. })
  7047. _box.appendChild(_iframe);
  7048. _box.appendChild(_jie);
  7049. _formdiv = new U.UF.UI.form(
  7050. "思维导图",
  7051. _box, { //"/jsmind/example/demo.html"
  7052. "id": "mind" + cid + stage + task + tool,
  7053. "style": {
  7054. "width": "90%",
  7055. "height": "90%",
  7056. "overflow": 'hidden'
  7057. },
  7058. "onresize": function () { }
  7059. }, {
  7060. closecallback: function () { }
  7061. }, {
  7062. "style": {
  7063. "height": "36px"
  7064. }
  7065. }).form; //创建窗体
  7066. _taskbar = {
  7067. "id": str + _formdiv.id,
  7068. "style": {
  7069. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7070. },
  7071. "name": "思维导图",
  7072. "forms": _formdiv,
  7073. "click": function () {
  7074. U.MD.D.I.openApplication(str, obj, info);
  7075. }
  7076. }
  7077. break;
  7078. case "doc":
  7079. aTool = 6;
  7080. _iframe = $$("iframe", {
  7081. "frameborder": "no",
  7082. "border": "0",
  7083. "scrolling ": "no",
  7084. "style": {
  7085. "cssText": "border:0;width:100%;height:100%"
  7086. },
  7087. "src": "/Office/Word/WordEditArea.htm"
  7088. })
  7089. _box.appendChild(_iframe);
  7090. _box.appendChild(_jie);
  7091. _formdiv = new U.UF.UI.form(
  7092. "协同文档",
  7093. _box, {
  7094. "id": "doc" + cid + stage + task + tool,
  7095. "style": {
  7096. "width": "90%",
  7097. "height": "90%",
  7098. "overflow": 'hidden'
  7099. },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, {
  7104. "style": {
  7105. "height": "36px"
  7106. }
  7107. }).form; //创建窗体
  7108. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7109. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7110. })
  7111. _taskbar = {
  7112. "id": str + _formdiv.id,
  7113. "style": {
  7114. "backgroundImage": "url(/img/icon/doc.png)"
  7115. },
  7116. "name": "协同文档",
  7117. "forms": _formdiv,
  7118. "click": function () {
  7119. U.MD.D.I.openApplication(str, obj, info);
  7120. }
  7121. }
  7122. break;
  7123. case "mindNetwork": //好友打开
  7124. aTool = 7;
  7125. _iframe = $$("iframe", {
  7126. "webkitallowfullscreen": "",
  7127. "mozallowfullscreen": "",
  7128. "allowfullscreen": "",
  7129. "frameborder": "no",
  7130. "border": "0",
  7131. "scrolling ": "no",
  7132. "style": {
  7133. "cssText": "border:0; width:100%; height:100%;"
  7134. },
  7135. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7136. })
  7137. _box.appendChild(_iframe);
  7138. _box.appendChild(_jie);
  7139. _formdiv = new U.UF.UI.form(
  7140. "思维网格",
  7141. _box, {
  7142. "id": "mindNetwork" + cid + stage + task + tool,
  7143. "style": {
  7144. "width": "90%",
  7145. "height": "90%",
  7146. "overflow": 'hidden'
  7147. },
  7148. "onresize": function () { }
  7149. }, {
  7150. closecallback: function () { }
  7151. }, {
  7152. "style": {
  7153. "height": "36px"
  7154. }
  7155. }).form; //创建窗体
  7156. _taskbar = {
  7157. "id": str + _formdiv.id,
  7158. "style": {
  7159. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7160. },
  7161. "name": "思维网格",
  7162. "forms": _formdiv,
  7163. "click": function () {
  7164. U.MD.D.I.openApplication(str, obj, info);
  7165. }
  7166. }
  7167. break;
  7168. case "courseDesign":
  7169. _iframe = $$("iframe", {
  7170. "webkitallowfullscreen": "",
  7171. "mozallowfullscreen": "",
  7172. "allowfullscreen": "",
  7173. "frameborder": "no",
  7174. "border": "0",
  7175. "scrolling ": "no",
  7176. "style": {
  7177. "cssText": "border:0; width:100%; height:100%;"
  7178. },
  7179. "src": "/course-design-vue"
  7180. })
  7181. _box.appendChild(_iframe);
  7182. _box.appendChild(_jie);
  7183. _formdiv = new U.UF.UI.form(
  7184. "项目设计",
  7185. _box, {
  7186. "id": "courseDesign" + cid + stage + task + tool,
  7187. "style": {
  7188. "width": "90%",
  7189. "height": "90%",
  7190. "overflow": 'hidden'
  7191. },
  7192. "onresize": function () { }
  7193. }, {
  7194. closecallback: function () { }
  7195. }, {
  7196. "style": {
  7197. "height": "36px"
  7198. }
  7199. }).form; //创建窗体
  7200. _taskbar = {
  7201. "id": str + _formdiv.id,
  7202. "style": {
  7203. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7204. },
  7205. "name": "项目设计",
  7206. "forms": _formdiv,
  7207. "click": function () {
  7208. U.MD.D.I.openApplication(str, obj, info);
  7209. }
  7210. }
  7211. break;
  7212. }
  7213. const script1 = document.createElement("script");
  7214. script1.type = "text/javascript";
  7215. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7216. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7217. const script2 = document.createElement("script");
  7218. script2.type = "text/javascript";
  7219. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7220. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7221. const script3 = document.createElement("script");
  7222. script3.type = "text/javascript";
  7223. script3.charset = "UTF-8";
  7224. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7225. const script4 = document.createElement("script");
  7226. script4.type = "text/javascript";
  7227. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7228. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7229. if (_iframe) {
  7230. if (str == 'doc') {
  7231. _iframe = _formdiv.querySelector('iframe')
  7232. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7233. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7234. _iframe.contentWindow.document.body.appendChild(script1);
  7235. _iframe.contentWindow.document.body.appendChild(script2);
  7236. // _iframe.contentWindow.document.body.appendChild(script3);
  7237. _iframe.contentWindow.document.body.appendChild(script4);
  7238. })
  7239. if (onloadListener) {
  7240. _iframe.contentDocument.location.reload()
  7241. } else {
  7242. _iframe.contentDocument.location.reload()
  7243. }
  7244. } else if (str == 'courseDesign') {
  7245. U.UF.DL.iframeLoad(_iframe, function () {
  7246. // _iframe.contentWindow.U.MD.O.W.load();
  7247. // _iframe.contentWindow.document.body.appendChild(script1);
  7248. _iframe.contentWindow.document.body.appendChild(script2);
  7249. _iframe.contentWindow.document.body.appendChild(script4);
  7250. })
  7251. } else if (str == 'mind') {
  7252. _iframe = _formdiv.querySelector('iframe')
  7253. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7254. //
  7255. _iframe.contentWindow.document.body.appendChild(script1);
  7256. _iframe.contentWindow.document.body.appendChild(script2);
  7257. _iframe.contentWindow.document.body.appendChild(script4);
  7258. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7259. })
  7260. if (onloadListener) {
  7261. _iframe.contentDocument.location.reload()
  7262. } else {
  7263. _iframe.contentDocument.location.reload()
  7264. }
  7265. } else if (str == 'whiteboard') {
  7266. _iframe = _formdiv.querySelector('iframe')
  7267. let onloadListener = _iframe.onload = () => {
  7268. _iframe.contentWindow.document.body.appendChild(script1);
  7269. _iframe.contentWindow.document.body.appendChild(script2);
  7270. _iframe.contentWindow.document.body.appendChild(script4);
  7271. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7272. };
  7273. // if (onloadListener) {
  7274. // try {
  7275. // _iframe.src += "?cocorobo="+new Date().getTime()
  7276. // _iframe.contentWindow.document.location.reload()
  7277. // } catch (error) {
  7278. // }
  7279. // } else {
  7280. // _iframe.contentDocument.location.reload()
  7281. // }
  7282. } else {
  7283. _iframe.onload = () => {
  7284. _iframe.contentWindow.document.body.appendChild(script1);
  7285. _iframe.contentWindow.document.body.appendChild(script2);
  7286. // _iframe.contentWindow.document.body.appendChild(script3);
  7287. _iframe.contentWindow.document.body.appendChild(script4);
  7288. };
  7289. }
  7290. _jie.onclick = async () => {
  7291. let text = ''
  7292. if (aTool == 1) {
  7293. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7294. } else if (aTool == 6) {
  7295. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7296. } else if (aTool == 3) {
  7297. text = await U.MD.D.I.getEditorContent(_iframe);
  7298. }
  7299. _loading.style.display = 'flex'
  7300. console.log(_loading);
  7301. var _ajs = _iframe.contentWindow.document.createElement("script");
  7302. _ajs.type = "text/javascript";
  7303. _ajs.innerHTML =
  7304. // 'console.log(' + _loading + ');\n' +
  7305. 'var _js = document.createElement("script");\n' +
  7306. '_js.type="text/javascript";\n' +
  7307. '_js.charset="UTF-8";\n' +
  7308. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7309. "_js.onload = function(){\n" +
  7310. ' var a = document.getElementsByTagName("img")\n' +
  7311. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7312. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7313. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7314. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7315. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7316. "beforeUpload_shishi(file," +
  7317. "'" +
  7318. _userid +
  7319. "'" +
  7320. ", " +
  7321. "'" +
  7322. _cid +
  7323. "'" +
  7324. ", " +
  7325. "'" +
  7326. _stage +
  7327. "'" +
  7328. ", " +
  7329. "'" +
  7330. _task +
  7331. "'" +
  7332. ", " +
  7333. "'" +
  7334. _tool +
  7335. "'" +
  7336. ", " +
  7337. "'" +
  7338. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7339. "'" +
  7340. ", " +
  7341. "'" +
  7342. aTool +
  7343. "'" +
  7344. ", " +
  7345. "`" +
  7346. text +
  7347. "`" +
  7348. ")\n" +
  7349. " });\n" +
  7350. "}\n" +
  7351. "document.head.appendChild(_js);\n";
  7352. _iframe.contentWindow.document.head.appendChild(_ajs);
  7353. }
  7354. }
  7355. //U.MD.D.I.openClick(str);
  7356. //如果有任务栏信息
  7357. // if (_taskbar) {
  7358. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7359. // }
  7360. }
  7361. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7362. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7363. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7364. _userinfo = US.userInfo, //登录用户信息
  7365. _userid = US.userInfo.userid //登录用户id
  7366. let _iframe;
  7367. let _cid = cid,
  7368. _stage = stage,
  7369. _task = task,
  7370. _tool = tool;
  7371. var _jie = $$("div", {
  7372. "style": {
  7373. "position": "absolute",
  7374. "bottom": "50px",
  7375. "right": "50px",
  7376. "zIndex": "9999",
  7377. "backgroundColor": "#2268bc",
  7378. "color": "#fff",
  7379. "padding": "12px 20px",
  7380. "cursor": "pointer",
  7381. "borderRadius": "4px",
  7382. },
  7383. "innerHTML": "提交作业"
  7384. })
  7385. let aTool = ''
  7386. let _loading = document.createElement('div')
  7387. _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;"
  7388. // _loading.id = "";
  7389. let _lchild = document.createElement('div')
  7390. let _limg = document.createElement('img')
  7391. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7392. _limg.style = "width: 26px;margin-right: 10px;"
  7393. _lchild.appendChild(_limg)
  7394. let _lspan = document.createElement('span')
  7395. _lspan.innerHTML = "上传中..."
  7396. _lchild.appendChild(_lspan)
  7397. _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%);"
  7398. _loading.appendChild(_lchild)
  7399. let _box = $$('div', {
  7400. "style": {
  7401. "position": "relative",
  7402. "width": "100%",
  7403. "height": "100%",
  7404. },
  7405. })
  7406. _box.appendChild(_loading)
  7407. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7408. switch (str) {
  7409. case "whiteboard":
  7410. aTool = 1;
  7411. _iframe = $$("iframe", {
  7412. "frameborder": "no",
  7413. "border": "0",
  7414. "scrolling ": "no",
  7415. "style": {
  7416. "cssText": "border:0;width:100%;height:100%"
  7417. },
  7418. "src": "https://beta.iwb.cocorobo.cn/"
  7419. })
  7420. _box.appendChild(_iframe);
  7421. _box.appendChild(_jie);
  7422. _formdiv = new U.UF.UI.form(
  7423. "电子白板",
  7424. _box, {
  7425. "id": "whiteboard" + cid + stage + task + tool,
  7426. "style": {
  7427. "width": "90%",
  7428. "height": "90%",
  7429. "overflow": 'hidden'
  7430. },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, {
  7435. "style": {
  7436. "height": "36px"
  7437. }
  7438. }).form; //创建窗体
  7439. _taskbar = {
  7440. "id": str + _formdiv.id,
  7441. "style": {
  7442. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7443. },
  7444. "name": "电子白板",
  7445. "forms": _formdiv,
  7446. "click": function () {
  7447. U.MD.D.I.openApplication(str, obj, info);
  7448. }
  7449. }
  7450. break;
  7451. case "mind":
  7452. aTool = 3;
  7453. _iframe = $$("iframe", {
  7454. "frameborder": "no",
  7455. "border": "0",
  7456. "scrolling ": "no",
  7457. "style": {
  7458. "cssText": "border:0;width:100%;height:100%"
  7459. },
  7460. "src": "/kityminder-editor/dist/index.html"
  7461. })
  7462. _box.appendChild(_iframe);
  7463. _box.appendChild(_jie);
  7464. _formdiv = new U.UF.UI.form(
  7465. "思维导图",
  7466. _box, { //"/jsmind/example/demo.html"
  7467. "id": "mind" + cid + stage + task + tool,
  7468. "style": {
  7469. "width": "90%",
  7470. "height": "90%",
  7471. "overflow": 'hidden'
  7472. },
  7473. "onresize": function () { }
  7474. }, {
  7475. closecallback: function () { }
  7476. }, {
  7477. "style": {
  7478. "height": "36px"
  7479. }
  7480. }).form; //创建窗体
  7481. _taskbar = {
  7482. "id": str + _formdiv.id,
  7483. "style": {
  7484. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7485. },
  7486. "name": "思维导图",
  7487. "forms": _formdiv,
  7488. "click": function () {
  7489. U.MD.D.I.openApplication(str, obj, info);
  7490. }
  7491. }
  7492. break;
  7493. case "MindMap":
  7494. aTool = 3;
  7495. _iframe = $$("iframe", {
  7496. "frameborder": "no",
  7497. "border": "0",
  7498. "scrolling ": "no",
  7499. "style": {
  7500. "cssText": "border:0;width:100%;height:100%"
  7501. },
  7502. "src": "//cloud.cocorobo.cn/mind/"
  7503. })
  7504. _box.appendChild(_iframe);
  7505. _box.appendChild(_jie);
  7506. _formdiv = new U.UF.UI.form(
  7507. "思维导图",
  7508. _box, { //"/jsmind/example/demo.html"
  7509. "id": "mind" + cid + stage + task + tool,
  7510. "style": {
  7511. "width": "90%",
  7512. "height": "90%",
  7513. "overflow": 'hidden'
  7514. },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, {
  7519. "style": {
  7520. "height": "36px"
  7521. }
  7522. }).form; //创建窗体
  7523. _taskbar = {
  7524. "id": str + _formdiv.id,
  7525. "style": {
  7526. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7527. },
  7528. "name": "思维导图",
  7529. "forms": _formdiv,
  7530. "click": function () {
  7531. U.MD.D.I.openApplication(str, obj, info);
  7532. }
  7533. }
  7534. break;
  7535. case "doc":
  7536. aTool = 6;
  7537. _iframe = $$("iframe", {
  7538. "frameborder": "no",
  7539. "border": "0",
  7540. "scrolling ": "no",
  7541. "style": {
  7542. "cssText": "border:0;width:100%;height:100%"
  7543. },
  7544. "src": "/Office/Word/WordEditArea.htm"
  7545. })
  7546. _box.appendChild(_iframe);
  7547. _box.appendChild(_jie);
  7548. _formdiv = new U.UF.UI.form(
  7549. "协同文档",
  7550. _box, {
  7551. "id": "doc" + cid + stage + task + tool,
  7552. "style": {
  7553. "width": "90%",
  7554. "height": "90%",
  7555. "overflow": 'hidden'
  7556. },
  7557. "onresize": function () { }
  7558. }, {
  7559. closecallback: function () { }
  7560. }, {
  7561. "style": {
  7562. "height": "36px"
  7563. }
  7564. }).form; //创建窗体
  7565. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7566. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7567. })
  7568. _taskbar = {
  7569. "id": str + _formdiv.id,
  7570. "style": {
  7571. "backgroundImage": "url(/img/icon/doc.png)"
  7572. },
  7573. "name": "协同文档",
  7574. "forms": _formdiv,
  7575. "click": function () {
  7576. U.MD.D.I.openApplication(str, obj, info);
  7577. }
  7578. }
  7579. break;
  7580. case "mindNetwork": //好友打开
  7581. aTool = 7;
  7582. _iframe = $$("iframe", {
  7583. "webkitallowfullscreen": "",
  7584. "mozallowfullscreen": "",
  7585. "allowfullscreen": "",
  7586. "frameborder": "no",
  7587. "border": "0",
  7588. "scrolling ": "no",
  7589. "style": {
  7590. "cssText": "border:0; width:100%; height:100%;"
  7591. },
  7592. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7593. })
  7594. _box.appendChild(_iframe);
  7595. _box.appendChild(_jie);
  7596. _formdiv = new U.UF.UI.form(
  7597. "思维网格",
  7598. _box, {
  7599. "id": "mindNetwork" + cid + stage + task + tool,
  7600. "style": {
  7601. "width": "90%",
  7602. "height": "90%",
  7603. "overflow": 'hidden'
  7604. },
  7605. "onresize": function () { }
  7606. }, {
  7607. closecallback: function () { }
  7608. }, {
  7609. "style": {
  7610. "height": "36px"
  7611. }
  7612. }).form; //创建窗体
  7613. _taskbar = {
  7614. "id": str + _formdiv.id,
  7615. "style": {
  7616. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7617. },
  7618. "name": "思维网格",
  7619. "forms": _formdiv,
  7620. "click": function () {
  7621. U.MD.D.I.openApplication(str, obj, info);
  7622. }
  7623. }
  7624. break;
  7625. case "courseDesign":
  7626. _iframe = $$("iframe", {
  7627. "webkitallowfullscreen": "",
  7628. "mozallowfullscreen": "",
  7629. "allowfullscreen": "",
  7630. "frameborder": "no",
  7631. "border": "0",
  7632. "scrolling ": "no",
  7633. "style": {
  7634. "cssText": "border:0; width:100%; height:100%;"
  7635. },
  7636. "src": "/course-design-vue"
  7637. })
  7638. _box.appendChild(_iframe);
  7639. _box.appendChild(_jie);
  7640. _formdiv = new U.UF.UI.form(
  7641. "项目设计",
  7642. _box, {
  7643. "id": "courseDesign" + cid + stage + task + tool,
  7644. "style": {
  7645. "width": "90%",
  7646. "height": "90%",
  7647. "overflow": 'hidden'
  7648. },
  7649. "onresize": function () { }
  7650. }, {
  7651. closecallback: function () { }
  7652. }, {
  7653. "style": {
  7654. "height": "36px"
  7655. }
  7656. }).form; //创建窗体
  7657. _taskbar = {
  7658. "id": str + _formdiv.id,
  7659. "style": {
  7660. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7661. },
  7662. "name": "项目设计",
  7663. "forms": _formdiv,
  7664. "click": function () {
  7665. U.MD.D.I.openApplication(str, obj, info);
  7666. }
  7667. }
  7668. break;
  7669. }
  7670. const script1 = document.createElement("script");
  7671. script1.type = "text/javascript";
  7672. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7673. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7674. const script2 = document.createElement("script");
  7675. script2.type = "text/javascript";
  7676. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7677. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7678. const script3 = document.createElement("script");
  7679. script3.type = "text/javascript";
  7680. script3.charset = "UTF-8";
  7681. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7682. const script4 = document.createElement("script");
  7683. script4.type = "text/javascript";
  7684. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7685. script4.src = window.origin + "/js/Common/jietu2E.js";
  7686. if (_iframe) {
  7687. if (str == 'doc') {
  7688. _iframe = _formdiv.querySelector('iframe')
  7689. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7690. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7691. _iframe.contentWindow.document.body.appendChild(script1);
  7692. _iframe.contentWindow.document.body.appendChild(script2);
  7693. // _iframe.contentWindow.document.body.appendChild(script3);
  7694. _iframe.contentWindow.document.body.appendChild(script4);
  7695. })
  7696. if (onloadListener) {
  7697. _iframe.contentDocument.location.reload()
  7698. } else {
  7699. _iframe.contentDocument.location.reload()
  7700. }
  7701. } else if (str == 'courseDesign') {
  7702. U.UF.DL.iframeLoad(_iframe, function () {
  7703. // _iframe.contentWindow.U.MD.O.W.load();
  7704. // _iframe.contentWindow.document.body.appendChild(script1);
  7705. _iframe.contentWindow.document.body.appendChild(script2);
  7706. _iframe.contentWindow.document.body.appendChild(script4);
  7707. })
  7708. } else if (str == 'mind') {
  7709. _iframe = _formdiv.querySelector('iframe')
  7710. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7711. //
  7712. _iframe.contentWindow.document.body.appendChild(script1);
  7713. _iframe.contentWindow.document.body.appendChild(script2);
  7714. _iframe.contentWindow.document.body.appendChild(script4);
  7715. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7716. })
  7717. if (onloadListener) {
  7718. _iframe.contentDocument.location.reload()
  7719. } else {
  7720. _iframe.contentDocument.location.reload()
  7721. }
  7722. } else if (str == 'whiteboard') {
  7723. _iframe = _formdiv.querySelector('iframe')
  7724. let onloadListener = _iframe.onload = () => {
  7725. _iframe.contentWindow.document.body.appendChild(script1);
  7726. _iframe.contentWindow.document.body.appendChild(script2);
  7727. _iframe.contentWindow.document.body.appendChild(script4);
  7728. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7729. };
  7730. // if (onloadListener) {
  7731. // try {
  7732. // _iframe.src += "?cocorobo="+new Date().getTime()
  7733. // _iframe.contentWindow.document.location.reload()
  7734. // } catch (error) {
  7735. // }
  7736. // } else {
  7737. // _iframe.contentDocument.location.reload()
  7738. // }
  7739. } else {
  7740. _iframe.onload = () => {
  7741. _iframe.contentWindow.document.body.appendChild(script1);
  7742. _iframe.contentWindow.document.body.appendChild(script2);
  7743. // _iframe.contentWindow.document.body.appendChild(script3);
  7744. _iframe.contentWindow.document.body.appendChild(script4);
  7745. };
  7746. }
  7747. _jie.onclick = async () => {
  7748. let text = ''
  7749. if (aTool == 1) {
  7750. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7751. } else if (aTool == 6) {
  7752. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7753. } else if (aTool == 3) {
  7754. text = await U.MD.D.I.getEditorContent(_iframe);
  7755. }
  7756. _loading.style.display = 'flex'
  7757. console.log(_loading);
  7758. var _ajs = _iframe.contentWindow.document.createElement("script");
  7759. _ajs.type = "text/javascript";
  7760. _ajs.innerHTML =
  7761. // 'console.log(' + _loading + ');\n' +
  7762. 'var _js = document.createElement("script");\n' +
  7763. '_js.type="text/javascript";\n' +
  7764. '_js.charset="UTF-8";\n' +
  7765. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7766. "_js.onload = function(){\n" +
  7767. ' var a = document.getElementsByTagName("img")\n' +
  7768. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7769. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7770. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7771. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7772. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7773. "beforeUpload_shishi(file," +
  7774. "'" +
  7775. _userid +
  7776. "'" +
  7777. ", " +
  7778. "'" +
  7779. _cid +
  7780. "'" +
  7781. ", " +
  7782. "'" +
  7783. _stage +
  7784. "'" +
  7785. ", " +
  7786. "'" +
  7787. _task +
  7788. "'" +
  7789. ", " +
  7790. "'" +
  7791. _tool +
  7792. "'" +
  7793. ", " +
  7794. "'" +
  7795. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7796. "'" +
  7797. ", " +
  7798. "'" +
  7799. aTool +
  7800. "'" +
  7801. ", " +
  7802. "`" +
  7803. text +
  7804. "`" +
  7805. ")\n" +
  7806. " });\n" +
  7807. "}\n" +
  7808. "document.head.appendChild(_js);\n";
  7809. _iframe.contentWindow.document.head.appendChild(_ajs);
  7810. }
  7811. }
  7812. //U.MD.D.I.openClick(str);
  7813. //如果有任务栏信息
  7814. // if (_taskbar) {
  7815. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7816. // }
  7817. }
  7818. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7819. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7820. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7821. _userid = student.userid, //登录用户id
  7822. _username = student.student //用户名字
  7823. let _iframe;
  7824. let _cid = cid,
  7825. _stage = stage,
  7826. _task = task,
  7827. _tool = tool;
  7828. var _jie = $$("div", {
  7829. "style": {
  7830. "position": "absolute",
  7831. "bottom": "50px",
  7832. "right": "50px",
  7833. "zIndex": "9999",
  7834. "backgroundColor": "#2268bc",
  7835. "color": "#fff",
  7836. "padding": "12px 20px",
  7837. "cursor": "pointer",
  7838. "borderRadius": "4px",
  7839. },
  7840. "innerHTML": "提交作业"
  7841. })
  7842. let aTool = ''
  7843. let _loading = document.createElement('div')
  7844. _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;"
  7845. // _loading.id = "";
  7846. let _lchild = document.createElement('div')
  7847. let _limg = document.createElement('img')
  7848. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7849. _limg.style = "width: 26px;margin-right: 10px;"
  7850. _lchild.appendChild(_limg)
  7851. let _lspan = document.createElement('span')
  7852. _lspan.innerHTML = "上传中..."
  7853. _lchild.appendChild(_lspan)
  7854. _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%);"
  7855. _loading.appendChild(_lchild)
  7856. var _box = $$('div', {
  7857. "style": {
  7858. "position": "relative",
  7859. "width": "100%",
  7860. "height": "100%",
  7861. },
  7862. })
  7863. _box.appendChild(_loading)
  7864. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7865. switch (str) {
  7866. case "whiteboard":
  7867. aTool = 1;
  7868. _iframe = $$("iframe", {
  7869. "frameborder": "no",
  7870. "border": "0",
  7871. "scrolling ": "no",
  7872. "style": {
  7873. "cssText": "border:0;width:100%;height:100%"
  7874. },
  7875. "src": "https://beta.iwb.cocorobo.cn/"
  7876. })
  7877. _box.appendChild(_iframe);
  7878. _box.appendChild(_jie);
  7879. _formdiv = new U.UF.UI.form(
  7880. "电子白板-" + _username,
  7881. _box, {
  7882. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7883. "style": {
  7884. "width": "90%",
  7885. "height": "90%",
  7886. "overflow": 'hidden'
  7887. },
  7888. "onresize": function () { }
  7889. }, {
  7890. closecallback: function () { }
  7891. }, {
  7892. "style": {
  7893. "height": "36px"
  7894. }
  7895. }).form; //创建窗体
  7896. _taskbar = {
  7897. "id": str + _formdiv.id,
  7898. "style": {
  7899. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7900. },
  7901. "name": "电子白板",
  7902. "forms": _formdiv,
  7903. "click": function () {
  7904. U.MD.D.I.openApplication(str, obj, info);
  7905. }
  7906. }
  7907. break;
  7908. case "mind":
  7909. aTool = 3;
  7910. _iframe = $$("iframe", {
  7911. "frameborder": "no",
  7912. "border": "0",
  7913. "scrolling ": "no",
  7914. "style": {
  7915. "cssText": "border:0;width:100%;height:100%"
  7916. },
  7917. "src": "/kityminder-editor/dist/index.html"
  7918. })
  7919. _box.appendChild(_iframe);
  7920. _box.appendChild(_jie);
  7921. _formdiv = new U.UF.UI.form(
  7922. "思维导图-" + _username,
  7923. _box, { //"/jsmind/example/demo.html"
  7924. "id": "mind" + cid + stage + task + tool + _userid,
  7925. "style": {
  7926. "width": "90%",
  7927. "height": "90%",
  7928. "overflow": 'hidden'
  7929. },
  7930. "onresize": function () { }
  7931. }, {
  7932. closecallback: function () { }
  7933. }, {
  7934. "style": {
  7935. "height": "36px"
  7936. }
  7937. }).form; //创建窗体
  7938. _taskbar = {
  7939. "id": str + _formdiv.id,
  7940. "style": {
  7941. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7942. },
  7943. "name": "思维导图",
  7944. "forms": _formdiv,
  7945. "click": function () {
  7946. U.MD.D.I.openApplication(str, obj, info);
  7947. }
  7948. }
  7949. break;
  7950. case "MindMap":
  7951. aTool = 3;
  7952. _iframe = $$("iframe", {
  7953. "frameborder": "no",
  7954. "border": "0",
  7955. "scrolling ": "no",
  7956. "style": {
  7957. "cssText": "border:0;width:100%;height:100%"
  7958. },
  7959. "src": "//cloud.cocorobo.cn/mind/"
  7960. })
  7961. _box.appendChild(_iframe);
  7962. _box.appendChild(_jie);
  7963. _formdiv = new U.UF.UI.form(
  7964. "思维导图-" + _username,
  7965. _box, { //"/jsmind/example/demo.html"
  7966. "id": "mind" + cid + stage + task + tool + _userid,
  7967. "style": {
  7968. "width": "90%",
  7969. "height": "90%",
  7970. "overflow": 'hidden'
  7971. },
  7972. "onresize": function () { }
  7973. }, {
  7974. closecallback: function () { }
  7975. }, {
  7976. "style": {
  7977. "height": "36px"
  7978. }
  7979. }).form; //创建窗体
  7980. _taskbar = {
  7981. "id": str + _formdiv.id,
  7982. "style": {
  7983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7984. },
  7985. "name": "思维导图",
  7986. "forms": _formdiv,
  7987. "click": function () {
  7988. U.MD.D.I.openApplication(str, obj, info);
  7989. }
  7990. }
  7991. break;
  7992. case "doc":
  7993. aTool = 6;
  7994. _iframe = $$("iframe", {
  7995. "frameborder": "no",
  7996. "border": "0",
  7997. "scrolling ": "no",
  7998. "style": {
  7999. "cssText": "border:0;width:100%;height:100%"
  8000. },
  8001. "src": "/Office/Word/WordEditArea.htm"
  8002. })
  8003. _box.appendChild(_iframe);
  8004. _box.appendChild(_jie);
  8005. _formdiv = new U.UF.UI.form(
  8006. "协同文档-" + _username,
  8007. _box, {
  8008. "id": "doc" + cid + stage + task + tool + _userid,
  8009. "style": {
  8010. "width": "90%",
  8011. "height": "90%",
  8012. "overflow": 'hidden'
  8013. },
  8014. "onresize": function () { }
  8015. }, {
  8016. closecallback: function () { }
  8017. }, {
  8018. "style": {
  8019. "height": "36px"
  8020. }
  8021. }).form; //创建窗体
  8022. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8023. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8024. })
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/doc.png)"
  8029. },
  8030. "name": "协同文档",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "mindNetwork": //好友打开
  8038. aTool = 7;
  8039. _iframe = $$("iframe", {
  8040. "webkitallowfullscreen": "",
  8041. "mozallowfullscreen": "",
  8042. "allowfullscreen": "",
  8043. "frameborder": "no",
  8044. "border": "0",
  8045. "scrolling ": "no",
  8046. "style": {
  8047. "cssText": "border:0; width:100%; height:100%;"
  8048. },
  8049. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8050. })
  8051. _box.appendChild(_iframe);
  8052. _box.appendChild(_jie);
  8053. _formdiv = new U.UF.UI.form(
  8054. "思维网格-" + _username,
  8055. _box, {
  8056. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8057. "style": {
  8058. "width": "90%",
  8059. "height": "90%",
  8060. "overflow": 'hidden'
  8061. },
  8062. "onresize": function () { }
  8063. }, {
  8064. closecallback: function () { }
  8065. }, {
  8066. "style": {
  8067. "height": "36px"
  8068. }
  8069. }).form; //创建窗体
  8070. _taskbar = {
  8071. "id": str + _formdiv.id,
  8072. "style": {
  8073. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8074. },
  8075. "name": "思维网格",
  8076. "forms": _formdiv,
  8077. "click": function () {
  8078. U.MD.D.I.openApplication(str, obj, info);
  8079. }
  8080. }
  8081. break;
  8082. case "courseDesign":
  8083. _iframe = $$("iframe", {
  8084. "webkitallowfullscreen": "",
  8085. "mozallowfullscreen": "",
  8086. "allowfullscreen": "",
  8087. "frameborder": "no",
  8088. "border": "0",
  8089. "scrolling ": "no",
  8090. "style": {
  8091. "cssText": "border:0; width:100%; height:100%;"
  8092. },
  8093. "src": "/course-design-vue"
  8094. })
  8095. _box.appendChild(_iframe);
  8096. _box.appendChild(_jie);
  8097. _formdiv = new U.UF.UI.form(
  8098. "项目设计-" + _username,
  8099. _box, {
  8100. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8101. "style": {
  8102. "width": "90%",
  8103. "height": "90%",
  8104. "overflow": 'hidden'
  8105. },
  8106. "onresize": function () { }
  8107. }, {
  8108. closecallback: function () { }
  8109. }, {
  8110. "style": {
  8111. "height": "36px"
  8112. }
  8113. }).form; //创建窗体
  8114. _taskbar = {
  8115. "id": str + _formdiv.id,
  8116. "style": {
  8117. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8118. },
  8119. "name": "项目设计",
  8120. "forms": _formdiv,
  8121. "click": function () {
  8122. U.MD.D.I.openApplication(str, obj, info);
  8123. }
  8124. }
  8125. break;
  8126. }
  8127. const script1 = document.createElement("script");
  8128. script1.type = "text/javascript";
  8129. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8130. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8131. const script2 = document.createElement("script");
  8132. script2.type = "text/javascript";
  8133. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8134. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8135. const script3 = document.createElement("script");
  8136. script3.type = "text/javascript";
  8137. script3.charset = "UTF-8";
  8138. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8139. const script4 = document.createElement("script");
  8140. script4.type = "text/javascript";
  8141. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8142. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8143. if (_iframe) {
  8144. if (str == 'doc') {
  8145. _iframe = _formdiv.querySelector('iframe')
  8146. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8147. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8148. _iframe.contentWindow.document.body.appendChild(script1);
  8149. _iframe.contentWindow.document.body.appendChild(script2);
  8150. // _iframe.contentWindow.document.body.appendChild(script3);
  8151. _iframe.contentWindow.document.body.appendChild(script4);
  8152. })
  8153. if (onloadListener) {
  8154. _iframe.contentDocument.location.reload()
  8155. } else {
  8156. _iframe.contentDocument.location.reload()
  8157. }
  8158. } else if (str == 'courseDesign') {
  8159. U.UF.DL.iframeLoad(_iframe, function () {
  8160. // _iframe.contentWindow.U.MD.O.W.load();
  8161. // _iframe.contentWindow.document.body.appendChild(script1);
  8162. _iframe.contentWindow.document.body.appendChild(script2);
  8163. _iframe.contentWindow.document.body.appendChild(script4);
  8164. })
  8165. } else if (str == 'mind') {
  8166. _iframe = _formdiv.querySelector('iframe')
  8167. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8168. //
  8169. _iframe.contentWindow.document.body.appendChild(script1);
  8170. _iframe.contentWindow.document.body.appendChild(script2);
  8171. _iframe.contentWindow.document.body.appendChild(script4);
  8172. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8173. })
  8174. if (onloadListener) {
  8175. _iframe.contentDocument.location.reload()
  8176. } else {
  8177. _iframe.contentDocument.location.reload()
  8178. }
  8179. } else if (str == 'whiteboard') {
  8180. _iframe = _formdiv.querySelector('iframe')
  8181. let onloadListener = _iframe.onload = () => {
  8182. _iframe.contentWindow.document.body.appendChild(script1);
  8183. _iframe.contentWindow.document.body.appendChild(script2);
  8184. _iframe.contentWindow.document.body.appendChild(script4);
  8185. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8186. };
  8187. // if (onloadListener) {
  8188. // try {
  8189. // _iframe.src += "?cocorobo="+new Date().getTime()
  8190. // _iframe.contentWindow.document.location.reload()
  8191. // } catch (error) {
  8192. // }
  8193. // } else {
  8194. // _iframe.contentDocument.location.reload()
  8195. // }
  8196. } else {
  8197. _iframe.onload = () => {
  8198. _iframe.contentWindow.document.body.appendChild(script1);
  8199. _iframe.contentWindow.document.body.appendChild(script2);
  8200. // _iframe.contentWindow.document.body.appendChild(script3);
  8201. _iframe.contentWindow.document.body.appendChild(script4);
  8202. };
  8203. }
  8204. _jie.onclick = async () => {
  8205. let text = ''
  8206. if (aTool == 1) {
  8207. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8208. } else if (aTool == 6) {
  8209. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8210. } else if (aTool == 3) {
  8211. text = await U.MD.D.I.getEditorContent(_iframe);
  8212. }
  8213. _loading.style.display = 'flex'
  8214. console.log(_loading);
  8215. var _ajs = _iframe.contentWindow.document.createElement("script");
  8216. _ajs.type = "text/javascript";
  8217. _ajs.innerHTML =
  8218. // 'console.log(' + _loading + ');\n' +
  8219. 'var _js = document.createElement("script");\n' +
  8220. '_js.type="text/javascript";\n' +
  8221. '_js.charset="UTF-8";\n' +
  8222. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8223. "_js.onload = function(){\n" +
  8224. ' var a = document.getElementsByTagName("img")\n' +
  8225. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8226. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8227. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8228. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8229. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8230. "beforeUpload_shishi(file," +
  8231. "'" +
  8232. _userid +
  8233. "'" +
  8234. ", " +
  8235. "'" +
  8236. _cid +
  8237. "'" +
  8238. ", " +
  8239. "'" +
  8240. _stage +
  8241. "'" +
  8242. ", " +
  8243. "'" +
  8244. _task +
  8245. "'" +
  8246. ", " +
  8247. "'" +
  8248. _tool +
  8249. "'" +
  8250. ", " +
  8251. "'" +
  8252. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8253. "'" +
  8254. ", " +
  8255. "'" +
  8256. aTool +
  8257. "'" +
  8258. ", " +
  8259. "`" +
  8260. text +
  8261. "`" +
  8262. ")\n" +
  8263. " });\n" +
  8264. "}\n" +
  8265. "document.head.appendChild(_js);\n";
  8266. _iframe.contentWindow.document.head.appendChild(_ajs);
  8267. }
  8268. }
  8269. }
  8270. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8271. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8272. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8273. _userid = student.userid, //登录用户id
  8274. _username = student.student //用户名字
  8275. let _iframe;
  8276. let _cid = cid,
  8277. _stage = stage,
  8278. _task = task,
  8279. _tool = tool;
  8280. var _jie = $$("div", {
  8281. "style": {
  8282. "position": "absolute",
  8283. "bottom": "50px",
  8284. "right": "50px",
  8285. "zIndex": "9999",
  8286. "backgroundColor": "#2268bc",
  8287. "color": "#fff",
  8288. "padding": "12px 20px",
  8289. "cursor": "pointer",
  8290. "borderRadius": "4px",
  8291. },
  8292. "innerHTML": "提交作业"
  8293. })
  8294. let aTool = ''
  8295. let _loading = document.createElement('div')
  8296. _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;"
  8297. // _loading.id = "";
  8298. let _lchild = document.createElement('div')
  8299. let _limg = document.createElement('img')
  8300. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8301. _limg.style = "width: 26px;margin-right: 10px;"
  8302. _lchild.appendChild(_limg)
  8303. let _lspan = document.createElement('span')
  8304. _lspan.innerHTML = "上传中..."
  8305. _lchild.appendChild(_lspan)
  8306. _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%);"
  8307. _loading.appendChild(_lchild)
  8308. var _box = $$('div', {
  8309. "style": {
  8310. "position": "relative",
  8311. "width": "100%",
  8312. "height": "100%",
  8313. },
  8314. })
  8315. _box.appendChild(_loading)
  8316. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8317. switch (str) {
  8318. case "whiteboard":
  8319. aTool = 1;
  8320. _iframe = $$("iframe", {
  8321. "frameborder": "no",
  8322. "border": "0",
  8323. "scrolling ": "no",
  8324. "style": {
  8325. "cssText": "border:0;width:100%;height:100%"
  8326. },
  8327. "src": "https://beta.iwb.cocorobo.cn/"
  8328. })
  8329. _box.appendChild(_iframe);
  8330. _box.appendChild(_jie);
  8331. _formdiv = new U.UF.UI.form(
  8332. "电子白板-" + _username,
  8333. _box, {
  8334. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8335. "style": {
  8336. "width": "90%",
  8337. "height": "90%",
  8338. "overflow": 'hidden'
  8339. },
  8340. "onresize": function () { }
  8341. }, {
  8342. closecallback: function () { }
  8343. }, {
  8344. "style": {
  8345. "height": "36px"
  8346. }
  8347. }).form; //创建窗体
  8348. _taskbar = {
  8349. "id": str + _formdiv.id,
  8350. "style": {
  8351. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8352. },
  8353. "name": "电子白板",
  8354. "forms": _formdiv,
  8355. "click": function () {
  8356. U.MD.D.I.openApplication(str, obj, info);
  8357. }
  8358. }
  8359. break;
  8360. case "mind":
  8361. aTool = 3;
  8362. _iframe = $$("iframe", {
  8363. "frameborder": "no",
  8364. "border": "0",
  8365. "scrolling ": "no",
  8366. "style": {
  8367. "cssText": "border:0;width:100%;height:100%"
  8368. },
  8369. "src": "/kityminder-editor/dist/index.html"
  8370. })
  8371. _box.appendChild(_iframe);
  8372. _box.appendChild(_jie);
  8373. _formdiv = new U.UF.UI.form(
  8374. "思维导图-" + _username,
  8375. _box, { //"/jsmind/example/demo.html"
  8376. "id": "mind" + cid + stage + task + tool + _userid,
  8377. "style": {
  8378. "width": "90%",
  8379. "height": "90%",
  8380. "overflow": 'hidden'
  8381. },
  8382. "onresize": function () { }
  8383. }, {
  8384. closecallback: function () { }
  8385. }, {
  8386. "style": {
  8387. "height": "36px"
  8388. }
  8389. }).form; //创建窗体
  8390. _taskbar = {
  8391. "id": str + _formdiv.id,
  8392. "style": {
  8393. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8394. },
  8395. "name": "思维导图",
  8396. "forms": _formdiv,
  8397. "click": function () {
  8398. U.MD.D.I.openApplication(str, obj, info);
  8399. }
  8400. }
  8401. break;
  8402. case "MindMap":
  8403. aTool = 3;
  8404. _iframe = $$("iframe", {
  8405. "frameborder": "no",
  8406. "border": "0",
  8407. "scrolling ": "no",
  8408. "style": {
  8409. "cssText": "border:0;width:100%;height:100%"
  8410. },
  8411. "src": "//cloud.cocorobo.cn/mind/"
  8412. })
  8413. _box.appendChild(_iframe);
  8414. _box.appendChild(_jie);
  8415. _formdiv = new U.UF.UI.form(
  8416. "思维导图-" + _username,
  8417. _box, { //"/jsmind/example/demo.html"
  8418. "id": "mind" + cid + stage + task + tool + _userid,
  8419. "style": {
  8420. "width": "90%",
  8421. "height": "90%",
  8422. "overflow": 'hidden'
  8423. },
  8424. "onresize": function () { }
  8425. }, {
  8426. closecallback: function () { }
  8427. }, {
  8428. "style": {
  8429. "height": "36px"
  8430. }
  8431. }).form; //创建窗体
  8432. _taskbar = {
  8433. "id": str + _formdiv.id,
  8434. "style": {
  8435. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8436. },
  8437. "name": "思维导图",
  8438. "forms": _formdiv,
  8439. "click": function () {
  8440. U.MD.D.I.openApplication(str, obj, info);
  8441. }
  8442. }
  8443. break;
  8444. case "doc":
  8445. aTool = 6;
  8446. _iframe = $$("iframe", {
  8447. "frameborder": "no",
  8448. "border": "0",
  8449. "scrolling ": "no",
  8450. "style": {
  8451. "cssText": "border:0;width:100%;height:100%"
  8452. },
  8453. "src": "/Office/Word/WordEditArea.htm"
  8454. })
  8455. _box.appendChild(_iframe);
  8456. _box.appendChild(_jie);
  8457. _formdiv = new U.UF.UI.form(
  8458. "协同文档-" + _username,
  8459. _box, {
  8460. "id": "doc" + cid + stage + task + tool + _userid,
  8461. "style": {
  8462. "width": "90%",
  8463. "height": "90%",
  8464. "overflow": 'hidden'
  8465. },
  8466. "onresize": function () { }
  8467. }, {
  8468. closecallback: function () { }
  8469. }, {
  8470. "style": {
  8471. "height": "36px"
  8472. }
  8473. }).form; //创建窗体
  8474. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8475. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8476. })
  8477. _taskbar = {
  8478. "id": str + _formdiv.id,
  8479. "style": {
  8480. "backgroundImage": "url(/img/icon/doc.png)"
  8481. },
  8482. "name": "协同文档",
  8483. "forms": _formdiv,
  8484. "click": function () {
  8485. U.MD.D.I.openApplication(str, obj, info);
  8486. }
  8487. }
  8488. break;
  8489. case "mindNetwork": //好友打开
  8490. aTool = 7;
  8491. _iframe = $$("iframe", {
  8492. "webkitallowfullscreen": "",
  8493. "mozallowfullscreen": "",
  8494. "allowfullscreen": "",
  8495. "frameborder": "no",
  8496. "border": "0",
  8497. "scrolling ": "no",
  8498. "style": {
  8499. "cssText": "border:0; width:100%; height:100%;"
  8500. },
  8501. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8502. })
  8503. _box.appendChild(_iframe);
  8504. _box.appendChild(_jie);
  8505. _formdiv = new U.UF.UI.form(
  8506. "思维网格-" + _username,
  8507. _box, {
  8508. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8509. "style": {
  8510. "width": "90%",
  8511. "height": "90%",
  8512. "overflow": 'hidden'
  8513. },
  8514. "onresize": function () { }
  8515. }, {
  8516. closecallback: function () { }
  8517. }, {
  8518. "style": {
  8519. "height": "36px"
  8520. }
  8521. }).form; //创建窗体
  8522. _taskbar = {
  8523. "id": str + _formdiv.id,
  8524. "style": {
  8525. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8526. },
  8527. "name": "思维网格",
  8528. "forms": _formdiv,
  8529. "click": function () {
  8530. U.MD.D.I.openApplication(str, obj, info);
  8531. }
  8532. }
  8533. break;
  8534. case "courseDesign":
  8535. _iframe = $$("iframe", {
  8536. "webkitallowfullscreen": "",
  8537. "mozallowfullscreen": "",
  8538. "allowfullscreen": "",
  8539. "frameborder": "no",
  8540. "border": "0",
  8541. "scrolling ": "no",
  8542. "style": {
  8543. "cssText": "border:0; width:100%; height:100%;"
  8544. },
  8545. "src": "/course-design-vue"
  8546. })
  8547. _box.appendChild(_iframe);
  8548. _box.appendChild(_jie);
  8549. _formdiv = new U.UF.UI.form(
  8550. "项目设计-" + _username,
  8551. _box, {
  8552. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8553. "style": {
  8554. "width": "90%",
  8555. "height": "90%",
  8556. "overflow": 'hidden'
  8557. },
  8558. "onresize": function () { }
  8559. }, {
  8560. closecallback: function () { }
  8561. }, {
  8562. "style": {
  8563. "height": "36px"
  8564. }
  8565. }).form; //创建窗体
  8566. _taskbar = {
  8567. "id": str + _formdiv.id,
  8568. "style": {
  8569. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8570. },
  8571. "name": "项目设计",
  8572. "forms": _formdiv,
  8573. "click": function () {
  8574. U.MD.D.I.openApplication(str, obj, info);
  8575. }
  8576. }
  8577. break;
  8578. }
  8579. const script1 = document.createElement("script");
  8580. script1.type = "text/javascript";
  8581. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8582. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8583. const script2 = document.createElement("script");
  8584. script2.type = "text/javascript";
  8585. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8586. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8587. const script3 = document.createElement("script");
  8588. script3.type = "text/javascript";
  8589. script3.charset = "UTF-8";
  8590. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8591. const script4 = document.createElement("script");
  8592. script4.type = "text/javascript";
  8593. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8594. script4.src = window.origin + "/js/Common/jietu2E.js";
  8595. if (_iframe) {
  8596. if (str == 'doc') {
  8597. _iframe = _formdiv.querySelector('iframe')
  8598. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8599. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8600. _iframe.contentWindow.document.body.appendChild(script1);
  8601. _iframe.contentWindow.document.body.appendChild(script2);
  8602. // _iframe.contentWindow.document.body.appendChild(script3);
  8603. _iframe.contentWindow.document.body.appendChild(script4);
  8604. })
  8605. if (onloadListener) {
  8606. _iframe.contentDocument.location.reload()
  8607. } else {
  8608. _iframe.contentDocument.location.reload()
  8609. }
  8610. } else if (str == 'courseDesign') {
  8611. U.UF.DL.iframeLoad(_iframe, function () {
  8612. // _iframe.contentWindow.U.MD.O.W.load();
  8613. // _iframe.contentWindow.document.body.appendChild(script1);
  8614. _iframe.contentWindow.document.body.appendChild(script2);
  8615. _iframe.contentWindow.document.body.appendChild(script4);
  8616. })
  8617. } else if (str == 'mind') {
  8618. _iframe = _formdiv.querySelector('iframe')
  8619. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8620. //
  8621. _iframe.contentWindow.document.body.appendChild(script1);
  8622. _iframe.contentWindow.document.body.appendChild(script2);
  8623. _iframe.contentWindow.document.body.appendChild(script4);
  8624. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8625. })
  8626. if (onloadListener) {
  8627. _iframe.contentDocument.location.reload()
  8628. } else {
  8629. _iframe.contentDocument.location.reload()
  8630. }
  8631. } else if (str == 'whiteboard') {
  8632. _iframe = _formdiv.querySelector('iframe')
  8633. let onloadListener = _iframe.onload = () => {
  8634. _iframe.contentWindow.document.body.appendChild(script1);
  8635. _iframe.contentWindow.document.body.appendChild(script2);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8638. };
  8639. // if (onloadListener) {
  8640. // try {
  8641. // _iframe.src += "?cocorobo="+new Date().getTime()
  8642. // _iframe.contentWindow.document.location.reload()
  8643. // } catch (error) {
  8644. // }
  8645. // } else {
  8646. // _iframe.contentDocument.location.reload()
  8647. // }
  8648. } else {
  8649. _iframe.onload = () => {
  8650. _iframe.contentWindow.document.body.appendChild(script1);
  8651. _iframe.contentWindow.document.body.appendChild(script2);
  8652. // _iframe.contentWindow.document.body.appendChild(script3);
  8653. _iframe.contentWindow.document.body.appendChild(script4);
  8654. };
  8655. }
  8656. _jie.onclick = async () => {
  8657. let text = ''
  8658. if (aTool == 1) {
  8659. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8660. } else if (aTool == 6) {
  8661. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8662. } else if (aTool == 3) {
  8663. text = await U.MD.D.I.getEditorContent(_iframe);
  8664. }
  8665. _loading.style.display = 'flex'
  8666. console.log(_loading);
  8667. var _ajs = _iframe.contentWindow.document.createElement("script");
  8668. _ajs.type = "text/javascript";
  8669. _ajs.innerHTML =
  8670. // 'console.log(' + _loading + ');\n' +
  8671. 'var _js = document.createElement("script");\n' +
  8672. '_js.type="text/javascript";\n' +
  8673. '_js.charset="UTF-8";\n' +
  8674. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8675. "_js.onload = function(){\n" +
  8676. ' var a = document.getElementsByTagName("img")\n' +
  8677. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8678. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8679. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8680. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8681. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8682. "beforeUpload_shishi(file," +
  8683. "'" +
  8684. _userid +
  8685. "'" +
  8686. ", " +
  8687. "'" +
  8688. _cid +
  8689. "'" +
  8690. ", " +
  8691. "'" +
  8692. _stage +
  8693. "'" +
  8694. ", " +
  8695. "'" +
  8696. _task +
  8697. "'" +
  8698. ", " +
  8699. "'" +
  8700. _tool +
  8701. "'" +
  8702. ", " +
  8703. "'" +
  8704. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8705. "'" +
  8706. ", " +
  8707. "'" +
  8708. aTool +
  8709. "'" +
  8710. ", " +
  8711. "`" +
  8712. text +
  8713. "`" +
  8714. ")\n" +
  8715. " });\n" +
  8716. "}\n" +
  8717. "document.head.appendChild(_js);\n";
  8718. _iframe.contentWindow.document.head.appendChild(_ajs);
  8719. }
  8720. }
  8721. }
  8722. U.MD.D.I.getEditorContent = function (iframe) {
  8723. return new Promise((resolve, reject) => {
  8724. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8725. console.log(content);
  8726. resolve(content)
  8727. });
  8728. });
  8729. }
  8730. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8731. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8732. // if (res.value[0].length > 0) {
  8733. // // resolve(res.value[0][0].text);
  8734. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8735. // $(fileInput).val('');
  8736. // });
  8737. // }
  8738. // }, [], { "type": "GET", "withCredentials": true });
  8739. var xmlhttp;
  8740. var Mac, Sn, DeviceId
  8741. if (window.XMLHttpRequest) {
  8742. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8743. xmlhttp = new XMLHttpRequest();
  8744. } else {
  8745. // IE6, IE5 浏览器执行代码
  8746. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8747. }
  8748. xmlhttp.onreadystatechange = function () {
  8749. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8750. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8751. // resolve(res.value[0][0].text);
  8752. if (type == '2') {
  8753. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8754. } else if (type == '3') {
  8755. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8756. }
  8757. } else {
  8758. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8759. }
  8760. }
  8761. }
  8762. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8763. xmlhttp.send();
  8764. }
  8765. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8766. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8767. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8768. _userinfo = US.userInfo, //登录用户信息
  8769. _userid = US.userInfo.userid //登录用户id
  8770. let _iframe;
  8771. let _cid = cid,
  8772. _stage = stage,
  8773. _task = task,
  8774. _tool = tool;
  8775. var _jie = $$("div", {
  8776. "style": {
  8777. "position": "absolute",
  8778. "bottom": "50px",
  8779. "right": "50px",
  8780. "zIndex": "9999",
  8781. "backgroundColor": "#2268bc",
  8782. "color": "#fff",
  8783. "padding": "12px 20px",
  8784. "cursor": "pointer",
  8785. "borderRadius": "4px",
  8786. },
  8787. "innerHTML": "确认并提交"
  8788. })
  8789. let aTool = ''
  8790. let _loading = document.createElement('div')
  8791. _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;"
  8792. // _loading.id = "";
  8793. let _lchild = document.createElement('div')
  8794. let _limg = document.createElement('img')
  8795. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8796. _limg.style = "width: 26px;margin-right: 10px;"
  8797. _lchild.appendChild(_limg)
  8798. let _lspan = document.createElement('span')
  8799. _lspan.innerHTML = "上传中..."
  8800. _lchild.appendChild(_lspan)
  8801. _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%);"
  8802. _loading.appendChild(_lchild)
  8803. var _box = $$('div', {
  8804. "style": {
  8805. "position": "relative",
  8806. "width": "100%",
  8807. "height": "100%",
  8808. },
  8809. })
  8810. _box.appendChild(_loading)
  8811. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8812. switch (str) {
  8813. case "whiteboard":
  8814. aTool = 1;
  8815. _iframe = $$("iframe", {
  8816. "frameborder": "no",
  8817. "border": "0",
  8818. "scrolling ": "no",
  8819. "style": {
  8820. "cssText": "border:0;width:100%;height:100%"
  8821. },
  8822. "src": "https://beta.iwb.cocorobo.cn/"
  8823. })
  8824. _box.appendChild(_iframe);
  8825. _box.appendChild(_jie);
  8826. _formdiv = new U.UF.UI.form(
  8827. "电子白板",
  8828. _box, {
  8829. "id": "whiteboards" + cid + stage + task + tool,
  8830. "style": {
  8831. "width": "90%",
  8832. "height": "90%",
  8833. "overflow": 'hidden'
  8834. },
  8835. "onresize": function () { }
  8836. }, {
  8837. closecallback: function () { }
  8838. }, {
  8839. "style": {
  8840. "height": "36px"
  8841. }
  8842. }).form; //创建窗体
  8843. _taskbar = {
  8844. "id": str + _formdiv.id,
  8845. "style": {
  8846. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8847. },
  8848. "name": "电子白板",
  8849. "forms": _formdiv,
  8850. "click": function () {
  8851. U.MD.D.I.openApplication(str, obj, info);
  8852. }
  8853. }
  8854. break;
  8855. case "mind":
  8856. aTool = 3;
  8857. _iframe = $$("iframe", {
  8858. "frameborder": "no",
  8859. "border": "0",
  8860. "scrolling ": "no",
  8861. "style": {
  8862. "cssText": "border:0;width:100%;height:100%"
  8863. },
  8864. "src": "/kityminder-editor/dist/index.html"
  8865. });
  8866. _box.appendChild(_iframe);
  8867. _box.appendChild(_jie);
  8868. _formdiv = new U.UF.UI.form(
  8869. "思维导图",
  8870. _box, { //"/jsmind/example/demo.html"
  8871. "id": "minds" + cid + stage + task + tool,
  8872. "style": {
  8873. "width": "90%",
  8874. "height": "90%",
  8875. "overflow": 'hidden'
  8876. },
  8877. "onresize": function () { }
  8878. }, {
  8879. closecallback: function () { }
  8880. }, {
  8881. "style": {
  8882. "height": "36px"
  8883. }
  8884. }).form; //创建窗体
  8885. _taskbar = {
  8886. "id": str + _formdiv.id,
  8887. "style": {
  8888. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8889. },
  8890. "name": "思维导图",
  8891. "forms": _formdiv,
  8892. "click": function () {
  8893. U.MD.D.I.openApplication(str, obj, info);
  8894. }
  8895. }
  8896. break;
  8897. case "doc":
  8898. aTool = 6;
  8899. _iframe = $$("iframe", {
  8900. "frameborder": "no",
  8901. "border": "0",
  8902. "scrolling ": "no",
  8903. "style": {
  8904. "cssText": "border:0;width:100%;height:100%"
  8905. },
  8906. "src": "/Office/Word/WordEditArea.htm"
  8907. })
  8908. _box.appendChild(_iframe);
  8909. _box.appendChild(_jie);
  8910. _formdiv = new U.UF.UI.form(
  8911. "协同文档",
  8912. _box, {
  8913. "id": "docs" + cid + stage + task + tool,
  8914. "style": {
  8915. "width": "90%",
  8916. "height": "90%",
  8917. "overflow": 'hidden'
  8918. },
  8919. "onresize": function () { }
  8920. }, {
  8921. closecallback: function () { }
  8922. }, {
  8923. "style": {
  8924. "height": "36px"
  8925. }
  8926. }).form; //创建窗体
  8927. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8928. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8929. })
  8930. _taskbar = {
  8931. "id": str + _formdiv.id,
  8932. "style": {
  8933. "backgroundImage": "url(/img/icon/doc.png)"
  8934. },
  8935. "name": "协同文档",
  8936. "forms": _formdiv,
  8937. "click": function () {
  8938. U.MD.D.I.openApplication(str, obj, info);
  8939. }
  8940. }
  8941. break;
  8942. }
  8943. const script1 = document.createElement("script");
  8944. script1.type = "text/javascript";
  8945. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8946. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8947. const script2 = document.createElement("script");
  8948. script2.type = "text/javascript";
  8949. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8950. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8951. const script3 = document.createElement("script");
  8952. script3.type = "text/javascript";
  8953. script3.charset = "UTF-8";
  8954. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8955. const script4 = document.createElement("script");
  8956. script4.type = "text/javascript";
  8957. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8958. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8959. if (_iframe) {
  8960. if (str == 'doc') {
  8961. _iframe = _formdiv.querySelector('iframe')
  8962. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8963. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8964. _iframe.contentWindow.document.body.appendChild(script1);
  8965. _iframe.contentWindow.document.body.appendChild(script2);
  8966. // _iframe.contentWindow.document.body.appendChild(script3);
  8967. _iframe.contentWindow.document.body.appendChild(script4);
  8968. })
  8969. if (onloadListener) {
  8970. _iframe.contentDocument.location.reload()
  8971. } else {
  8972. _iframe.contentDocument.location.reload()
  8973. }
  8974. } else if (str == 'mind') {
  8975. _iframe = _formdiv.querySelector('iframe')
  8976. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8977. _iframe.contentWindow.document.body.appendChild(script1);
  8978. _iframe.contentWindow.document.body.appendChild(script2);
  8979. _iframe.contentWindow.document.body.appendChild(script4);
  8980. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8981. })
  8982. if (onloadListener) {
  8983. _iframe.contentDocument.location.reload()
  8984. } else {
  8985. _iframe.contentDocument.location.reload()
  8986. }
  8987. } else {
  8988. _iframe.onload = () => {
  8989. _iframe.contentWindow.document.body.appendChild(script1);
  8990. _iframe.contentWindow.document.body.appendChild(script2);
  8991. // _iframe.contentWindow.document.body.appendChild(script3);
  8992. _iframe.contentWindow.document.body.appendChild(script4);
  8993. };
  8994. }
  8995. _jie.onclick = async () => {
  8996. let text = ''
  8997. if (aTool == 6) {
  8998. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8999. } else if (aTool == 3) {
  9000. text = await U.MD.D.I.getEditorContent(_iframe);
  9001. }
  9002. _loading.style.display = 'flex'
  9003. console.log(_loading);
  9004. var _ajs = _iframe.contentWindow.document.createElement("script");
  9005. _ajs.type = "text/javascript";
  9006. _ajs.innerHTML =
  9007. // 'console.log(' + _loading + ');\n' +
  9008. 'var _js = document.createElement("script");\n' +
  9009. '_js.type="text/javascript";\n' +
  9010. '_js.charset="UTF-8";\n' +
  9011. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9012. "_js.onload = function(){\n" +
  9013. ' var a = document.getElementsByTagName("img")\n' +
  9014. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9015. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9016. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9017. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9018. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9019. "beforeUpload_shishi(file," +
  9020. "'" +
  9021. _userid +
  9022. "'" +
  9023. ", " +
  9024. "'" +
  9025. _cid +
  9026. "'" +
  9027. ", " +
  9028. "'" +
  9029. _stage +
  9030. "'" +
  9031. ", " +
  9032. "'" +
  9033. _task +
  9034. "'" +
  9035. ", " +
  9036. "'" +
  9037. _tool +
  9038. "'" +
  9039. ", " +
  9040. "'" +
  9041. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9042. "'" +
  9043. ", " +
  9044. "'" +
  9045. aTool +
  9046. "'" +
  9047. ", " +
  9048. "`" +
  9049. text +
  9050. "`" +
  9051. ")\n" +
  9052. " });\n" +
  9053. "}\n" +
  9054. "document.head.appendChild(_js);\n";
  9055. _iframe.contentWindow.document.head.appendChild(_ajs);
  9056. }
  9057. }
  9058. //U.MD.D.I.openClick(str);
  9059. //如果有任务栏信息
  9060. // if (_taskbar) {
  9061. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9062. // }
  9063. }
  9064. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9065. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9066. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9067. _userinfo = US.userInfo, //登录用户信息
  9068. _userid = US.userInfo.userid //登录用户id
  9069. let _iframe;
  9070. let _cid = cid,
  9071. _stage = stage,
  9072. _task = task,
  9073. _tool = tool;
  9074. var _jie = $$("div", {
  9075. "style": {
  9076. "position": "absolute",
  9077. "bottom": "50px",
  9078. "right": "50px",
  9079. "zIndex": "9999",
  9080. "backgroundColor": "#2268bc",
  9081. "color": "#fff",
  9082. "padding": "12px 20px",
  9083. "cursor": "pointer",
  9084. "borderRadius": "4px",
  9085. },
  9086. "innerHTML": "确认并提交"
  9087. })
  9088. let aTool = ''
  9089. let _loading = document.createElement('div')
  9090. _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;"
  9091. // _loading.id = "";
  9092. let _lchild = document.createElement('div')
  9093. let _limg = document.createElement('img')
  9094. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9095. _limg.style = "width: 26px;margin-right: 10px;"
  9096. _lchild.appendChild(_limg)
  9097. let _lspan = document.createElement('span')
  9098. _lspan.innerHTML = "上传中..."
  9099. _lchild.appendChild(_lspan)
  9100. _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%);"
  9101. _loading.appendChild(_lchild)
  9102. var _box = $$('div', {
  9103. "style": {
  9104. "position": "relative",
  9105. "width": "100%",
  9106. "height": "100%",
  9107. },
  9108. })
  9109. _box.appendChild(_loading)
  9110. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9111. switch (str) {
  9112. case "whiteboard":
  9113. aTool = 1;
  9114. _iframe = $$("iframe", {
  9115. "frameborder": "no",
  9116. "border": "0",
  9117. "scrolling ": "no",
  9118. "style": {
  9119. "cssText": "border:0;width:100%;height:100%"
  9120. },
  9121. "src": "https://beta.iwb.cocorobo.cn/"
  9122. })
  9123. _box.appendChild(_iframe);
  9124. _box.appendChild(_jie);
  9125. _formdiv = new U.UF.UI.form(
  9126. "电子白板",
  9127. _box, {
  9128. "id": "whiteboards" + cid + stage + task + tool,
  9129. "style": {
  9130. "width": "90%",
  9131. "height": "90%",
  9132. "overflow": 'hidden'
  9133. },
  9134. "onresize": function () { }
  9135. }, {
  9136. closecallback: function () { }
  9137. }, {
  9138. "style": {
  9139. "height": "36px"
  9140. }
  9141. }).form; //创建窗体
  9142. _taskbar = {
  9143. "id": str + _formdiv.id,
  9144. "style": {
  9145. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9146. },
  9147. "name": "电子白板",
  9148. "forms": _formdiv,
  9149. "click": function () {
  9150. U.MD.D.I.openApplication(str, obj, info);
  9151. }
  9152. }
  9153. break;
  9154. case "mind":
  9155. aTool = 3;
  9156. _iframe = $$("iframe", {
  9157. "frameborder": "no",
  9158. "border": "0",
  9159. "scrolling ": "no",
  9160. "style": {
  9161. "cssText": "border:0;width:100%;height:100%"
  9162. },
  9163. "src": "/kityminder-editor/dist/index.html"
  9164. });
  9165. _box.appendChild(_iframe);
  9166. _box.appendChild(_jie);
  9167. _formdiv = new U.UF.UI.form(
  9168. "思维导图",
  9169. _box, { //"/jsmind/example/demo.html"
  9170. "id": "minds" + cid + stage + task + tool,
  9171. "style": {
  9172. "width": "90%",
  9173. "height": "90%",
  9174. "overflow": 'hidden'
  9175. },
  9176. "onresize": function () { }
  9177. }, {
  9178. closecallback: function () { }
  9179. }, {
  9180. "style": {
  9181. "height": "36px"
  9182. }
  9183. }).form; //创建窗体
  9184. _taskbar = {
  9185. "id": str + _formdiv.id,
  9186. "style": {
  9187. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9188. },
  9189. "name": "思维导图",
  9190. "forms": _formdiv,
  9191. "click": function () {
  9192. U.MD.D.I.openApplication(str, obj, info);
  9193. }
  9194. }
  9195. break;
  9196. case "doc":
  9197. aTool = 6;
  9198. _iframe = $$("iframe", {
  9199. "frameborder": "no",
  9200. "border": "0",
  9201. "scrolling ": "no",
  9202. "style": {
  9203. "cssText": "border:0;width:100%;height:100%"
  9204. },
  9205. "src": "/Office/Word/WordEditArea.htm"
  9206. })
  9207. _box.appendChild(_iframe);
  9208. _box.appendChild(_jie);
  9209. _formdiv = new U.UF.UI.form(
  9210. "协同文档",
  9211. _box, {
  9212. "id": "docs" + cid + stage + task + tool,
  9213. "style": {
  9214. "width": "90%",
  9215. "height": "90%",
  9216. "overflow": 'hidden'
  9217. },
  9218. "onresize": function () { }
  9219. }, {
  9220. closecallback: function () { }
  9221. }, {
  9222. "style": {
  9223. "height": "36px"
  9224. }
  9225. }).form; //创建窗体
  9226. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9227. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9228. })
  9229. _taskbar = {
  9230. "id": str + _formdiv.id,
  9231. "style": {
  9232. "backgroundImage": "url(/img/icon/doc.png)"
  9233. },
  9234. "name": "协同文档",
  9235. "forms": _formdiv,
  9236. "click": function () {
  9237. U.MD.D.I.openApplication(str, obj, info);
  9238. }
  9239. }
  9240. break;
  9241. }
  9242. const script1 = document.createElement("script");
  9243. script1.type = "text/javascript";
  9244. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9245. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9246. const script2 = document.createElement("script");
  9247. script2.type = "text/javascript";
  9248. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9249. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9250. const script3 = document.createElement("script");
  9251. script3.type = "text/javascript";
  9252. script3.charset = "UTF-8";
  9253. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9254. const script4 = document.createElement("script");
  9255. script4.type = "text/javascript";
  9256. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9257. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9258. if (_iframe) {
  9259. if (str == 'doc') {
  9260. _iframe = _formdiv.querySelector('iframe')
  9261. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9262. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9263. _iframe.contentWindow.document.body.appendChild(script1);
  9264. _iframe.contentWindow.document.body.appendChild(script2);
  9265. // _iframe.contentWindow.document.body.appendChild(script3);
  9266. _iframe.contentWindow.document.body.appendChild(script4);
  9267. })
  9268. if (onloadListener) {
  9269. _iframe.contentDocument.location.reload()
  9270. } else {
  9271. _iframe.contentDocument.location.reload()
  9272. }
  9273. } else if (str == 'mind') {
  9274. _iframe = _formdiv.querySelector('iframe')
  9275. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9276. _iframe.contentWindow.document.body.appendChild(script1);
  9277. _iframe.contentWindow.document.body.appendChild(script2);
  9278. _iframe.contentWindow.document.body.appendChild(script4);
  9279. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9280. })
  9281. if (onloadListener) {
  9282. _iframe.contentDocument.location.reload()
  9283. } else {
  9284. _iframe.contentDocument.location.reload()
  9285. }
  9286. } else {
  9287. _iframe.onload = () => {
  9288. _iframe.contentWindow.document.body.appendChild(script1);
  9289. _iframe.contentWindow.document.body.appendChild(script2);
  9290. // _iframe.contentWindow.document.body.appendChild(script3);
  9291. _iframe.contentWindow.document.body.appendChild(script4);
  9292. };
  9293. }
  9294. _jie.onclick = async () => {
  9295. let text = ''
  9296. if (aTool == 6) {
  9297. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9298. } else if (aTool == 3) {
  9299. text = await U.MD.D.I.getEditorContent(_iframe);
  9300. }
  9301. _loading.style.display = 'flex'
  9302. console.log(_loading);
  9303. var _ajs = _iframe.contentWindow.document.createElement("script");
  9304. _ajs.type = "text/javascript";
  9305. _ajs.innerHTML =
  9306. // 'console.log(' + _loading + ');\n' +
  9307. 'var _js = document.createElement("script");\n' +
  9308. '_js.type="text/javascript";\n' +
  9309. '_js.charset="UTF-8";\n' +
  9310. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9311. "_js.onload = function(){\n" +
  9312. ' var a = document.getElementsByTagName("img")\n' +
  9313. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9314. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9315. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9316. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9317. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9318. "beforeUpload_shishi(file," +
  9319. "'" +
  9320. _userid +
  9321. "'" +
  9322. ", " +
  9323. "'" +
  9324. _cid +
  9325. "'" +
  9326. ", " +
  9327. "'" +
  9328. _stage +
  9329. "'" +
  9330. ", " +
  9331. "'" +
  9332. _task +
  9333. "'" +
  9334. ", " +
  9335. "'" +
  9336. _tool +
  9337. "'" +
  9338. ", " +
  9339. "'" +
  9340. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9341. "'" +
  9342. ", " +
  9343. "'" +
  9344. aTool +
  9345. "'" +
  9346. ", " +
  9347. "`" +
  9348. text +
  9349. "`" +
  9350. ")\n" +
  9351. " });\n" +
  9352. "}\n" +
  9353. "document.head.appendChild(_js);\n";
  9354. _iframe.contentWindow.document.head.appendChild(_ajs);
  9355. }
  9356. }
  9357. //U.MD.D.I.openClick(str);
  9358. //如果有任务栏信息
  9359. // if (_taskbar) {
  9360. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9361. // }
  9362. }
  9363. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9364. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9365. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9366. _userinfo = US.userInfo, //登录用户信息
  9367. _userid = US.userInfo.userid //登录用户id
  9368. let _iframe;
  9369. let _cid = cid,
  9370. _stage = stage,
  9371. _task = task,
  9372. _tool = tool;
  9373. var _jie = $$("div", {
  9374. "style": {
  9375. "position": "absolute",
  9376. "bottom": "50px",
  9377. "right": "50px",
  9378. "zIndex": "9999",
  9379. "backgroundColor": "#2268bc",
  9380. "color": "#fff",
  9381. "padding": "12px 20px",
  9382. "cursor": "pointer",
  9383. "borderRadius": "4px",
  9384. },
  9385. "innerHTML": "上传模板"
  9386. })
  9387. let aTool = ''
  9388. let _loading = document.createElement('div')
  9389. _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;"
  9390. // _loading.id = "";
  9391. let _lchild = document.createElement('div')
  9392. let _limg = document.createElement('img')
  9393. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9394. _limg.style = "width: 26px;margin-right: 10px;"
  9395. _lchild.appendChild(_limg)
  9396. let _lspan = document.createElement('span')
  9397. _lspan.innerHTML = "上传中..."
  9398. _lchild.appendChild(_lspan)
  9399. _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%);"
  9400. _loading.appendChild(_lchild)
  9401. var _box = $$('div', {
  9402. "style": {
  9403. "position": "relative",
  9404. "width": "100%",
  9405. "height": "100%",
  9406. },
  9407. })
  9408. _box.appendChild(_loading)
  9409. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9410. switch (str) {
  9411. case "whiteboard":
  9412. aTool = 1;
  9413. _iframe = $$("iframe", {
  9414. "frameborder": "no",
  9415. "border": "0",
  9416. "scrolling ": "no",
  9417. "style": {
  9418. "cssText": "border:0;width:100%;height:100%"
  9419. },
  9420. "src": "https://beta.iwb.cocorobo.cn/"
  9421. })
  9422. _box.appendChild(_iframe);
  9423. _box.appendChild(_jie);
  9424. _formdiv = new U.UF.UI.form(
  9425. "电子白板",
  9426. _box, {
  9427. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9428. "style": {
  9429. "width": "90%",
  9430. "height": "90%",
  9431. "overflow": 'hidden'
  9432. },
  9433. "onresize": function () { }
  9434. }, {
  9435. closecallback: function () { }
  9436. }, {
  9437. "style": {
  9438. "height": "36px"
  9439. }
  9440. }).form; //创建窗体
  9441. _taskbar = {
  9442. "id": str + _formdiv.id,
  9443. "style": {
  9444. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9445. },
  9446. "name": "电子白板",
  9447. "forms": _formdiv,
  9448. "click": function () {
  9449. U.MD.D.I.openApplication(str, obj, info);
  9450. }
  9451. }
  9452. break;
  9453. case "mind":
  9454. aTool = 3;
  9455. _iframe = $$("iframe", {
  9456. "frameborder": "no",
  9457. "border": "0",
  9458. "scrolling ": "no",
  9459. "style": {
  9460. "cssText": "border:0;width:100%;height:100%"
  9461. },
  9462. "src": "/kityminder-editor/dist/index.html"
  9463. });
  9464. _box.appendChild(_iframe);
  9465. _box.appendChild(_jie);
  9466. _formdiv = new U.UF.UI.form(
  9467. "思维导图",
  9468. _box, { //"/jsmind/example/demo.html"
  9469. "id": "minds_Yu" + cid + stage + task + tool,
  9470. "style": {
  9471. "width": "90%",
  9472. "height": "90%",
  9473. "overflow": 'hidden'
  9474. },
  9475. "onresize": function () { }
  9476. }, {
  9477. closecallback: function () { }
  9478. }, {
  9479. "style": {
  9480. "height": "36px"
  9481. }
  9482. }).form; //创建窗体
  9483. _taskbar = {
  9484. "id": str + _formdiv.id,
  9485. "style": {
  9486. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9487. },
  9488. "name": "思维导图",
  9489. "forms": _formdiv,
  9490. "click": function () {
  9491. U.MD.D.I.openApplication(str, obj, info);
  9492. }
  9493. }
  9494. break;
  9495. case "doc":
  9496. aTool = 6;
  9497. _iframe = $$("iframe", {
  9498. "frameborder": "no",
  9499. "border": "0",
  9500. "scrolling ": "no",
  9501. "style": {
  9502. "cssText": "border:0;width:100%;height:100%"
  9503. },
  9504. "src": "/Office/Word/WordEditArea.htm"
  9505. })
  9506. _box.appendChild(_iframe);
  9507. _box.appendChild(_jie);
  9508. _formdiv = new U.UF.UI.form(
  9509. "协同文档",
  9510. _box, {
  9511. "id": "docs_Yu" + cid + stage + task + tool,
  9512. "style": {
  9513. "width": "90%",
  9514. "height": "90%",
  9515. "overflow": 'hidden'
  9516. },
  9517. "onresize": function () { }
  9518. }, {
  9519. closecallback: function () { }
  9520. }, {
  9521. "style": {
  9522. "height": "36px"
  9523. }
  9524. }).form; //创建窗体
  9525. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9526. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9527. })
  9528. _taskbar = {
  9529. "id": str + _formdiv.id,
  9530. "style": {
  9531. "backgroundImage": "url(/img/icon/doc.png)"
  9532. },
  9533. "name": "协同文档",
  9534. "forms": _formdiv,
  9535. "click": function () {
  9536. U.MD.D.I.openApplication(str, obj, info);
  9537. }
  9538. }
  9539. break;
  9540. case "CocoPi":
  9541. aTool = 57;
  9542. _iframe = $$("iframe", {
  9543. "allowpaymentrequest": "allowpaymentrequest",
  9544. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9545. "webkitallowfullscreen": "",
  9546. "mozallowfullscreen": "",
  9547. "frameborder": "no",
  9548. "border": "0",
  9549. "scrolling ": "no",
  9550. "style": {
  9551. "cssText": "border:0;width:100%;height:100%"
  9552. },
  9553. "src": "https://pi.cocorobo.cn/"
  9554. })
  9555. _box.appendChild(_iframe);
  9556. _box.appendChild(_jie);
  9557. _formdiv = new U.UF.UI.form(
  9558. "CocoPi",
  9559. _box, {
  9560. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9561. "style": {
  9562. "width": "90%",
  9563. "height": "90%",
  9564. "overflow": 'hidden'
  9565. },
  9566. "onresize": function () { }
  9567. }, {
  9568. closecallback: function () { }
  9569. }, {
  9570. "style": {
  9571. "height": "36px"
  9572. }
  9573. }).form; //创建窗体
  9574. _taskbar = {
  9575. "id": str + _formdiv.id,
  9576. "style": {
  9577. "backgroundImage": "url(/img/icon/cocopi.png)"
  9578. },
  9579. "name": "CocoPi",
  9580. "forms": _formdiv,
  9581. "click": function () {
  9582. U.MD.D.I.openApplication(str, obj, info);
  9583. }
  9584. }
  9585. break;
  9586. }
  9587. if (_iframe) {
  9588. if (str == 'doc') {
  9589. _iframe = _formdiv.querySelector('iframe')
  9590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9591. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9592. })
  9593. if (onloadListener) {
  9594. _iframe.contentDocument.location.reload()
  9595. } else {
  9596. _iframe.contentDocument.location.reload()
  9597. }
  9598. } else if (str == 'mind') {
  9599. _iframe = _formdiv.querySelector('iframe')
  9600. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9601. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9602. })
  9603. if (onloadListener) {
  9604. _iframe.contentDocument.location.reload()
  9605. } else {
  9606. _iframe.contentDocument.location.reload()
  9607. }
  9608. } else if (str == 'whiteboard') {
  9609. _iframe = _formdiv.querySelector('iframe')
  9610. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9611. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9612. })
  9613. // if (onloadListener) {
  9614. // try {
  9615. // _iframe.src += "?cocorobo="+new Date().getTime()
  9616. // _iframe.contentWindow.document.location.reload()
  9617. // } catch (error) {
  9618. // }
  9619. // } else {
  9620. // _iframe.contentDocument.location.reload()
  9621. // }
  9622. } else if (str == 'CocoPi') {
  9623. _iframe = _formdiv.querySelector('iframe')
  9624. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9625. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9626. })
  9627. if (onloadListener) {
  9628. _iframe.contentDocument.location.reload()
  9629. } else {
  9630. _iframe.contentDocument.location.reload()
  9631. }
  9632. } else {
  9633. _iframe.onload = () => { };
  9634. }
  9635. _jie.onclick = async () => {
  9636. let text = ''
  9637. let type = '2'
  9638. if (aTool == 1) {
  9639. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9640. type = '3'
  9641. } else if (aTool == 6) {
  9642. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9643. type = '1'
  9644. } else if (aTool == 3) {
  9645. text = await U.MD.D.I.getEditorContent(_iframe);
  9646. type = '2'
  9647. } else if (aTool == 57) {
  9648. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9649. type = '4'
  9650. }
  9651. _loading.style.display = 'flex'
  9652. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9653. }
  9654. }
  9655. //U.MD.D.I.openClick(str);
  9656. //如果有任务栏信息
  9657. // if (_taskbar) {
  9658. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9659. // }
  9660. }
  9661. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9662. var xmlhttp;
  9663. var Mac, Sn, DeviceId
  9664. if (window.XMLHttpRequest) {
  9665. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9666. xmlhttp = new XMLHttpRequest();
  9667. } else {
  9668. // IE6, IE5 浏览器执行代码
  9669. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9670. }
  9671. xmlhttp.onreadystatechange = function () {
  9672. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9673. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9674. // resolve(res.value[0][0].text);
  9675. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9676. }
  9677. }
  9678. }
  9679. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9680. xmlhttp.send();
  9681. }
  9682. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9683. var xmlhttp;
  9684. var Mac, Sn, DeviceId
  9685. if (window.XMLHttpRequest) {
  9686. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9687. xmlhttp = new XMLHttpRequest();
  9688. } else {
  9689. // IE6, IE5 浏览器执行代码
  9690. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9691. }
  9692. xmlhttp.onreadystatechange = function () {
  9693. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9694. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9695. // resolve(res.value[0][0].text);
  9696. if (type == '2') {
  9697. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9698. } else if (type == '3') {
  9699. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9700. } else if (type == '4') {
  9701. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9702. }
  9703. } else {
  9704. if (type == '2') {
  9705. iframe.contentWindow.editor.minder.importData('json', '')
  9706. } else if (type == '3') {
  9707. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9708. } else if (type == '4') {
  9709. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9710. }
  9711. }
  9712. }
  9713. }
  9714. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9715. xmlhttp.send();
  9716. }
  9717. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9718. var xmlhttp;
  9719. var Mac, Sn, DeviceId
  9720. if (window.XMLHttpRequest) {
  9721. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9722. xmlhttp = new XMLHttpRequest();
  9723. } else {
  9724. // IE6, IE5 浏览器执行代码
  9725. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9726. }
  9727. xmlhttp.onreadystatechange = function () {
  9728. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9729. if (xmlhttp.response) {
  9730. // resolve(res.value[0][0].text);
  9731. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9732. // $(fileInput).val('');
  9733. // });
  9734. span.innerHTML = '上传成功'
  9735. setTimeout(() => {
  9736. loading.style.display = 'none'
  9737. }, 1000);
  9738. }
  9739. }
  9740. }
  9741. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9742. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9743. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9744. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9745. // 设置请求头,表示请求体的编码格式
  9746. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9747. // 设置请求体,使用url-encoded格式的数据
  9748. }
  9749. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9750. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9751. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9752. _userinfo = US.userInfo, //登录用户信息
  9753. _userid = US.userInfo.userid //登录用户id
  9754. let _iframe;
  9755. let _cid = cid,
  9756. _stage = stage,
  9757. _task = task,
  9758. _tool = tool;
  9759. var _jie = $$("div", {
  9760. "style": {
  9761. "position": "absolute",
  9762. "bottom": "50px",
  9763. "right": "50px",
  9764. "zIndex": "9999",
  9765. "backgroundColor": "#2268bc",
  9766. "color": "#fff",
  9767. "padding": "12px 20px",
  9768. "cursor": "pointer",
  9769. "borderRadius": "4px",
  9770. },
  9771. "innerHTML": "提交作业"
  9772. })
  9773. let aTool = ''
  9774. let _loading = document.createElement('div')
  9775. _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;"
  9776. // _loading.id = "";
  9777. let _lchild = document.createElement('div')
  9778. let _limg = document.createElement('img')
  9779. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9780. _limg.style = "width: 26px;margin-right: 10px;"
  9781. _lchild.appendChild(_limg)
  9782. let _lspan = document.createElement('span')
  9783. _lspan.innerHTML = "上传中..."
  9784. _lchild.appendChild(_lspan)
  9785. _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%);"
  9786. _loading.appendChild(_lchild)
  9787. var _box = $$('div', {
  9788. "style": {
  9789. "position": "relative",
  9790. "width": "100%",
  9791. "height": "100%",
  9792. },
  9793. })
  9794. _box.appendChild(_loading)
  9795. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9796. switch (str) {
  9797. case "CocoPi":
  9798. aTool = 57;
  9799. _iframe = $$("iframe", {
  9800. "allowpaymentrequest": "allowpaymentrequest",
  9801. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9802. "webkitallowfullscreen": "",
  9803. "mozallowfullscreen": "",
  9804. "frameborder": "no",
  9805. "border": "0",
  9806. "scrolling ": "no",
  9807. "style": {
  9808. "cssText": "border:0;width:100%;height:100%"
  9809. },
  9810. "src": "https://pi.cocorobo.cn/"
  9811. })
  9812. _box.appendChild(_iframe);
  9813. _box.appendChild(_jie);
  9814. _formdiv = new U.UF.UI.form(
  9815. "CocoPi",
  9816. _box, {
  9817. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9818. "style": {
  9819. "width": "90%",
  9820. "height": "90%",
  9821. "overflow": 'hidden'
  9822. },
  9823. "onresize": function () { }
  9824. }, {
  9825. closecallback: function () { }
  9826. }, {
  9827. "style": {
  9828. "height": "36px"
  9829. }
  9830. }).form; //创建窗体
  9831. _taskbar = {
  9832. "id": str + _formdiv.id,
  9833. "style": {
  9834. "backgroundImage": "url(/img/icon/cocopi.png)"
  9835. },
  9836. "name": "CocoPi",
  9837. "forms": _formdiv,
  9838. "click": function () {
  9839. U.MD.D.I.openApplication(str, obj, info);
  9840. }
  9841. }
  9842. break;
  9843. }
  9844. if (_iframe) {
  9845. if (str == 'CocoPi') {
  9846. _iframe = _formdiv.querySelector('iframe')
  9847. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9848. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9849. })
  9850. if (onloadListener) {
  9851. _iframe.contentDocument.location.reload()
  9852. } else {
  9853. _iframe.contentDocument.location.reload()
  9854. }
  9855. }
  9856. _jie.onclick = async () => {
  9857. let text = ''
  9858. if (aTool == 57) {
  9859. text = _iframe.contentWindow.getLoadXmlStr()
  9860. }
  9861. _loading.style.display = 'flex'
  9862. console.log(_loading);
  9863. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9864. _loading.style.display = 'none'
  9865. let _div = document.createElement('div')
  9866. _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;"
  9867. let _inner = document.createElement('div')
  9868. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9869. _inner.innerHTML = "上传成功"
  9870. _div.appendChild(_inner)
  9871. _iframe.contentWindow.window.document.body.appendChild(_div)
  9872. _div.onclick = () => {
  9873. _iframe.contentWindow.window.document.body.removeChild(_div)
  9874. }
  9875. setTimeout(() => {
  9876. _iframe.contentWindow.window.document.body.removeChild(_div)
  9877. }, 1000);
  9878. }, [], { "type": "POST", "withCredentials": true });
  9879. }
  9880. }
  9881. }
  9882. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9883. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9884. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9885. _userid = student.userid, //登录用户id
  9886. _username = student.student //用户名字
  9887. let _iframe;
  9888. let _cid = cid,
  9889. _stage = stage,
  9890. _task = task,
  9891. _tool = tool;
  9892. var _jie = $$("div", {
  9893. "style": {
  9894. "position": "absolute",
  9895. "bottom": "50px",
  9896. "right": "50px",
  9897. "zIndex": "9999",
  9898. "backgroundColor": "#2268bc",
  9899. "color": "#fff",
  9900. "padding": "12px 20px",
  9901. "cursor": "pointer",
  9902. "borderRadius": "4px",
  9903. },
  9904. "innerHTML": "提交作业"
  9905. })
  9906. let aTool = ''
  9907. let _loading = document.createElement('div')
  9908. _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;"
  9909. // _loading.id = "";
  9910. let _lchild = document.createElement('div')
  9911. let _limg = document.createElement('img')
  9912. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9913. _limg.style = "width: 26px;margin-right: 10px;"
  9914. _lchild.appendChild(_limg)
  9915. let _lspan = document.createElement('span')
  9916. _lspan.innerHTML = "上传中..."
  9917. _lchild.appendChild(_lspan)
  9918. _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%);"
  9919. _loading.appendChild(_lchild)
  9920. var _box = $$('div', {
  9921. "style": {
  9922. "position": "relative",
  9923. "width": "100%",
  9924. "height": "100%",
  9925. },
  9926. })
  9927. _box.appendChild(_loading)
  9928. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9929. switch (str) {
  9930. case "CocoPi":
  9931. aTool = 57;
  9932. _iframe = $$("iframe", {
  9933. "allowpaymentrequest": "allowpaymentrequest",
  9934. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9935. "webkitallowfullscreen": "",
  9936. "mozallowfullscreen": "",
  9937. "frameborder": "no",
  9938. "border": "0",
  9939. "scrolling ": "no",
  9940. "style": {
  9941. "cssText": "border:0;width:100%;height:100%"
  9942. },
  9943. "src": "https://pi.cocorobo.cn/"
  9944. })
  9945. _box.appendChild(_iframe);
  9946. _box.appendChild(_jie);
  9947. _formdiv = new U.UF.UI.form(
  9948. "CocoPi-" + _username,
  9949. _box, {
  9950. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9951. "style": {
  9952. "width": "90%",
  9953. "height": "90%",
  9954. "overflow": 'hidden'
  9955. },
  9956. "onresize": function () { }
  9957. }, {
  9958. closecallback: function () { }
  9959. }, {
  9960. "style": {
  9961. "height": "36px"
  9962. }
  9963. }).form; //创建窗体
  9964. _taskbar = {
  9965. "id": str + _formdiv.id,
  9966. "style": {
  9967. "backgroundImage": "url(/img/icon/cocopi.png)"
  9968. },
  9969. "name": "CocoPi",
  9970. "forms": _formdiv,
  9971. "click": function () {
  9972. U.MD.D.I.openApplication(str, obj, info);
  9973. }
  9974. }
  9975. break;
  9976. }
  9977. if (_iframe) {
  9978. if (str == 'CocoPi') {
  9979. _iframe = _formdiv.querySelector('iframe')
  9980. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9981. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9982. })
  9983. if (onloadListener) {
  9984. _iframe.contentDocument.location.reload()
  9985. } else {
  9986. _iframe.contentDocument.location.reload()
  9987. }
  9988. }
  9989. _jie.onclick = async () => {
  9990. let text = ''
  9991. if (aTool == 57) {
  9992. text = _iframe.contentWindow.getLoadXmlStr()
  9993. }
  9994. _loading.style.display = 'flex'
  9995. console.log(_loading);
  9996. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9997. _loading.style.display = 'none'
  9998. let _div = document.createElement('div')
  9999. _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;"
  10000. let _inner = document.createElement('div')
  10001. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10002. _inner.innerHTML = "上传成功"
  10003. _div.appendChild(_inner)
  10004. _iframe.contentWindow.window.document.body.appendChild(_div)
  10005. _div.onclick = () => {
  10006. _iframe.contentWindow.window.document.body.removeChild(_div)
  10007. }
  10008. setTimeout(() => {
  10009. _iframe.contentWindow.window.document.body.removeChild(_div)
  10010. }, 1000);
  10011. }, [], { "type": "POST", "withCredentials": true });
  10012. }
  10013. }
  10014. }
  10015. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10016. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10017. if (res.value[0].length > 0) {
  10018. if (atool == 57) {
  10019. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10020. }
  10021. } else {
  10022. if (atool == 57) {
  10023. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10024. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10025. }
  10026. }
  10027. }, [], { "type": "POST", "withCredentials": true });
  10028. }