DeskTop.js 586 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537
  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.BSDNSteacherDeskIcon = [
  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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "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": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  986. ];
  987. //未来教育基地
  988. U.MD.D.I.szjkyAdminDeskIcon = [
  989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  991. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  992. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  993. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  994. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  995. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1001. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1005. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1006. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1007. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1008. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1009. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1010. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1011. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1012. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1013. ];
  1014. //未来教育基地
  1015. U.MD.D.I.szjkyStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //成华教育局
  1022. U.MD.D.I.chjyjTeacherDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1030. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1031. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1032. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1033. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1034. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //成华教育局chjyj
  1039. U.MD.D.I.chjyjAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1045. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1046. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1047. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1048. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1049. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1050. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1051. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1055. ];
  1056. //成华教育局chjyj
  1057. U.MD.D.I.chjyjStudentDeskIcon = [
  1058. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. ];
  1063. //tpc
  1064. U.MD.D.I.tpcStudentDeskIcon = [
  1065. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1066. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1067. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1068. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1069. ];
  1070. //tpc
  1071. U.MD.D.I.tpcTeacherDeskIcon = [
  1072. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1073. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1074. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1075. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1076. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1077. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1078. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1079. ];
  1080. //tpc
  1081. U.MD.D.I.tpcAdminDeskIcon = [
  1082. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1083. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1084. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1085. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeTeacherDeskIcon = [
  1092. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1093. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1094. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1095. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1099. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1100. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1101. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1102. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1103. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1104. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1105. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1106. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1107. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1108. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1109. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1110. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1111. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1112. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1113. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1114. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1115. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1116. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1117. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1118. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1119. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1120. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1121. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1122. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1123. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1124. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1125. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1126. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1130. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1131. ];
  1132. //THU-IOE
  1133. U.MD.D.I.thuioeStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //jccssyl
  1140. U.MD.D.I.jccssylTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //jccssyl
  1162. U.MD.D.I.jccssylStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //cale
  1169. U.MD.D.I.caleTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1177. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1178. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1179. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1180. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1181. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1182. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1183. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1184. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1185. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1186. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1187. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1188. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1189. ];
  1190. //cale
  1191. U.MD.D.I.caleStudentDeskIcon = [
  1192. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1193. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1194. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1199. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1200. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1202. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1203. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1204. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1205. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1206. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1207. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1208. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1209. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1210. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1211. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1212. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1213. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1214. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1215. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1216. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1217. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1218. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1219. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1220. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1221. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1222. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1223. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1224. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1225. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1226. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1227. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1228. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1229. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1230. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1231. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1232. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1233. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1236. ];
  1237. //lqwmsgzs
  1238. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1239. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. ];
  1244. //盐田区幼儿园
  1245. U.MD.D.I.ytyTeacherDeskIcon = [
  1246. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1247. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1249. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1250. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1251. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1252. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1253. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1256. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1257. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1258. ];
  1259. //盐田区幼儿园
  1260. U.MD.D.I.ytyStudentDeskIcon = [
  1261. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. ];
  1265. //scnuai
  1266. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1267. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1268. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1269. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1270. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1271. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1272. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1273. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1274. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1275. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1276. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1277. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1278. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1279. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1280. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1281. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1284. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1285. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1286. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1287. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1288. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1289. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1290. ];
  1291. //scnuai
  1292. U.MD.D.I.scnuaiAdminDeskIcon = [
  1293. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1294. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1295. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1296. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1297. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1298. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1299. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1303. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1304. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1305. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1306. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1309. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1310. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1311. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1312. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //scnuai
  1318. U.MD.D.I.scnuaiStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1323. ];
  1324. //cocobiz
  1325. U.MD.D.I.cocobizteacherDeskIcon = [
  1326. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1327. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1328. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1329. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1330. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1332. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1333. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1334. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1335. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1336. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1337. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1338. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1339. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1343. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1344. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1347. ];
  1348. //cocobiz
  1349. U.MD.D.I.cocobizStudentDeskIcon = [
  1350. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1355. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1356. ];
  1357. //xxzjky
  1358. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1359. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1360. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1361. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1362. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1363. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1364. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1365. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1366. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1369. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1370. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1371. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1372. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1379. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1380. ];
  1381. //xxzjky
  1382. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //nsfx
  1391. U.MD.D.I.nsfxTeacherDeskIcon = [
  1392. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1400. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1401. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1402. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1403. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1404. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1407. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1408. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1409. ];
  1410. //nsfx
  1411. U.MD.D.I.nsfxStudentDeskIcon = [
  1412. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. ];
  1417. //stia
  1418. U.MD.D.I.stiaTeacherDeskIcon = [
  1419. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1420. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1422. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1423. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1424. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1425. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1429. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1430. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1431. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1432. ];
  1433. //stia
  1434. U.MD.D.I.stiaStudentDeskIcon = [
  1435. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //#region 桌面初始化a
  1441. /**
  1442. * 初始化桌面的起始函数
  1443. *
  1444. */
  1445. U.MD.D.I.init = function () {
  1446. if ($("#U_MD_D_K")[0]) {
  1447. //初始化桌面图标
  1448. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1449. // var clickUrl = ':12588/requestIp.php';
  1450. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1451. // U.MD.D.I.Ip = data;
  1452. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1453. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1454. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1455. // })
  1456. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1457. // })
  1458. }
  1459. }
  1460. /**
  1461. * 模式切换
  1462. *
  1463. */
  1464. U.MD.D.I.ModeCheck = function (type) {
  1465. if (US.Config.type == type) {
  1466. return
  1467. }
  1468. US.Config.type = type
  1469. $('.U_PBL_Check .active')[0].className = ''
  1470. if (type == 1) {
  1471. $('.U_PBL_Check div')[0].className = 'active'
  1472. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1473. } else {
  1474. $('.U_PBL_Check div')[1].className = 'active'
  1475. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1476. }
  1477. //初始化桌面图标
  1478. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1479. if (type == 2) {
  1480. U.MD.D.I.openApplication("project")
  1481. }
  1482. }
  1483. /**
  1484. * 隐藏任务栏
  1485. *
  1486. * @param {element} 桌面元素
  1487. */
  1488. U.MD.D.I.hiddenTaskbar = function (el) {
  1489. //任务栏位置变小
  1490. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1491. //桌面的位置变大
  1492. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1493. }
  1494. /**
  1495. * 隐藏任务栏
  1496. *
  1497. * @param {element} 桌面元素
  1498. */
  1499. U.MD.D.I.hiddenTaskbarout = function (el) {
  1500. //任务栏位置变小
  1501. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1502. //任务栏位置变化
  1503. U.selectEl(el).css({ "bottom": "-60px" });
  1504. //桌面的位置变大
  1505. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1506. }
  1507. }
  1508. /**
  1509. * 初始化打印桌面图标
  1510. *
  1511. * @param {element} 桌面元素
  1512. */
  1513. U.MD.D.I.initDesktopIcons = function (el, type) {
  1514. var i, //用于循环
  1515. _content, //桌面图标元素
  1516. _iconcontent, //桌面图标元素
  1517. _frag = $$("frag"), //定义一个碎片元素
  1518. _type = US.userInfo.type,
  1519. _org = US.userInfo.org,
  1520. _oid = US.userInfo.organizeid,
  1521. _role = US.userInfo.role,
  1522. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1523. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1524. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1525. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1526. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1527. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1528. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1529. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1530. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1531. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1532. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1533. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1534. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1535. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1536. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1537. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1538. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1539. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1540. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1541. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1542. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1543. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1544. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1545. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1546. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1547. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1548. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1549. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1550. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1551. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1552. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1553. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1554. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1555. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1556. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1557. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1558. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1559. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1560. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1561. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1562. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1563. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1564. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1565. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1566. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1567. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1568. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1569. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1570. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1571. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1572. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1573. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1574. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1575. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1576. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1577. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1578. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1579. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1580. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1581. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1582. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1583. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1584. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1585. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1586. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1587. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1588. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1589. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1590. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1591. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1592. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1593. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1594. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1595. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1596. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //nsfx
  1597. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //nsfx
  1598. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1599. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1600. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1601. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1602. 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'];
  1603. 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'];
  1604. //清楚桌面图标
  1605. el.innerHTML = "";
  1606. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1607. _teacherDesktopIconInfo.push(
  1608. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1609. { "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)" } },
  1610. )
  1611. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1612. }
  1613. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1614. _teacherDesktopIconInfo.push(
  1615. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1616. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1617. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1619. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1620. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1621. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1622. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1623. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1624. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1625. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1628. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1629. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1630. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1631. )
  1632. }
  1633. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1634. _teacherDesktopIconInfo.push(
  1635. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1636. )
  1637. }
  1638. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1639. // _teacherDesktopIconInfo.push(
  1640. // )
  1641. // }
  1642. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1643. _teacherDesktopIconInfo.push(
  1644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1646. )
  1647. }
  1648. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1649. _teacherDesktopIconInfo.push(
  1650. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1653. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1654. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1655. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1656. )
  1657. _studentDesktopIconInfo.push(
  1658. )
  1659. }
  1660. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1661. _teacherDesktopIconInfo.push(
  1662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1663. )
  1664. _studentDesktopIconInfo.push(
  1665. )
  1666. }
  1667. //010606 组织
  1668. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1669. _teacherDesktopIconInfo.push(
  1670. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1671. )
  1672. _studentDesktopIconInfo.push(
  1673. )
  1674. }
  1675. //麒麟二中 和 民新小学
  1676. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1677. _teacherDesktopIconInfo.push(
  1678. )
  1679. }
  1680. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1681. _teacherDesktopIconInfo.push(
  1682. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. )
  1686. }
  1687. //北师大附中(010601)
  1688. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1689. _teacherDesktopIconInfo.push(
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. )
  1692. _studentDesktopIconInfo.push(
  1693. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1694. )
  1695. }
  1696. //樂善堂余近卿中學
  1697. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1698. _teacherDesktopIconInfo.push(
  1699. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1700. )
  1701. }
  1702. // Education Artificial Intelligence
  1703. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1704. _teacherDesktopIconInfo.push(
  1705. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1706. )
  1707. }
  1708. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1709. _teacherDesktopIconInfo.push(
  1710. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1711. )
  1712. }
  1713. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1714. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1715. _teacherDesktopIconInfo.push(
  1716. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1717. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1718. )
  1719. }
  1720. //麒麟二中
  1721. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1722. _studentDesktopIconInfo.push(
  1723. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1724. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1725. )
  1726. }
  1727. //万科双语
  1728. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1729. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1730. if (el.Name == '项目管理') {
  1731. el.Name = 'PBL项目'
  1732. }
  1733. return el
  1734. })
  1735. _studentDesktopIconInfo3.push(
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. )
  1738. }
  1739. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1740. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1741. return el.Name != '魔盒识字' && el.Name != '24点'
  1742. })
  1743. }
  1744. 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) {
  1745. _studentDesktopIconInfo.push(
  1746. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1748. )
  1749. }
  1750. //循环创建桌面图标
  1751. if (type == 1) {
  1752. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1753. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1754. _content = $$("div", {
  1755. className: "U_MD_D_KO",
  1756. "onmousedown": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_studentDesktopIconInfo[i]]),
  1760. "onclick": U.UF.C.closure(function (obj) {
  1761. //防止拖动图标即打开了桌面应用
  1762. U.MD.D.click(this, obj);
  1763. }, [_studentDesktopIconInfo[i]])
  1764. }, _frag); //
  1765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1768. }
  1769. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1770. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1771. _content = $$("div", {
  1772. className: "U_MD_D_KO",
  1773. "onmousedown": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1777. "onclick": U.UF.C.closure(function (obj) {
  1778. //防止拖动图标即打开了桌面应用
  1779. U.MD.D.click(this, obj);
  1780. }, [_hkZJLSStudentDeskIconInfo[i]])
  1781. }, _frag); //
  1782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1785. } //
  1786. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1787. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1788. _content = $$("div", {
  1789. className: "U_MD_D_KO",
  1790. "onmousedown": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_ytyStudentDeskIconInfo[i]]),
  1794. "onclick": U.UF.C.closure(function (obj) {
  1795. //防止拖动图标即打开了桌面应用
  1796. U.MD.D.click(this, obj);
  1797. }, [_ytyStudentDeskIconInfo[i]])
  1798. }, _frag); //
  1799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1802. } //
  1803. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1804. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1805. _content = $$("div", {
  1806. className: "U_MD_D_KO",
  1807. "onmousedown": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_jccssylStudentDeskIconInfo[i]]),
  1811. "onclick": U.UF.C.closure(function (obj) {
  1812. //防止拖动图标即打开了桌面应用
  1813. U.MD.D.click(this, obj);
  1814. }, [_jccssylStudentDeskIconInfo[i]])
  1815. }, _frag); //
  1816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1819. }
  1820. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1821. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1822. _content = $$("div", {
  1823. className: "U_MD_D_KO",
  1824. "onmousedown": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_scnuaiStudentDeskIconInfo[i]]),
  1828. "onclick": U.UF.C.closure(function (obj) {
  1829. //防止拖动图标即打开了桌面应用
  1830. U.MD.D.click(this, obj);
  1831. }, [_scnuaiStudentDeskIconInfo[i]])
  1832. }, _frag); //
  1833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1836. }
  1837. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1838. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1839. _content = $$("div", {
  1840. className: "U_MD_D_KO",
  1841. "onmousedown": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_caleStudentDeskIconInfo[i]]),
  1845. "onclick": U.UF.C.closure(function (obj) {
  1846. //防止拖动图标即打开了桌面应用
  1847. U.MD.D.click(this, obj);
  1848. }, [_caleStudentDeskIconInfo[i]])
  1849. }, _frag); //
  1850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1853. }
  1854. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1855. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1856. _content = $$("div", {
  1857. className: "U_MD_D_KO",
  1858. "onmousedown": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_thuioeStudentDeskIconInfo[i]]),
  1862. "onclick": U.UF.C.closure(function (obj) {
  1863. //防止拖动图标即打开了桌面应用
  1864. U.MD.D.click(this, obj);
  1865. }, [_thuioeStudentDeskIconInfo[i]])
  1866. }, _frag); //
  1867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1870. }
  1871. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1872. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1873. _content = $$("div", {
  1874. className: "U_MD_D_KO",
  1875. "onmousedown": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_tpcStudentDeskIconInfo[i]]),
  1879. "onclick": U.UF.C.closure(function (obj) {
  1880. //防止拖动图标即打开了桌面应用
  1881. U.MD.D.click(this, obj);
  1882. }, [_tpcStudentDeskIconInfo[i]])
  1883. }, _frag); //
  1884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1887. } //
  1888. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1889. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1890. _content = $$("div", {
  1891. className: "U_MD_D_KO",
  1892. "onmousedown": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_chjyjStudentDeskIconInfo[i]]),
  1896. "onclick": U.UF.C.closure(function (obj) {
  1897. //防止拖动图标即打开了桌面应用
  1898. U.MD.D.click(this, obj);
  1899. }, [_chjyjStudentDeskIconInfo[i]])
  1900. }, _frag); //
  1901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1904. }
  1905. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1906. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1907. _content = $$("div", {
  1908. className: "U_MD_D_KO",
  1909. "onmousedown": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_szjkyStudentDeskIconInfo[i]]),
  1913. "onclick": U.UF.C.closure(function (obj) {
  1914. //防止拖动图标即打开了桌面应用
  1915. U.MD.D.click(this, obj);
  1916. }, [_szjkyStudentDeskIconInfo[i]])
  1917. }, _frag); //
  1918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1921. }
  1922. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1923. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1924. _content = $$("div", {
  1925. className: "U_MD_D_KO",
  1926. "onmousedown": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_dseiStudentDeskIconInfo[i]]),
  1930. "onclick": U.UF.C.closure(function (obj) {
  1931. //防止拖动图标即打开了桌面应用
  1932. U.MD.D.click(this, obj);
  1933. }, [_dseiStudentDeskIconInfo[i]])
  1934. }, _frag); //
  1935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1938. }
  1939. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1940. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1941. _content = $$("div", {
  1942. className: "U_MD_D_KO",
  1943. "onmousedown": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1947. "onclick": U.UF.C.closure(function (obj) {
  1948. //防止拖动图标即打开了桌面应用
  1949. U.MD.D.click(this, obj);
  1950. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1951. }, _frag); //
  1952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1955. }
  1956. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1957. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1958. _content = $$("div", {
  1959. className: "U_MD_D_KO",
  1960. "onmousedown": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_nsfxStudentDeskIconInfo[i]]),
  1964. "onclick": U.UF.C.closure(function (obj) {
  1965. //防止拖动图标即打开了桌面应用
  1966. U.MD.D.click(this, obj);
  1967. }, [_nsfxStudentDeskIconInfo[i]])
  1968. }, _frag); //
  1969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1972. }
  1973. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  1974. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  1975. _content = $$("div", {
  1976. className: "U_MD_D_KO",
  1977. "onmousedown": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_stiaStudentDeskIconInfo[i]]),
  1981. "onclick": U.UF.C.closure(function (obj) {
  1982. //防止拖动图标即打开了桌面应用
  1983. U.MD.D.click(this, obj);
  1984. }, [_stiaStudentDeskIconInfo[i]])
  1985. }, _frag); //
  1986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  1988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  1989. }
  1990. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1991. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1992. _content = $$("div", {
  1993. className: "U_MD_D_KO",
  1994. "onmousedown": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_siesStudentDeskIconInfo[i]]),
  1998. "onclick": U.UF.C.closure(function (obj) {
  1999. //防止拖动图标即打开了桌面应用
  2000. U.MD.D.click(this, obj);
  2001. }, [_siesStudentDeskIconInfo[i]])
  2002. }, _frag); //
  2003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2006. }
  2007. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2008. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2009. _content = $$("div", {
  2010. className: "U_MD_D_KO",
  2011. "onmousedown": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_guzmsStudentDeskIconInfo[i]]),
  2015. "onclick": U.UF.C.closure(function (obj) {
  2016. //防止拖动图标即打开了桌面应用
  2017. U.MD.D.click(this, obj);
  2018. }, [_guzmsStudentDeskIconInfo[i]])
  2019. }, _frag); //
  2020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2023. }
  2024. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2025. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2026. _content = $$("div", {
  2027. className: "U_MD_D_KO",
  2028. "onmousedown": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_hkStudentDeskIconInfo[i]]),
  2032. "onclick": U.UF.C.closure(function (obj) {
  2033. //防止拖动图标即打开了桌面应用
  2034. U.MD.D.click(this, obj);
  2035. }, [_hkStudentDeskIconInfo[i]])
  2036. }, _frag); //
  2037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2040. }
  2041. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2042. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2043. _content = $$("div", {
  2044. className: "U_MD_D_KO",
  2045. "onmousedown": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_hkaceStudentDeskIconInfo[i]]),
  2049. "onclick": U.UF.C.closure(function (obj) {
  2050. //防止拖动图标即打开了桌面应用
  2051. U.MD.D.click(this, obj);
  2052. }, [_hkaceStudentDeskIconInfo[i]])
  2053. }, _frag); //
  2054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2057. }
  2058. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2059. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2060. _content = $$("div", {
  2061. className: "U_MD_D_KO",
  2062. "onmousedown": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_cocobizStudentDeskIconInfo[i]]),
  2066. "onclick": U.UF.C.closure(function (obj) {
  2067. //防止拖动图标即打开了桌面应用
  2068. U.MD.D.click(this, obj);
  2069. }, [_cocobizStudentDeskIconInfo[i]])
  2070. }, _frag); //
  2071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2074. }
  2075. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2076. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2077. _content = $$("div", {
  2078. className: "U_MD_D_KO",
  2079. "onmousedown": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2083. "onclick": U.UF.C.closure(function (obj) {
  2084. //防止拖动图标即打开了桌面应用
  2085. U.MD.D.click(this, obj);
  2086. }, [_xxzjkyStudentDeskIconInfo[i]])
  2087. }, _frag); //
  2088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2091. }
  2092. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2093. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2094. _content = $$("div", {
  2095. className: "U_MD_D_KO",
  2096. "onmousedown": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_studentDesktopIconInfo[i]]),
  2100. "onclick": U.UF.C.closure(function (obj) {
  2101. //防止拖动图标即打开了桌面应用
  2102. U.MD.D.click(this, obj);
  2103. }, [_studentDesktopIconInfo[i]])
  2104. }, _frag); //
  2105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2108. }
  2109. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2110. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2111. _content = $$("div", {
  2112. className: "U_MD_D_KO",
  2113. "onmousedown": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_tcStudentDeskIconInfo[i]]),
  2117. "onclick": U.UF.C.closure(function (obj) {
  2118. //防止拖动图标即打开了桌面应用
  2119. U.MD.D.click(this, obj);
  2120. }, [_tcStudentDeskIconInfo[i]])
  2121. }, _frag); //
  2122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2125. }
  2126. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2127. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2128. _content = $$("div", {
  2129. className: "U_MD_D_KO",
  2130. "onmousedown": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_szscStudentDeskIconInfo[i]]),
  2134. "onclick": U.UF.C.closure(function (obj) {
  2135. //防止拖动图标即打开了桌面应用
  2136. U.MD.D.click(this, obj);
  2137. }, [_szscStudentDeskIconInfo[i]])
  2138. }, _frag); //
  2139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2142. }
  2143. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2144. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2145. _content = $$("div", {
  2146. className: "U_MD_D_KO",
  2147. "onmousedown": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_studentDesktopIconInfo3[i]]),
  2151. "onclick": U.UF.C.closure(function (obj) {
  2152. //防止拖动图标即打开了桌面应用
  2153. U.MD.D.click(this, obj);
  2154. }, [_studentDesktopIconInfo3[i]])
  2155. }, _frag); //
  2156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2159. }
  2160. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2161. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2162. _content = $$("div", {
  2163. className: "U_MD_D_KO",
  2164. "onmousedown": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_studentDesktopIconInfo2[i]]),
  2168. "onclick": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_studentDesktopIconInfo2[i]])
  2172. }, _frag); //
  2173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2176. }
  2177. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2178. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2179. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2180. continue
  2181. }
  2182. _content = $$("div", {
  2183. className: "U_MD_D_KO",
  2184. "onmousedown": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_wanketeacherDesktopIconInfo[i]]),
  2188. "onclick": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_wanketeacherDesktopIconInfo[i]])
  2192. }, _frag); //
  2193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2196. }
  2197. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2198. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_wankeAdminDesktopIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_wankeAdminDesktopIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2215. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2216. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2217. continue
  2218. }
  2219. _content = $$("div", {
  2220. className: "U_MD_D_KO",
  2221. "onmousedown": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2225. "onclick": U.UF.C.closure(function (obj) {
  2226. //防止拖动图标即打开了桌面应用
  2227. U.MD.D.click(this, obj);
  2228. }, [_scnuaiTeacherDeskIconInfo[i]])
  2229. }, _frag); //
  2230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2233. }
  2234. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2235. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2236. _content = $$("div", {
  2237. className: "U_MD_D_KO",
  2238. "onmousedown": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_scnuaiAdminDeskIconInfo[i]]),
  2242. "onclick": U.UF.C.closure(function (obj) {
  2243. //防止拖动图标即打开了桌面应用
  2244. U.MD.D.click(this, obj);
  2245. }, [_scnuaiAdminDeskIconInfo[i]])
  2246. }, _frag); //
  2247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2250. }
  2251. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2252. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2253. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2254. continue
  2255. }
  2256. _content = $$("div", {
  2257. className: "U_MD_D_KO",
  2258. "onmousedown": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_jccssylTeacherDeskIconInfo[i]]),
  2262. "onclick": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_jccssylTeacherDeskIconInfo[i]])
  2266. }, _frag); //
  2267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2270. }
  2271. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2272. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2273. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2274. continue
  2275. }
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_caleTeacherDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_caleTeacherDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2292. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_tpcOrganizerDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_tpcOrganizerDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2309. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2310. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2311. continue
  2312. }
  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. }, [_tpcTeacherDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_tpcTeacherDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2329. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2330. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2331. continue
  2332. }
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_teacherDesktopIconInfo2[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_teacherDesktopIconInfo2[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2347. }
  2348. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2349. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2350. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2351. continue
  2352. }
  2353. _content = $$("div", {
  2354. className: "U_MD_D_KO",
  2355. "onmousedown": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_thuioeTeacherDeskIconInfo[i]]),
  2359. "onclick": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_thuioeTeacherDeskIconInfo[i]])
  2363. }, _frag); //
  2364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2367. }
  2368. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2369. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2370. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2371. continue
  2372. }
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_lotechTeacherDeskIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_lotechTeacherDeskIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2387. }//
  2388. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2389. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2390. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2391. continue
  2392. }
  2393. _content = $$("div", {
  2394. className: "U_MD_D_KO",
  2395. "onmousedown": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2399. "onclick": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2403. }, _frag); //
  2404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2407. }
  2408. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2409. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2410. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2411. continue
  2412. }
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_siesTeacherDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_siesTeacherDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2429. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2430. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2431. continue
  2432. }
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_guzmsTeacherDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_guzmsTeacherDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2447. }
  2448. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2449. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2450. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2451. continue
  2452. }
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_longhuaTeacherDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_longhuaTeacherDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2469. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2470. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2471. continue
  2472. }
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_ytyTeacherDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_ytyTeacherDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2489. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2490. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2491. continue
  2492. }
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_yunhaiTeacherDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2507. } //_hkStudentDeskIconInfo
  2508. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2509. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2510. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2511. continue
  2512. }
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2529. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2530. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2531. continue
  2532. }
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_hkTeacherDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_hkTeacherDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2549. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2550. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2551. continue
  2552. }
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_hkaceTeacherDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_hkaceTeacherDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2569. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2570. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2571. continue
  2572. }
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_cocobizTeacherDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_cocobizTeacherDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2589. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2590. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2591. continue
  2592. }
  2593. _content = $$("div", {
  2594. className: "U_MD_D_KO",
  2595. "onmousedown": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2599. "onclick": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2603. }, _frag); //
  2604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2607. }
  2608. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2609. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2610. _content = $$("div", {
  2611. className: "U_MD_D_KO",
  2612. "onmousedown": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_gdjgAdminDeskIconInfo[i]]),
  2616. "onclick": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_gdjgAdminDeskIconInfo[i]])
  2620. }, _frag); //
  2621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2624. }
  2625. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2626. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2627. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2628. continue
  2629. }
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_gdjgTeacherDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_gdjgTeacherDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2646. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2647. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2648. continue
  2649. }
  2650. _content = $$("div", {
  2651. className: "U_MD_D_KO",
  2652. "onmousedown": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_szherTeacherDeskIconInfo[i]]),
  2656. "onclick": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_szherTeacherDeskIconInfo[i]])
  2660. }, _frag); //
  2661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2664. }
  2665. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2666. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_heyuannAdminDeskIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_heyuannAdminDeskIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2681. }
  2682. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2683. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2684. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2685. continue
  2686. }
  2687. _content = $$("div", {
  2688. className: "U_MD_D_KO",
  2689. "onmousedown": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_heyuanTeacherDeskIconInfo[i]]),
  2693. "onclick": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_heyuanTeacherDeskIconInfo[i]])
  2697. }, _frag); //
  2698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2701. } //
  2702. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2703. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2704. _content = $$("div", {
  2705. className: "U_MD_D_KO",
  2706. "onmousedown": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_dseiAdminDeskIconInfo[i]]),
  2710. "onclick": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_dseiAdminDeskIconInfo[i]])
  2714. }, _frag); //
  2715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2718. }
  2719. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2720. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2721. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2722. continue
  2723. }
  2724. _content = $$("div", {
  2725. className: "U_MD_D_KO",
  2726. "onmousedown": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_dseiTeacherDeskIconInfo[i]]),
  2730. "onclick": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_dseiTeacherDeskIconInfo[i]])
  2734. }, _frag); //
  2735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2738. } //
  2739. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2740. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2741. _content = $$("div", {
  2742. className: "U_MD_D_KO",
  2743. "onmousedown": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_chjyjAdminDeskIconInfo[i]]),
  2747. "onclick": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_chjyjAdminDeskIconInfo[i]])
  2751. }, _frag); //
  2752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2755. }//
  2756. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2757. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2758. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2759. continue
  2760. }
  2761. _content = $$("div", {
  2762. className: "U_MD_D_KO",
  2763. "onmousedown": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_chjyjTeacherDeskIconInfo[i]]),
  2767. "onclick": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_chjyjTeacherDeskIconInfo[i]])
  2771. }, _frag); //
  2772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2775. }
  2776. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2777. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_szjkyAdminDeskIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_szjkyAdminDeskIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2792. }//
  2793. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2794. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2795. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2796. continue
  2797. }
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_szjkyTeacherDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_szjkyTeacherDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2814. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_futianAdminDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_futianAdminDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2831. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2832. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2833. continue
  2834. }
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_futianTeacherDeskIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_futianTeacherDeskIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2851. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2852. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2853. continue
  2854. }
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_MingdeTeacherDeskIcon[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_MingdeTeacherDeskIcon[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2869. }
  2870. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2871. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2872. _content = $$("div", {
  2873. className: "U_MD_D_KO",
  2874. "onmousedown": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_lhsAdminDesktopIconInfo[i]]),
  2878. "onclick": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_lhsAdminDesktopIconInfo[i]])
  2882. }, _frag); //
  2883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2886. }
  2887. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2888. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2889. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2890. continue
  2891. }
  2892. _content = $$("div", {
  2893. className: "U_MD_D_KO",
  2894. "onmousedown": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_lhsteacherDesktopIconInfo[i]]),
  2898. "onclick": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_lhsteacherDesktopIconInfo[i]])
  2902. }, _frag); //
  2903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2906. }
  2907. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2908. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2909. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2910. continue
  2911. }
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_zhoujiateacherDesktopIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2928. for (i = 0; i < _hanDeskIcon.length; i++) {
  2929. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2930. continue
  2931. }
  2932. _content = $$("div", {
  2933. className: "U_MD_D_KO",
  2934. "onmousedown": U.UF.C.closure(function (obj) {
  2935. //防止拖动图标即打开了桌面应用
  2936. U.MD.D.click(this, obj);
  2937. }, [_hanDeskIcon[i]]),
  2938. "onclick": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_hanDeskIcon[i]])
  2942. }, _frag); //
  2943. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2944. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2945. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2946. }
  2947. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2948. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2949. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2950. continue
  2951. }
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_orgStemDeskIcon[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_orgStemDeskIcon[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2966. }
  2967. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2968. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2969. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2970. continue
  2971. }
  2972. _content = $$("div", {
  2973. className: "U_MD_D_KO",
  2974. "onmousedown": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_szulsDeskIcon[i]]),
  2978. "onclick": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_szulsDeskIcon[i]])
  2982. }, _frag); //
  2983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2986. }
  2987. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2988. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2989. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2990. continue
  2991. }
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_orgDesktopIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_orgDesktopIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3008. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3009. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3010. continue
  3011. }
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_schoolDesktopIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_schoolDesktopIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3028. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3029. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_GMteacherDesktopIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_GMteacherDesktopIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3048. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3049. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_SONGteacherDesktopIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_SONGteacherDesktopIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3068. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3069. _content = $$("div", {
  3070. className: "U_MD_D_KO",
  3071. "onmousedown": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_GMstudentDesktopIconInfo[i]]),
  3075. "onclick": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_GMstudentDesktopIconInfo[i]])
  3079. }, _frag); //
  3080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3083. }
  3084. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3085. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3086. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3087. continue
  3088. }
  3089. _content = $$("div", {
  3090. className: "U_MD_D_KO",
  3091. "onmousedown": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_tcTeacherDeskIconInfo[i]]),
  3095. "onclick": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_tcTeacherDeskIconInfo[i]])
  3099. }, _frag); //
  3100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3103. }
  3104. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3105. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3106. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3107. continue
  3108. }
  3109. _content = $$("div", {
  3110. className: "U_MD_D_KO",
  3111. "onmousedown": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_tcOrganizerDeskIconInfo[i]]),
  3115. "onclick": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_tcOrganizerDeskIconInfo[i]])
  3119. }, _frag); //
  3120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3123. }
  3124. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3125. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3126. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3127. continue
  3128. }
  3129. _content = $$("div", {
  3130. className: "U_MD_D_KO",
  3131. "onmousedown": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_szscTeacherDeskIconInfo[i]]),
  3135. "onclick": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_szscTeacherDeskIconInfo[i]])
  3139. }, _frag); //
  3140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3143. }
  3144. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3145. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3146. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3147. continue
  3148. }
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. "onmousedown": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_szscOrganizerDeskIconInfo[i]]),
  3155. "onclick": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_szscOrganizerDeskIconInfo[i]])
  3159. }, _frag); //
  3160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3163. }
  3164. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3165. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3166. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3167. continue
  3168. }
  3169. _content = $$("div", {
  3170. className: "U_MD_D_KO",
  3171. "onmousedown": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_nsfxTeacherDeskIconInfo[i]]),
  3175. "onclick": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_nsfxTeacherDeskIconInfo[i]])
  3179. }, _frag); //
  3180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3183. }
  3184. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3185. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3186. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3187. continue
  3188. }
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_stiaTeacherDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_stiaTeacherDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else {
  3205. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3206. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_teacherDesktopIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_teacherDesktopIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. }
  3225. } else {
  3226. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. style: { 'width': '124px', 'height': '145px' },
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_easyDesktopIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_easyDesktopIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3242. }
  3243. }
  3244. if (type == 1) {
  3245. //加载好后给图标定位
  3246. U.MD.D.iconPostion($(_frag).Child());
  3247. } else {
  3248. //加载好后给图标定位
  3249. U.MD.D.iconPostion2($(_frag).Child());
  3250. }
  3251. //把图标加载到页面
  3252. el.appendChild(_frag);
  3253. }
  3254. /**
  3255. * 显示任务栏
  3256. *
  3257. * @param {element} 桌面元素
  3258. */
  3259. U.MD.D.I.displayTaskbar = function (el) {
  3260. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3261. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3262. //任务栏位置变化
  3263. U.selectEl(el).css({ "bottom": "0px" });
  3264. //桌面位置变话
  3265. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3266. }
  3267. }
  3268. //#region 桌面图标拖动逻辑
  3269. /**
  3270. * 桌面排列图标
  3271. *
  3272. * @param {element} 桌面元素
  3273. * @param {object} 上下相距的距离
  3274. * @param {object} 左右相距的距离
  3275. * @return {object} 命名空间
  3276. */
  3277. U.MD.D.iconPostion = function (childs, top, left) {
  3278. var i; //用于循环处理
  3279. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3280. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3281. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3282. for (i = 0; i < childs.length; i++) {
  3283. //如果竖排top超过了范围处理
  3284. if (top + 95 > US.height - 10) {
  3285. //left超过了页面范围处理,则向上重叠打印处理
  3286. if ((left + 180) > US.width) {
  3287. top -= 110;
  3288. left -= 90;
  3289. }
  3290. //没有超过范围,那么left+90添加到下一个竖排打印
  3291. else {
  3292. left += 90;
  3293. top = 15;
  3294. };
  3295. }
  3296. //给图标的位置赋值
  3297. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3298. if (i < childs.length - 1) {
  3299. //页面图标每次向下加95
  3300. top += 95;
  3301. }
  3302. }
  3303. //返回最后调用的图标的位置
  3304. return [top, left];
  3305. }
  3306. /**
  3307. * 桌面排列图标
  3308. *
  3309. * @param {element} 桌面元素
  3310. * @param {object} 上下相距的距离
  3311. * @param {object} 左右相距的距离
  3312. * @return {object} 命名空间
  3313. */
  3314. U.MD.D.iconPostion2 = function (childs, top, left) {
  3315. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3316. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3317. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3318. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3319. for (i = 0; i < childs.length; i++) {
  3320. //如果竖排top超过了范围处理
  3321. if (left + 150 > US.width - 10) {
  3322. //left超过了页面范围处理,则向上重叠打印处理
  3323. if ((top + 180) > US.Height) {
  3324. top -= 150;
  3325. left -= 150;
  3326. }
  3327. //没有超过范围,那么left+90添加到下一个竖排打印
  3328. else {
  3329. top += 150;
  3330. left = ol;
  3331. };
  3332. }
  3333. //给图标的位置赋值
  3334. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3335. if (i < childs.length - 1) {
  3336. //页面图标每次向下加95
  3337. left += 150;
  3338. }
  3339. }
  3340. //返回最后调用的图标的位置
  3341. return [top, left];
  3342. }
  3343. /**
  3344. * 桌面点击事件逻辑
  3345. *
  3346. * @param {element} 桌面元素
  3347. * @param {object} 上下相距的距离
  3348. * @param {object} 左右相距的距离
  3349. * @return {object} 命名空间
  3350. */
  3351. U.MD.D.click = function (el, obj) {
  3352. var _buttonnumber = event.button; //点击的按钮的事件值
  3353. var _userinfo = US.userInfo;
  3354. U.UF.EV.stopBubble(); //阻止向上冒泡
  3355. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3356. if (_buttonnumber < 2) {
  3357. //如果是click事件的处理
  3358. if (event.type == "click") {
  3359. //如果元素在mousemove事件中没有移动则出发click事件
  3360. if (!U.MD.D.I.IsDrag) {
  3361. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3362. U.alert("请先登录您的账号!");
  3363. setTimeout(() => {
  3364. U.MD.U.L.login();
  3365. }, 2000);
  3366. } else {
  3367. //打开应用处理
  3368. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3369. }
  3370. }
  3371. }
  3372. //如果是mouse事件的处理
  3373. else {
  3374. if (US.Config.type == '1') {
  3375. //拖动处理,添加拖动和拖动结束事件
  3376. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3377. }
  3378. }
  3379. U.MD.D.I.IsDrag = false;
  3380. }
  3381. }
  3382. /**
  3383. * 拖动的处理
  3384. *
  3385. */
  3386. U.MD.D.iconMove = function () {
  3387. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3388. U.MD.D.I.IsDrag = true;
  3389. }
  3390. /**
  3391. * 拖动结束后,这里是定位处理,以网状的形式定位
  3392. *
  3393. * @param {element} 拖动的元素
  3394. * @return {object} 命名空间
  3395. */
  3396. U.MD.D.iconUp = function (el) {
  3397. var _top = 15,
  3398. _left = 20,
  3399. _margin,
  3400. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3401. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3402. if (_positioninfo["OT"] > 15) {
  3403. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3404. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3405. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3406. }
  3407. if (_positioninfo["OL"] > 20) {
  3408. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3409. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3410. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3411. }
  3412. //while循环判断么一个重叠的元素
  3413. do {
  3414. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3415. _top = _positioninfo[0] + 95; //得到定位后的top
  3416. _left = _positioninfo[1]; //得到定位后的left
  3417. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3418. }
  3419. /**
  3420. * 判断拖动后图标是否重叠
  3421. *
  3422. * @param {element} 拖动的元素
  3423. * @param {element} 桌面所有的元素
  3424. * @param {array} 拖动元素的位置
  3425. ----------[0] 上 top
  3426. ----------[1] 左 left
  3427. * @return {object} 命名空间
  3428. */
  3429. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3430. //循环所有的图标
  3431. for (var i = 0; i < childs.length; i++) {
  3432. //判断有没有和该图标诶子重叠的元素
  3433. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3434. return childs[i]; //如果有返回
  3435. }
  3436. }
  3437. }
  3438. //#endregion
  3439. //#endregion
  3440. //#region 桌面应用
  3441. /**
  3442. * 打开应用
  3443. *
  3444. * @param {string} 类型
  3445. -----------------Disk 网盘系统
  3446. -----------------PDisk 学习系统网盘
  3447. -----------------Poto 图片
  3448. -----------------Video 视频
  3449. -----------------Music 音乐
  3450. -----------------Word word
  3451. -----------------Excel excel
  3452. -----------------Txt 记事本
  3453. -----------------PB 学习系统
  3454. -----------------Blog 朋友圈系统
  3455. -----------------FTP ftp系统
  3456. -----------------Group 好友群
  3457. -----------------SY 首页系统
  3458. -----------------Set 个人设置
  3459. -----------------XSet 系统设置
  3460. -----------------App 我们所有的app
  3461. -----------------BC c.1473.cn 平台
  3462. -----------------CWeb d.1473.cn 变成平台
  3463. -----------------其他的外联系统 我们统一用iframe打开
  3464. * @param {array} 类型
  3465. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3466. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3467. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3468. 如果第一个参数为其他,则无第二个参数
  3469. * @returns {array}
  3470. */
  3471. window.addEventListener('message', function (e) { // 监听 message 事件
  3472. // alert(e.data.type);
  3473. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3474. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3475. //3是展示全部阶段 2学生 1老师 4专家
  3476. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3477. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3478. //3是展示全部阶段 2学生 1老师 4专家
  3479. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3480. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3481. //3是展示全部阶段 2学生 1老师 4专家
  3482. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3483. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3484. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3485. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3486. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3487. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3488. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3489. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3490. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3491. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3492. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3493. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3494. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3495. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3496. //3是展示全部阶段 2学生 1老师 4专家
  3497. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3498. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3499. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3500. U.MD.D.I.selectUser();
  3501. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3502. var _formel = document.getElementById("study");
  3503. U.UF.F.windowZooming(_formel);
  3504. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3505. var _formel = document.getElementById("studyDetail");
  3506. U.UF.F.windowZooming(_formel);
  3507. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3508. var _formel = document.getElementById("studyDetail");
  3509. U.UF.F.windowZooming(_formel);
  3510. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3511. var _formel = document.getElementById("studentStudy");
  3512. U.UF.F.windowZooming(_formel);
  3513. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3514. // var _formel = document.getElementById("study");
  3515. //如果最大化了,那么就把他缩小
  3516. // if (_formel.ismaximize) {
  3517. // return;
  3518. // }
  3519. // U.UF.F.windowZooming(_formel);
  3520. // U.UF.F.topWindow(_formel);
  3521. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3522. // var _formel = document.getElementById("studyDetail");
  3523. //如果最大化了,那么就把他缩小
  3524. // if (_formel.ismaximize) {
  3525. // return;
  3526. // }
  3527. // U.UF.F.windowZooming(_formel);
  3528. // U.UF.F.topWindow(_formel);
  3529. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3530. // var _formel = document.getElementById("studentStudy");
  3531. // if (_formel.ismaximize) {
  3532. // return;
  3533. // }
  3534. // U.UF.F.windowZooming(_formel);
  3535. // U.UF.F.topWindow(_formel);
  3536. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3537. var _formel = document.getElementById("study");
  3538. // if (_formel.ismaximize) {
  3539. // return;
  3540. // }
  3541. // U.UF.F.windowZooming(_formel);
  3542. U.UF.F.topWindow(_formel);
  3543. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3544. var _formel = document.getElementById("studentIndex");
  3545. U.UF.F.windowZooming(_formel);
  3546. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3547. var _formel = document.getElementById("studyDetailS");
  3548. U.UF.F.windowZooming(_formel);
  3549. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3550. var _formel = document.getElementById("studioIndex");
  3551. U.UF.F.windowZooming(_formel);
  3552. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3553. var _formel = document.getElementById("studyDetailStudio");
  3554. U.UF.F.windowZooming(_formel);
  3555. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3556. var _formel = document.getElementById("studyDetailStudio");
  3557. U.UF.F.windowZooming(_formel);
  3558. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3559. var _formel = document.getElementById("studyDetailNT");
  3560. U.UF.F.windowZooming(_formel);
  3561. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3562. var _formel = document.getElementById("studyDetailS");
  3563. U.UF.F.windowZooming(_formel);
  3564. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3565. var _formel = document.getElementById("studyDetailS");
  3566. U.UF.F.topWindow(_formel);
  3567. } else if (e.data.tools && e.data.tools == "1") {
  3568. // U.MD.D.I.openApplication("whiteboard")
  3569. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3570. } else if (e.data.tools && e.data.tools == "2") {
  3571. U.MD.D.I.openApplication("note")
  3572. } else if (e.data.tools && e.data.tools == "3") {
  3573. // U.MD.D.I.openApplication("mind")
  3574. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3575. } else if (e.data.tools && e.data.tools == "4") {
  3576. U.MD.D.I.openApplication("investigation")
  3577. } else if (e.data.tools && e.data.tools == "6") {
  3578. // U.MD.D.I.openApplication("doc")
  3579. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3580. } else if (e.data.tools && e.data.tools == "7") {
  3581. // U.MD.D.I.openApplication("mindNetwork")
  3582. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3583. } else if (e.data.tools && e.data.tools == "8") {
  3584. U.MD.D.I.openApplication("library")
  3585. } else if (e.data.tools && e.data.tools == "17") {
  3586. U.MD.D.I.openApplication("stuLibrary")
  3587. } else if (e.data.tools && e.data.tools == "18") {
  3588. U.MD.D.I.openApplication("train")
  3589. } else if (e.data.tools && e.data.tools == "21") {
  3590. U.MD.D.I.openApplication("program")
  3591. } else if (e.data.tools && e.data.tools == "22") {
  3592. U.MD.D.I.openApplication("AIprogram2")
  3593. } else if (e.data.tools && e.data.tools == "23") {
  3594. U.MD.D.I.openApplication("Pythonprogram")
  3595. } else if (e.data.tools && e.data.tools == "24") {
  3596. U.MD.D.I.openApplication("AIprogram")
  3597. } else if (e.data.tools && e.data.tools == "25") {
  3598. U.MD.D.I.openApplication("sys")
  3599. } else if (e.data.tools && e.data.tools == "26") {
  3600. // U.MD.D.I.openApplication("courseDesign")
  3601. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3602. } else if (e.data.tools && e.data.tools == "31") {
  3603. U.MD.D.I.openApplication("netWorkPanel")
  3604. } else if (e.data.tools && e.data.tools == "32") {
  3605. U.MD.D.I.openApplication("codeEdit")
  3606. } else if (e.data.tools && e.data.tools == "57") {
  3607. U.MD.D.I.openApplication("CocoPi")
  3608. } else if (e.data.tools && e.data.tools == "63") {
  3609. U.MD.D.I.openApplication("Wood")
  3610. } else if (e.data.tools && e.data.tools == "58") {
  3611. U.MD.D.I.openApplication("car")
  3612. } else if (e.data.tools && e.data.tools == "59") {
  3613. U.MD.D.I.openApplication("lineSearch")
  3614. } else if (e.data.tools && e.data.tools == "60") {
  3615. U.MD.D.I.openApplication("deepLearning")
  3616. } else if (e.data.tools && e.data.tools == "61") {
  3617. U.MD.D.I.openApplication("allHistory")
  3618. } else if (e.data.tools && e.data.tools == "28") {
  3619. U.MD.D.I.openApplication("translation")
  3620. } else if (e.data.tools && e.data.tools == "37") {
  3621. U.MD.D.I.openApplication("mohe")
  3622. } else if (e.data.tools && e.data.tools == "38") {
  3623. U.MD.D.I.openApplication("24game")
  3624. } else if (e.data.tools && e.data.tools == "39") {
  3625. U.MD.D.I.openApplication("GeoGebra")
  3626. } else if (e.data.tools && e.data.tools == "43") {
  3627. U.MD.D.I.openApplication("studentEvaluate")
  3628. } else if (e.data.tools && e.data.tools == "44") {
  3629. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3630. } else if (e.data.tools && e.data.tools == "46") {
  3631. U.MD.D.I.openApplication("project")
  3632. } else if (e.data.tools && e.data.tools == "71") {
  3633. U.MD.D.I.openApplication("aigptCourse")
  3634. } else if (e.data.tools && e.data.tools == "1s") {
  3635. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3636. } else if (e.data.tools && e.data.tools == "3s") {
  3637. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3638. } else if (e.data.tools && e.data.tools == "6s") {
  3639. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3640. } else if (e.data.tools && e.data.tools == "1studio") {
  3641. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3642. } else if (e.data.tools && e.data.tools == "3studio") {
  3643. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3644. } else if (e.data.tools && e.data.tools == "6studio") {
  3645. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3646. } else if (e.data.tools && e.data.tools == "3y") {
  3647. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3648. } else if (e.data.tools && e.data.tools == "1y") {
  3649. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3650. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3651. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3652. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3653. U.MD.D.I.openApplication("AIAnalyse")
  3654. } else if (e.data.tools && e.data.tools == "1teacher") {
  3655. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3656. } else if (e.data.tools && e.data.tools == "3teacher") {
  3657. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3658. } else if (e.data.tools && e.data.tools == "7teacher") {
  3659. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3660. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3661. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3662. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3663. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3664. } else if (e.data.tools && e.data.tools == "1E") {
  3665. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3666. } else if (e.data.tools && e.data.tools == "3E") {
  3667. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3668. } else if (e.data.tools && e.data.tools == "57y") {
  3669. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3670. } else if (e.data.tools && e.data.tools == "57u") {
  3671. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3672. } else if (e.data.tools && e.data.tools == "57teacher") {
  3673. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3674. } else if (e.data.tools && e.data.tools == "64") {
  3675. U.MD.D.I.openApplication("AIChat")
  3676. } else if (e.data.tools && e.data.tools == "66") {
  3677. U.MD.D.I.openApplication("formulaEdi")
  3678. } else if (e.data.tools && e.data.tools == "67") {
  3679. U.MD.D.I.openApplication("molStr")
  3680. } else if (e.data.tools && e.data.tools == "68") {
  3681. U.MD.D.I.openApplication("timeAxis")
  3682. } else if (e.data.tools && e.data.tools == "openCourse") {
  3683. let _data = {
  3684. typea: e.data.typea || '',
  3685. typeb: e.data.typeb || '',
  3686. typed: e.data.typed || '',
  3687. }
  3688. U.MD.D.I.openInApplication("index", _data)
  3689. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3690. let _data = {
  3691. classid: e.data.classid || '',
  3692. }
  3693. U.MD.D.I.openInApplication("dataClass", _data)
  3694. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3695. let _data = {
  3696. cid: e.data.cid || '',
  3697. gid: e.data.gid || '',
  3698. }
  3699. U.MD.D.I.openInApplication("opencCscl", _data)
  3700. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3701. U.MD.D.I.openApplication("dataBoardTest")
  3702. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3703. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3704. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3705. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3706. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3707. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3708. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3709. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3710. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3711. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3712. }else if (e.data.tools && e.data.tools == "loginSz") {
  3713. U.MD.D.I.openInApplication("loginSz")
  3714. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3715. if($('#classroom_observation_board')[0]){
  3716. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3717. }
  3718. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3719. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3720. if($('#classroom_observation_ob_comment')[0]){
  3721. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3722. }
  3723. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3724. }
  3725. });
  3726. U.MD.D.I.selectUser = function () {
  3727. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3728. if (res.value[0].length > 0) {
  3729. US.userInfo = res.value[0][0];
  3730. $(".userName")[0].innerHTML = US.userInfo.username;
  3731. }
  3732. }, [], { "type": "GET", "withCredentials": true });
  3733. }
  3734. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3735. var _userinfo = US.userInfo, //登录用户信息
  3736. _userid = US.userInfo.userid, //登录用户id
  3737. _oid = _userinfo.organizeid,
  3738. _type = US.userInfo.type,
  3739. _org = US.userInfo.org,
  3740. _role = US.userInfo.role,
  3741. _classId = US.userInfo.classid;
  3742. if (_type == 4) {
  3743. tType = 4
  3744. }
  3745. switch (str) {
  3746. case "studyDetailNT": //无终端模式
  3747. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3748. setTimeout(() => {
  3749. U.MD.U.L.login();
  3750. }, 2000);
  3751. } else {
  3752. _formdiv = new U.UF.UI.form(
  3753. "课程详情",
  3754. $$("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 }), {
  3755. "id": "studyDetailNT",
  3756. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3757. "onresize": function () { }
  3758. }, {
  3759. closecallback: function () { }
  3760. }, { "style": { "height": "36px" } }).form; //创建窗体
  3761. _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); } }
  3762. break;
  3763. }
  3764. case "studyDetail":
  3765. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3766. setTimeout(() => {
  3767. U.MD.U.L.login();
  3768. }, 2000);
  3769. } else {
  3770. _formdiv = new U.UF.UI.form(
  3771. "课程详情",
  3772. $$("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 }), {
  3773. "id": "studyDetail",
  3774. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3775. "onresize": function () { }
  3776. }, {
  3777. closecallback: function () { }
  3778. }, { "style": { "height": "36px" } }).form; //创建窗体
  3779. _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); } }
  3780. break;
  3781. }
  3782. case "studyDetailTrain":
  3783. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3784. setTimeout(() => {
  3785. U.MD.U.L.login();
  3786. }, 2000);
  3787. } else {
  3788. _formdiv = new U.UF.UI.form(
  3789. "培训详情",
  3790. $$("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 }), {
  3791. "id": "studyDetailTrain",
  3792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3793. "onresize": function () { }
  3794. }, {
  3795. closecallback: function () { }
  3796. }, { "style": { "height": "36px" } }).form; //创建窗体
  3797. _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); } }
  3798. break;
  3799. }
  3800. case "studyDetailS":
  3801. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3802. setTimeout(() => {
  3803. U.MD.U.L.login();
  3804. }, 2000);
  3805. } else {
  3806. _formdiv = new U.UF.UI.form(
  3807. "项目详情",
  3808. $$("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 }), {
  3809. "id": "studyDetailS",
  3810. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3811. "onresize": function () { }
  3812. }, {
  3813. closecallback: function () { }
  3814. }, { "style": { "height": "36px" } }).form; //创建窗体
  3815. _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); } }
  3816. break;
  3817. }
  3818. case "studyDetailStudio":
  3819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3820. setTimeout(() => {
  3821. U.MD.U.L.login();
  3822. }, 2000);
  3823. } else {
  3824. _formdiv = new U.UF.UI.form(
  3825. "工作详情",
  3826. $$("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 }), {
  3827. "id": "studyDetailStudio",
  3828. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3829. "onresize": function () { }
  3830. }, {
  3831. closecallback: function () { }
  3832. }, { "style": { "height": "36px" } }).form; //创建窗体
  3833. _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); } }
  3834. break;
  3835. }
  3836. case "studyDetailS5":
  3837. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3838. setTimeout(() => {
  3839. U.MD.U.L.login();
  3840. }, 2000);
  3841. } else {
  3842. _formdiv = new U.UF.UI.form(
  3843. "项目详情",
  3844. $$("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 }), {
  3845. "id": "studyDetailS",
  3846. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3847. "onresize": function () { }
  3848. }, {
  3849. closecallback: function () { }
  3850. }, { "style": { "height": "36px" } }).form; //创建窗体
  3851. _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); } }
  3852. break;
  3853. }
  3854. case "studyDetailGM":
  3855. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3856. setTimeout(() => {
  3857. U.MD.U.L.login();
  3858. }, 2000);
  3859. } else {
  3860. _formdiv = new U.UF.UI.form(
  3861. "课程详情",
  3862. $$("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 }), {
  3863. "id": "studyDetail",
  3864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3865. "onresize": function () { }
  3866. }, {
  3867. closecallback: function () { }
  3868. }, { "style": { "height": "36px" } }).form; //创建窗体
  3869. _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); } }
  3870. break;
  3871. }
  3872. case "hanUrl":
  3873. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3874. setTimeout(() => {
  3875. U.MD.U.L.login();
  3876. }, 2000);
  3877. } else {
  3878. _formdiv = new U.UF.UI.form(
  3879. "汉字宫",
  3880. $$("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" }), {
  3881. "id": "hanUrl",
  3882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3883. "onresize": function () { }
  3884. }, {
  3885. closecallback: function () { }
  3886. }, { "style": { "height": "36px" } }).form; //创建窗体
  3887. _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); } }
  3888. break;
  3889. }
  3890. case "index":
  3891. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3892. setTimeout(() => {
  3893. U.MD.U.L.login();
  3894. }, 2000);
  3895. } else {
  3896. _formdiv = new U.UF.UI.form(
  3897. "课程中心",
  3898. $$("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 }), {
  3899. "id": "study",
  3900. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3901. "onresize": function () { }
  3902. }, {
  3903. closecallback: function () { }
  3904. }, { "style": { "height": "36px" } }).form; //创建窗体
  3905. _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); } }
  3906. break;
  3907. }
  3908. case "dataClass":
  3909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3910. setTimeout(() => {
  3911. U.MD.U.L.login();
  3912. }, 2000);
  3913. } else {
  3914. _formdiv = new U.UF.UI.form(
  3915. "数据报告",
  3916. $$("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 }), {
  3917. "id": "dataClass",
  3918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3919. "onresize": function () { }
  3920. }, {
  3921. closecallback: function () { }
  3922. }, { "style": { "height": "36px" } }).form; //创建窗体
  3923. _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); } }
  3924. break;
  3925. }
  3926. case "opencCscl":
  3927. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3928. setTimeout(() => {
  3929. U.MD.U.L.login();
  3930. }, 2000);
  3931. } else {
  3932. _formdiv = new U.UF.UI.form(
  3933. "协同建构",
  3934. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3935. "id": "futureClass",
  3936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _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); } }
  3942. break;
  3943. }
  3944. case "openCourseUpdate":
  3945. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3946. setTimeout(() => {
  3947. U.MD.U.L.login();
  3948. }, 2000);
  3949. } else {
  3950. _formdiv = new U.UF.UI.form(
  3951. "课程管理",
  3952. $$("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 }), {
  3953. "id": "openCourseUpdate",
  3954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3955. "onresize": function () { }
  3956. }, {
  3957. closecallback: function () { }
  3958. }, { "style": { "height": "36px" } }).form; //创建窗体
  3959. break;
  3960. }
  3961. case "openNewCourseUpdate":
  3962. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3963. setTimeout(() => {
  3964. U.MD.U.L.login();
  3965. }, 2000);
  3966. } else {
  3967. _formdiv = new U.UF.UI.form(
  3968. "课程管理",
  3969. $$("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 }), {
  3970. "id": "openCourseUpdate",
  3971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3972. "onresize": function () { }
  3973. }, {
  3974. closecallback: function () { }
  3975. }, { "style": { "height": "36px" } }).form; //创建窗体
  3976. break;
  3977. }
  3978. case "openCourseEUpdate":
  3979. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3980. setTimeout(() => {
  3981. U.MD.U.L.login();
  3982. }, 2000);
  3983. } else {
  3984. _formdiv = new U.UF.UI.form(
  3985. "课程管理",
  3986. $$("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 }), {
  3987. "id": "openCourseUpdate",
  3988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3989. "onresize": function () { }
  3990. }, {
  3991. closecallback: function () { }
  3992. }, { "style": { "height": "36px" } }).form; //创建窗体
  3993. break;
  3994. }
  3995. case "openCourseAiUpdate":
  3996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3997. setTimeout(() => {
  3998. U.MD.U.L.login();
  3999. }, 2000);
  4000. } else {
  4001. _formdiv = new U.UF.UI.form(
  4002. "课程管理",
  4003. $$("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 }), {
  4004. "id": "openCourseUpdate",
  4005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4006. "onresize": function () { }
  4007. }, {
  4008. closecallback: function () { }
  4009. }, { "style": { "height": "36px" } }).form; //创建窗体
  4010. break;
  4011. }
  4012. case "openCourseNewUpdate":
  4013. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4014. setTimeout(() => {
  4015. U.MD.U.L.login();
  4016. }, 2000);
  4017. } else {
  4018. _formdiv = new U.UF.UI.form(
  4019. "课程管理",
  4020. $$("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 }), {
  4021. "id": "openCourseUpdate",
  4022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4023. "onresize": function () { }
  4024. }, {
  4025. closecallback: function () { }
  4026. }, { "style": { "height": "36px" } }).form; //创建窗体
  4027. break;
  4028. }
  4029. case "inviteLoginSz":
  4030. _formdiv = new U.UF.UI.form(
  4031. "随机码登录",
  4032. $$("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 }), {
  4033. "id": "loginSz",
  4034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4035. "onresize": function () { }
  4036. }, {
  4037. closecallback: function () { }
  4038. }, { "style": { "height": "36px" } }).form; //创建窗体
  4039. break;
  4040. case "loginSz":
  4041. _formdiv = new U.UF.UI.form(
  4042. "教师登录",
  4043. $$("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" }), {
  4044. "id": "loginSz",
  4045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4046. "onresize": function () { }
  4047. }, {
  4048. closecallback: function () { }
  4049. }, { "style": { "height": "36px" } }).form; //创建窗体
  4050. break;
  4051. case "teacher":
  4052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4053. setTimeout(() => {
  4054. U.MD.U.L.login();
  4055. }, 2000);
  4056. } else {
  4057. _formdiv = new U.UF.UI.form(
  4058. "教师管理",
  4059. $$("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 }), {
  4060. "id": "teacher",
  4061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4062. "onresize": function () { }
  4063. }, {
  4064. closecallback: function () { }
  4065. }, { "style": { "height": "36px" } }).form; //创建窗体
  4066. break;
  4067. }
  4068. case "dataBoardSZArea":
  4069. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4070. setTimeout(() => {
  4071. U.MD.U.L.login();
  4072. }, 2000);
  4073. } else {
  4074. _formdiv = new U.UF.UI.form(
  4075. "综合数据看板",
  4076. $$("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 }), {
  4077. "id": "dataBoardSZArea",
  4078. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4079. "onresize": function () { }
  4080. }, {
  4081. closecallback: function () { }
  4082. }, { "style": { "height": "36px" } }).form; //创建窗体
  4083. break;
  4084. }
  4085. case "dataBoardSZCity":
  4086. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4087. setTimeout(() => {
  4088. U.MD.U.L.login();
  4089. }, 2000);
  4090. } else {
  4091. _formdiv = new U.UF.UI.form(
  4092. "综合数据看板",
  4093. $$("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 }), {
  4094. "id": "dataBoardSZCity",
  4095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4096. "onresize": function () { }
  4097. }, {
  4098. closecallback: function () { }
  4099. }, { "style": { "height": "36px" } }).form; //创建窗体
  4100. break;
  4101. }
  4102. case "classroom_observation_board":
  4103. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4104. setTimeout(() => {
  4105. U.MD.U.L.login();
  4106. }, 2000);
  4107. } else {
  4108. _formdiv = new U.UF.UI.form(
  4109. "课堂观察",
  4110. $$("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 }), {
  4111. "id": "classroom_observation_board",
  4112. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4113. "onresize": function () { }
  4114. }, {
  4115. closecallback: function () { }
  4116. }, { "style": { "height": "36px" } }).form; //创建窗体
  4117. break;
  4118. }
  4119. case "classroom_observation_ob_comment":
  4120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4121. setTimeout(() => {
  4122. U.MD.U.L.login();
  4123. }, 2000);
  4124. } else {
  4125. _formdiv = new U.UF.UI.form(
  4126. "课堂审核",
  4127. $$("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 }), {
  4128. "id": "classroom_observation_ob_comment",
  4129. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4130. "onresize": function () { }
  4131. }, {
  4132. closecallback: function () { }
  4133. }, { "style": { "height": "36px" } }).form; //创建窗体
  4134. break;
  4135. }
  4136. }
  4137. }
  4138. U.MD.D.I.openApplication = function (str, obj, info) {
  4139. obj = obj || {};
  4140. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4141. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4142. _userinfo = US.userInfo, //登录用户信息
  4143. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4144. _oid = obj.organizeid || _userinfo.organizeid,
  4145. _type = US.userInfo.type,
  4146. _org = US.userInfo.org,
  4147. _role = US.userInfo.role,
  4148. _classId = US.userInfo.classid,
  4149. _TscreenType = 1
  4150. _screenType = 2,
  4151. _SscreenType = 3;
  4152. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4153. return;
  4154. }
  4155. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4156. switch (str) {
  4157. case "studnetProject": //好友打开
  4158. _formdiv = new U.UF.UI.form(
  4159. "我的项目",
  4160. $$("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 }), {
  4161. "id": "studnetProject",
  4162. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4163. "onresize": function () { }
  4164. }, {
  4165. closecallback: function () { }
  4166. }, { "style": { "height": "36px" } }).form; //创建窗体
  4167. _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); } }
  4168. break;
  4169. case "studentEvaluate": //好友打开
  4170. _formdiv = new U.UF.UI.form(
  4171. "我的评价",
  4172. $$("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 }), {
  4173. "id": "studentEvaluate",
  4174. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4175. "onresize": function () { }
  4176. }, {
  4177. closecallback: function () { }
  4178. }, { "style": { "height": "36px" } }).form; //创建窗体
  4179. _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); } }
  4180. break;
  4181. case "my":
  4182. _formdiv = new U.UF.UI.form(
  4183. "我的资料",
  4184. $$("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 }), {
  4185. "id": "my",
  4186. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4187. "onresize": function () { }
  4188. }, {
  4189. closecallback: function () { }
  4190. }, { "style": { "height": "36px" } }).form; //创建窗体
  4191. _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); } }
  4192. break;
  4193. case "program":
  4194. _formdiv = new U.UF.UI.form(
  4195. "编程平台",
  4196. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4197. "id": "program",
  4198. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4199. "onresize": function () { }
  4200. }, {
  4201. closecallback: function () { }
  4202. }, { "style": { "height": "36px" } }).form; //创建窗体
  4203. _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); } }
  4204. break;
  4205. case "library":
  4206. _formdiv = new U.UF.UI.form(
  4207. "素材库",
  4208. $$("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 }), {
  4209. "id": "library",
  4210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4211. "onresize": function () { }
  4212. }, {
  4213. closecallback: function () { }
  4214. }, { "style": { "height": "36px" } }).form; //创建窗体
  4215. _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); } }
  4216. break;
  4217. case "whiteboard":
  4218. _formdiv = new U.UF.UI.form(
  4219. "电子白板",
  4220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4221. "id": "whiteboard",
  4222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4223. "onresize": function () { }
  4224. }, {
  4225. closecallback: function () { }
  4226. }, { "style": { "height": "36px" } }).form; //创建窗体
  4227. _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); } }
  4228. break;
  4229. case "investigation":
  4230. _formdiv = new U.UF.UI.form(
  4231. "问卷调查",
  4232. $$("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 }), {
  4233. "id": "investigation",
  4234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4235. "onresize": function () { }
  4236. }, {
  4237. closecallback: function () { }
  4238. }, { "style": { "height": "36px" } }).form; //创建窗体
  4239. _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); } }
  4240. break;
  4241. case "note":
  4242. _formdiv = new U.UF.UI.form(
  4243. "便签分类",
  4244. $$("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 }), {
  4245. "id": "note",
  4246. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4247. "onresize": function () { }
  4248. }, {
  4249. closecallback: function () { }
  4250. }, { "style": { "height": "36px" } }).form; //创建窗体
  4251. _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); } }
  4252. break;
  4253. // case "score":
  4254. // _formdiv = new U.UF.UI.form(
  4255. // "量规评分",
  4256. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4257. // "id": "score",
  4258. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4259. // "onresize": function() {}
  4260. // }, {
  4261. // closecallback: function() {}
  4262. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4263. // _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); } }
  4264. // break;
  4265. case "mind":
  4266. _formdiv = new U.UF.UI.form(
  4267. "思维导图",
  4268. $$("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"
  4269. "id": "mind",
  4270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4271. "onresize": function () { }
  4272. }, {
  4273. closecallback: function () { }
  4274. }, { "style": { "height": "36px" } }).form; //创建窗体
  4275. _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); } }
  4276. break;
  4277. case "doc":
  4278. // U.MD.D.I.isRoom();
  4279. _formdiv = new U.UF.UI.form(
  4280. "协同文档",
  4281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4282. "id": "doc",
  4283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4284. "onresize": function () { }
  4285. }, {
  4286. closecallback: function () { }
  4287. }, { "style": { "height": "36px" } }).form; //创建窗体
  4288. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4289. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4290. // })
  4291. _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); } }
  4292. break;
  4293. case "studentStudy":
  4294. _formdiv = new U.UF.UI.form(
  4295. "课程中心",
  4296. $$("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
  4297. "id": "studentStudy",
  4298. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4299. "onresize": function () { }
  4300. }, {
  4301. closecallback: function () { }
  4302. }, { "style": { "height": "36px" } }).form; //创建窗体
  4303. _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); } }
  4304. break;
  4305. case "train": //好友打开
  4306. _formdiv = new U.UF.UI.form(
  4307. "训练平台",
  4308. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4309. "id": "train",
  4310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4311. "onresize": function () { }
  4312. }, {
  4313. closecallback: function () { }
  4314. }, { "style": { "height": "36px" } }).form; //创建窗体
  4315. _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); } }
  4316. break;
  4317. case "mindNetwork": //好友打开
  4318. _formdiv = new U.UF.UI.form(
  4319. "思维网格",
  4320. $$("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 }), {
  4321. "id": "mindNetwork",
  4322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4323. "onresize": function () { }
  4324. }, {
  4325. closecallback: function () { }
  4326. }, { "style": { "height": "36px" } }).form; //创建窗体
  4327. _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); } }
  4328. break;
  4329. case "studentClassRoom": //好友打开
  4330. _formdiv = new U.UF.UI.form(
  4331. "实时课堂",
  4332. $$("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 }), {
  4333. "id": "studentClassRoom",
  4334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4335. "onresize": function () { }
  4336. }, {
  4337. closecallback: function () { }
  4338. }, { "style": { "height": "36px" } }).form; //创建窗体
  4339. _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); } }
  4340. setTimeout(() => {
  4341. U.UF.F.windowZooming(_formdiv)
  4342. }, 0);
  4343. break;
  4344. }
  4345. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4346. switch (str) {
  4347. case "studnetProject": //好友打开
  4348. _formdiv = new U.UF.UI.form(
  4349. "我的项目",
  4350. $$("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 }), {
  4351. "id": "studnetProject",
  4352. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4353. "onresize": function () { }
  4354. }, {
  4355. closecallback: function () { }
  4356. }, { "style": { "height": "36px" } }).form; //创建窗体
  4357. _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); } }
  4358. break;
  4359. case "studentEvaluate": //好友打开
  4360. _formdiv = new U.UF.UI.form(
  4361. "我的评价",
  4362. $$("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 }), {
  4363. "id": "studentEvaluate",
  4364. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. _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); } }
  4370. break;
  4371. case "my":
  4372. _formdiv = new U.UF.UI.form(
  4373. "我的资料",
  4374. $$("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 }), {
  4375. "id": "my",
  4376. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4377. "onresize": function () { }
  4378. }, {
  4379. closecallback: function () { }
  4380. }, { "style": { "height": "36px" } }).form; //创建窗体
  4381. _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); } }
  4382. break;
  4383. case "program":
  4384. _formdiv = new U.UF.UI.form(
  4385. "编程平台",
  4386. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4387. "id": "program",
  4388. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4389. "onresize": function () { }
  4390. }, {
  4391. closecallback: function () { }
  4392. }, { "style": { "height": "36px" } }).form; //创建窗体
  4393. _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); } }
  4394. break;
  4395. case "library":
  4396. _formdiv = new U.UF.UI.form(
  4397. "素材库",
  4398. $$("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 }), {
  4399. "id": "library",
  4400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _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); } }
  4406. break;
  4407. case "whiteboard":
  4408. _formdiv = new U.UF.UI.form(
  4409. "电子白板",
  4410. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4411. "id": "whiteboard",
  4412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4413. "onresize": function () { }
  4414. }, {
  4415. closecallback: function () { }
  4416. }, { "style": { "height": "36px" } }).form; //创建窗体
  4417. _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); } }
  4418. break;
  4419. case "investigation":
  4420. _formdiv = new U.UF.UI.form(
  4421. "问卷调查",
  4422. $$("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 }), {
  4423. "id": "investigation",
  4424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4425. "onresize": function () { }
  4426. }, {
  4427. closecallback: function () { }
  4428. }, { "style": { "height": "36px" } }).form; //创建窗体
  4429. _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); } }
  4430. break;
  4431. case "note":
  4432. _formdiv = new U.UF.UI.form(
  4433. "便签分类",
  4434. $$("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 }), {
  4435. "id": "note",
  4436. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4437. "onresize": function () { }
  4438. }, {
  4439. closecallback: function () { }
  4440. }, { "style": { "height": "36px" } }).form; //创建窗体
  4441. _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); } }
  4442. break;
  4443. // case "score":
  4444. // _formdiv = new U.UF.UI.form(
  4445. // "量规评分",
  4446. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4447. // "id": "score",
  4448. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4449. // "onresize": function() {}
  4450. // }, {
  4451. // closecallback: function() {}
  4452. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4453. // _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); } }
  4454. // break;
  4455. case "mind":
  4456. _formdiv = new U.UF.UI.form(
  4457. "思维导图",
  4458. $$("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"
  4459. "id": "mind",
  4460. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4461. "onresize": function () { }
  4462. }, {
  4463. closecallback: function () { }
  4464. }, { "style": { "height": "36px" } }).form; //创建窗体
  4465. _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); } }
  4466. break;
  4467. case "doc":
  4468. // U.MD.D.I.isRoom();
  4469. _formdiv = new U.UF.UI.form(
  4470. "协同文档",
  4471. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4472. "id": "doc",
  4473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4474. "onresize": function () { }
  4475. }, {
  4476. closecallback: function () { }
  4477. }, { "style": { "height": "36px" } }).form; //创建窗体
  4478. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4479. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4480. })
  4481. _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); } }
  4482. break;
  4483. case "train": //好友打开
  4484. _formdiv = new U.UF.UI.form(
  4485. "训练平台",
  4486. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4487. "id": "train",
  4488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4489. "onresize": function () { }
  4490. }, {
  4491. closecallback: function () { }
  4492. }, { "style": { "height": "36px" } }).form; //创建窗体
  4493. _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); } }
  4494. break;
  4495. case "studentStudy":
  4496. _formdiv = new U.UF.UI.form(
  4497. "课程中心",
  4498. $$("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
  4499. "id": "studentStudy",
  4500. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4501. "onresize": function () { }
  4502. }, {
  4503. closecallback: function () { }
  4504. }, { "style": { "height": "36px" } }).form; //创建窗体
  4505. _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); } }
  4506. break;
  4507. case "mindNetwork": //好友打开
  4508. _formdiv = new U.UF.UI.form(
  4509. "思维网格",
  4510. $$("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 }), {
  4511. "id": "mindNetwork",
  4512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4513. "onresize": function () { }
  4514. }, {
  4515. closecallback: function () { }
  4516. }, { "style": { "height": "36px" } }).form; //创建窗体
  4517. _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); } }
  4518. break;
  4519. case "studentClassRoom": //好友打开
  4520. _formdiv = new U.UF.UI.form(
  4521. "实时课堂",
  4522. $$("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 }), {
  4523. "id": "studentClassRoom",
  4524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4525. "onresize": function () { }
  4526. }, {
  4527. closecallback: function () { }
  4528. }, { "style": { "height": "36px" } }).form; //创建窗体
  4529. _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); } }
  4530. setTimeout(() => {
  4531. U.UF.F.windowZooming(_formdiv)
  4532. }, 0);
  4533. break;
  4534. }
  4535. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4536. //选择应用处理
  4537. switch (str) {
  4538. case "project": //好友打开
  4539. _formdiv = new U.UF.UI.form(
  4540. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4541. $$("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 }), {
  4542. "id": "project",
  4543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4544. "onresize": function () { }
  4545. }, {
  4546. closecallback: function () { }
  4547. }, { "style": { "height": "36px" } }).form; //创建窗体
  4548. _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); } }
  4549. break;
  4550. case "student":
  4551. _formdiv = new U.UF.UI.form(
  4552. "学生管理",
  4553. $$("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 }), {
  4554. "id": "student",
  4555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4556. "onresize": function () { }
  4557. }, {
  4558. closecallback: function () { }
  4559. }, { "style": { "height": "36px" } }).form; //创建窗体
  4560. _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); } }
  4561. break;
  4562. case "evaluate":
  4563. _formdiv = new U.UF.UI.form(
  4564. "学生评价",
  4565. $$("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 }), {
  4566. "id": "evaluate",
  4567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4568. "onresize": function () { }
  4569. }, {
  4570. closecallback: function () { }
  4571. }, { "style": { "height": "36px" } }).form; //创建窗体
  4572. _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); } }
  4573. break;
  4574. case "sys":
  4575. _formdiv = new U.UF.UI.form(
  4576. "目标管理",
  4577. $$("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 }), {
  4578. "id": "sys",
  4579. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4580. "onresize": function () { }
  4581. }, {
  4582. closecallback: function () { }
  4583. }, { "style": { "height": "36px" } }).form; //创建窗体
  4584. _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); } }
  4585. break;
  4586. case "courseDesign":
  4587. _formdiv = new U.UF.UI.form(
  4588. "项目设计",
  4589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4590. "id": "courseDesign",
  4591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4592. "onresize": function () { }
  4593. }, {
  4594. closecallback: function () { }
  4595. }, { "style": { "height": "36px" } }).form; //创建窗体
  4596. _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); } }
  4597. break;
  4598. case "program":
  4599. _formdiv = new U.UF.UI.form(
  4600. "编程平台",
  4601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4602. "id": "program",
  4603. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4604. "onresize": function () { }
  4605. }, {
  4606. closecallback: function () { }
  4607. }, { "style": { "height": "36px" } }).form; //创建窗体
  4608. _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); } }
  4609. break;
  4610. case "class":
  4611. _formdiv = new U.UF.UI.form(
  4612. "班级管理",
  4613. $$("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 }), {
  4614. "id": "class",
  4615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4616. "onresize": function () { }
  4617. }, {
  4618. closecallback: function () { }
  4619. }, { "style": { "height": "36px" } }).form; //创建窗体
  4620. _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); } }
  4621. break;
  4622. case "Grade":
  4623. _formdiv = new U.UF.UI.form(
  4624. "年级管理",
  4625. $$("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 }), {
  4626. "id": "Grade",
  4627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. _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); } }
  4633. break;
  4634. case "teacherOffice":
  4635. _formdiv = new U.UF.UI.form(
  4636. "教研室",
  4637. $$("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 }), {
  4638. "id": "teacherOffice",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. _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); } }
  4645. break;
  4646. case "my":
  4647. _formdiv = new U.UF.UI.form(
  4648. "我的资料",
  4649. $$("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 }), {
  4650. "id": "my",
  4651. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4652. "onresize": function () { }
  4653. }, {
  4654. closecallback: function () { }
  4655. }, { "style": { "height": "36px" } }).form; //创建窗体
  4656. _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); } }
  4657. break;
  4658. case "notice":
  4659. _formdiv = new U.UF.UI.form(
  4660. "通知公告",
  4661. $$("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 }), {
  4662. "id": "notice",
  4663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4664. "onresize": function () { }
  4665. }, {
  4666. closecallback: function () { }
  4667. }, { "style": { "height": "36px" } }).form; //创建窗体
  4668. _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); } }
  4669. break;
  4670. case "library":
  4671. _formdiv = new U.UF.UI.form(
  4672. "素材库",
  4673. $$("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 }), {
  4674. "id": "library",
  4675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4676. "onresize": function () { }
  4677. }, {
  4678. closecallback: function () { }
  4679. }, { "style": { "height": "36px" } }).form; //创建窗体
  4680. _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); } }
  4681. break;
  4682. case "whiteboard":
  4683. _formdiv = new U.UF.UI.form(
  4684. "电子白板",
  4685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4686. "id": "whiteboard",
  4687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4688. "onresize": function () { }
  4689. }, {
  4690. closecallback: function () { }
  4691. }, { "style": { "height": "36px" } }).form; //创建窗体
  4692. _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); } }
  4693. break;
  4694. case "investigation":
  4695. _formdiv = new U.UF.UI.form(
  4696. "问卷调查",
  4697. $$("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 }), {
  4698. "id": "investigation",
  4699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4700. "onresize": function () { }
  4701. }, {
  4702. closecallback: function () { }
  4703. }, { "style": { "height": "36px" } }).form; //创建窗体
  4704. _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); } }
  4705. break;
  4706. case "note":
  4707. _formdiv = new U.UF.UI.form(
  4708. "便签分类",
  4709. $$("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 }), {
  4710. "id": "note",
  4711. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4712. "onresize": function () { }
  4713. }, {
  4714. closecallback: function () { }
  4715. }, { "style": { "height": "36px" } }).form; //创建窗体
  4716. _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); } }
  4717. break;
  4718. // case "score":
  4719. // _formdiv = new U.UF.UI.form(
  4720. // "量规评分",
  4721. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4722. // "id": "score",
  4723. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4724. // "onresize": function() {}
  4725. // }, {
  4726. // closecallback: function() {}
  4727. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4728. // _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); } }
  4729. // break;
  4730. case "mind":
  4731. _formdiv = new U.UF.UI.form(
  4732. "思维导图",
  4733. $$("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"
  4734. "id": "mind",
  4735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4736. "onresize": function () { }
  4737. }, {
  4738. closecallback: function () { }
  4739. }, { "style": { "height": "36px" } }).form; //创建窗体
  4740. _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); } }
  4741. break;
  4742. case "doc":
  4743. // U.MD.D.I.isRoom();
  4744. _formdiv = new U.UF.UI.form(
  4745. "协同文档",
  4746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4747. "id": "doc",
  4748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4749. "onresize": function () { }
  4750. }, {
  4751. closecallback: function () { }
  4752. }, { "style": { "height": "36px" } }).form; //创建窗体
  4753. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4754. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4755. })
  4756. _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); } }
  4757. break;
  4758. case "study":
  4759. _formdiv = new U.UF.UI.form(
  4760. "课程中心",
  4761. $$("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
  4762. "id": "study",
  4763. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4764. "onresize": function () { }
  4765. }, {
  4766. closecallback: function () { }
  4767. }, { "style": { "height": "36px" } }).form; //创建窗体
  4768. _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); } }
  4769. break;
  4770. case "mindNetwork": //好友打开
  4771. _formdiv = new U.UF.UI.form(
  4772. "思维网格",
  4773. $$("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 }), {
  4774. "id": "mindNetwork",
  4775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //创建窗体
  4780. _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); } }
  4781. break;
  4782. case "train": //好友打开
  4783. _formdiv = new U.UF.UI.form(
  4784. "训练平台",
  4785. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4786. "id": "mindNetwork",
  4787. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4788. "onresize": function () { }
  4789. }, {
  4790. closecallback: function () { }
  4791. }, { "style": { "height": "36px" } }).form; //创建窗体
  4792. _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); } }
  4793. break;
  4794. case "teacherClassRoom": //好友打开
  4795. _formdiv = new U.UF.UI.form(
  4796. "实时课堂",
  4797. $$("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 }), {
  4798. "id": "teacherClassRoom",
  4799. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4800. "onresize": function () { }
  4801. }, {
  4802. closecallback: function () { }
  4803. }, { "style": { "height": "36px" } }).form; //创建窗体
  4804. _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); } }
  4805. setTimeout(() => {
  4806. U.UF.F.windowZooming(_formdiv)
  4807. }, 0);
  4808. break;
  4809. }
  4810. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4811. switch (str) {
  4812. case "project": //好友打开
  4813. _formdiv = new U.UF.UI.form(
  4814. "课程管理",
  4815. $$("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 }), {
  4816. "id": "project",
  4817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4818. "onresize": function () { }
  4819. }, {
  4820. closecallback: function () { }
  4821. }, { "style": { "height": "36px" } }).form; //创建窗体
  4822. _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); } }
  4823. break;
  4824. case "evaluate":
  4825. _formdiv = new U.UF.UI.form(
  4826. "学生评价",
  4827. $$("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 }), {
  4828. "id": "evaluate",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _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); } }
  4835. break;
  4836. case "notice":
  4837. _formdiv = new U.UF.UI.form(
  4838. "通知公告",
  4839. $$("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 }), {
  4840. "id": "notice",
  4841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4842. "onresize": function () { }
  4843. }, {
  4844. closecallback: function () { }
  4845. }, { "style": { "height": "36px" } }).form; //创建窗体
  4846. _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); } }
  4847. break;
  4848. case "stuLibrary":
  4849. _formdiv = new U.UF.UI.form(
  4850. "学习资料",
  4851. $$("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 }), {
  4852. "id": "stuLibrary",
  4853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4854. "onresize": function () { }
  4855. }, {
  4856. closecallback: function () { }
  4857. }, { "style": { "height": "36px" } }).form; //创建窗体
  4858. _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); } }
  4859. break;
  4860. case "program":
  4861. _formdiv = new U.UF.UI.form(
  4862. "编程平台",
  4863. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4864. "id": "program",
  4865. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. _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); } }
  4871. break;
  4872. case "whiteboard":
  4873. _formdiv = new U.UF.UI.form(
  4874. "电子白板",
  4875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4876. "id": "whiteboard",
  4877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _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); } }
  4883. break;
  4884. case "investigation":
  4885. _formdiv = new U.UF.UI.form(
  4886. "问卷调查",
  4887. $$("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 }), {
  4888. "id": "investigation",
  4889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4890. "onresize": function () { }
  4891. }, {
  4892. closecallback: function () { }
  4893. }, { "style": { "height": "36px" } }).form; //创建窗体
  4894. _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); } }
  4895. break;
  4896. case "mind":
  4897. _formdiv = new U.UF.UI.form(
  4898. "思维导图",
  4899. $$("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"
  4900. "id": "mind",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. _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); } }
  4907. break;
  4908. case "doc":
  4909. // U.MD.D.I.isRoom();
  4910. _formdiv = new U.UF.UI.form(
  4911. "协同文档",
  4912. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4913. "id": "doc",
  4914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4920. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4921. })
  4922. _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); } }
  4923. break;
  4924. case "study":
  4925. _formdiv = new U.UF.UI.form(
  4926. "课程中心",
  4927. $$("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
  4928. "id": "study",
  4929. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4930. "onresize": function () { }
  4931. }, {
  4932. closecallback: function () { }
  4933. }, { "style": { "height": "36px" } }).form; //创建窗体
  4934. _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); } }
  4935. break;
  4936. case "mindNetwork": //好友打开
  4937. _formdiv = new U.UF.UI.form(
  4938. "思维网格",
  4939. $$("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 }), {
  4940. "id": "mindNetwork",
  4941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4942. "onresize": function () { }
  4943. }, {
  4944. closecallback: function () { }
  4945. }, { "style": { "height": "36px" } }).form; //创建窗体
  4946. _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); } }
  4947. break;
  4948. case "train": //好友打开
  4949. _formdiv = new U.UF.UI.form(
  4950. "训练平台",
  4951. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4952. "id": "train",
  4953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //创建窗体
  4958. _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); } }
  4959. break;
  4960. case "sys":
  4961. _formdiv = new U.UF.UI.form(
  4962. "目标管理",
  4963. $$("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 }), {
  4964. "id": "sys",
  4965. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //创建窗体
  4970. _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); } }
  4971. break;
  4972. case "courseDesign":
  4973. _formdiv = new U.UF.UI.form(
  4974. "项目设计",
  4975. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4976. "id": "courseDesign",
  4977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4978. "onresize": function () { }
  4979. }, {
  4980. closecallback: function () { }
  4981. }, { "style": { "height": "36px" } }).form; //创建窗体
  4982. _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); } }
  4983. break;
  4984. }
  4985. } else if (!_type) {
  4986. switch (str) {
  4987. case "my":
  4988. _formdiv = new U.UF.UI.form(
  4989. "我的资料",
  4990. $$("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 }), {
  4991. "id": "my",
  4992. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. _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); } }
  4998. break;
  4999. }
  5000. }
  5001. switch (str) {
  5002. // AIprogram2 AI体验 aihub.cocorobo.cn
  5003. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5004. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5005. case "formulaEdi": //公式编辑
  5006. _formdiv = new U.UF.UI.form(
  5007. "公式编辑",
  5008. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5009. "id": "formulaEdi",
  5010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5011. "onresize": function () { }
  5012. }, {
  5013. closecallback: function () { }
  5014. }, { "style": { "height": "36px" } }).form; //创建窗体
  5015. _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); } }
  5016. break;
  5017. case "molStr": //分子结构
  5018. _formdiv = new U.UF.UI.form(
  5019. "分子结构",
  5020. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5021. "id": "molStr",
  5022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. _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); } }
  5028. break;
  5029. case "timeAxis": //时间轴
  5030. _formdiv = new U.UF.UI.form(
  5031. "时间轴",
  5032. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5033. "id": "timeAxis",
  5034. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5035. "onresize": function () { }
  5036. }, {
  5037. closecallback: function () { }
  5038. }, { "style": { "height": "36px" } }).form; //创建窗体
  5039. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5040. break;
  5041. case "AIprogram2": //AI体验
  5042. _formdiv = new U.UF.UI.form(
  5043. "AI体验",
  5044. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5045. "id": "AIprogram2",
  5046. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5047. "onresize": function () { }
  5048. }, {
  5049. closecallback: function () { }
  5050. }, { "style": { "height": "36px" } }).form; //创建窗体
  5051. _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); } }
  5052. break;
  5053. case "Pythonprogram": //python编程
  5054. _formdiv = new U.UF.UI.form(
  5055. "Python编程",
  5056. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5057. "id": "Pythonprogram",
  5058. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. _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); } }
  5064. break;
  5065. case "AIprogram": //ai编程
  5066. _formdiv = new U.UF.UI.form(
  5067. "AI编程平台",
  5068. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5069. "id": "AIprogram",
  5070. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5076. break;
  5077. case "CocoPi": //CocoPi
  5078. _formdiv = new U.UF.UI.form(
  5079. "CocoPi",
  5080. $$("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" }), {
  5081. "id": "CocoPi",
  5082. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5083. "onresize": function () { }
  5084. }, {
  5085. closecallback: function () { }
  5086. }, { "style": { "height": "36px" } }).form; //创建窗体
  5087. _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); } }
  5088. break;
  5089. case "Wood": //Wood
  5090. _formdiv = new U.UF.UI.form(
  5091. "海龟编程",
  5092. $$("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/" }), {
  5093. "id": "Wood",
  5094. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. _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); } }
  5100. break;
  5101. case "car": //模拟驾驶
  5102. _formdiv = new U.UF.UI.form(
  5103. "模拟驾驶",
  5104. $$("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/" }), {
  5105. "id": "car",
  5106. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5112. break;
  5113. case "lineSearch": //路径搜索
  5114. _formdiv = new U.UF.UI.form(
  5115. "路径搜索",
  5116. $$("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/" }), {
  5117. "id": "lineSearch",
  5118. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5119. "onresize": function () { }
  5120. }, {
  5121. closecallback: function () { }
  5122. }, { "style": { "height": "36px" } }).form; //创建窗体
  5123. _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); } }
  5124. break;
  5125. case "deepLearning": //深度学习
  5126. _formdiv = new U.UF.UI.form(
  5127. "深度学习",
  5128. $$("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/#" }), {
  5129. "id": "deepLearning",
  5130. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5136. break;
  5137. case "allHistory": //深度学习
  5138. _formdiv = new U.UF.UI.form(
  5139. "全历史",
  5140. $$("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/" }), {
  5141. "id": "allHistory",
  5142. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5143. "onresize": function () { }
  5144. }, {
  5145. closecallback: function () { }
  5146. }, { "style": { "height": "36px" } }).form; //创建窗体
  5147. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5148. break;
  5149. case "chatPDF": //ai编程
  5150. _formdiv = new U.UF.UI.form(
  5151. "chatPDF",
  5152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5153. "id": "chatPDF",
  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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5160. break;
  5161. case "resources": //国家教育
  5162. _formdiv = new U.UF.UI.form(
  5163. "国家教育",
  5164. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5165. "id": "resources",
  5166. "style": { "width": "80%", "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/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5172. break;
  5173. case "codeEdit": //源码编辑
  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": "https://kitten.codemao.cn/" }), {
  5177. "id": "codeEdit",
  5178. "style": { "width": "80%", "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/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5184. break; //
  5185. case "MindMap": //MindMap
  5186. _formdiv = new U.UF.UI.form(
  5187. "MindMap",
  5188. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5189. "id": "MindMap",
  5190. "style": { "width": "80%", "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/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5196. break;
  5197. case "netWorkPanel": //netWorkPanel
  5198. _formdiv = new U.UF.UI.form(
  5199. "netWorkPanel",
  5200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5201. "id": "netWorkPanel",
  5202. "style": { "width": "80%", "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/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5208. break;
  5209. case "GeoGebra": //GeoGebra
  5210. _formdiv = new U.UF.UI.form(
  5211. "GeoGebra",
  5212. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  5213. "id": "GeoGebra",
  5214. "style": { "width": "80%", "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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5220. break;
  5221. case "translation": //翻译
  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": "//dict.youdao.com/" }), {
  5225. "id": "translation",
  5226. "style": { "width": "80%", "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/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5232. break;
  5233. case "mohe": //魔盒
  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": "//games.cocorobo.cn/view/index.html#/" }), {
  5237. "id": "mohe",
  5238. "style": { "width": "375px", "height": "667px", "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/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5244. break;
  5245. case "24game": //24点
  5246. _formdiv = new U.UF.UI.form(
  5247. "24点",
  5248. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5249. "id": "24game",
  5250. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5256. break;
  5257. case "case":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5261. "id": "case",
  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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5268. break;
  5269. case "snf":
  5270. _formdiv = new U.UF.UI.form(
  5271. "赛诺梵",
  5272. $$("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" }), {
  5273. "id": "snf",
  5274. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5275. "onresize": function () { }
  5276. }, {
  5277. closecallback: function () { }
  5278. }, { "style": { "height": "36px" } }).form; //创建窗体
  5279. _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); } }
  5280. break;
  5281. case "hanFamily":
  5282. _formdiv = new U.UF.UI.form(
  5283. "汉字家族",
  5284. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5285. "id": "hanFamily",
  5286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5287. "onresize": function () { }
  5288. }, {
  5289. closecallback: function () { }
  5290. }, { "style": { "height": "36px" } }).form; //创建窗体
  5291. _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); } }
  5292. break;
  5293. case "hanClassics":
  5294. _formdiv = new U.UF.UI.form(
  5295. "国学经典",
  5296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5297. "id": "hanClassics",
  5298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5299. "onresize": function () { }
  5300. }, {
  5301. closecallback: function () { }
  5302. }, { "style": { "height": "36px" } }).form; //创建窗体
  5303. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5304. break;
  5305. case "hanTraining":
  5306. _formdiv = new U.UF.UI.form(
  5307. "笔画训练",
  5308. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5309. "id": "hanTraining",
  5310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5311. "onresize": function () { }
  5312. }, {
  5313. closecallback: function () { }
  5314. }, { "style": { "height": "36px" } }).form; //创建窗体
  5315. _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); } }
  5316. break;
  5317. case "hanClass":
  5318. _formdiv = new U.UF.UI.form(
  5319. "书法课堂",
  5320. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5321. "id": "hanClass",
  5322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5323. "onresize": function () { }
  5324. }, {
  5325. closecallback: function () { }
  5326. }, { "style": { "height": "36px" } }).form; //创建窗体
  5327. _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); } }
  5328. break;
  5329. case "han":
  5330. _formdiv = new U.UF.UI.form(
  5331. "汉字宫",
  5332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5333. "id": "han",
  5334. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5335. "onresize": function () { }
  5336. }, {
  5337. closecallback: function () { }
  5338. }, { "style": { "height": "36px" } }).form; //创建窗体
  5339. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5340. break;
  5341. case "projectGM": //课程管理
  5342. _formdiv = new U.UF.UI.form(
  5343. "课程管理",
  5344. $$("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 }), {
  5345. "id": "projectGM",
  5346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5347. "onresize": function () { }
  5348. }, {
  5349. closecallback: function () { }
  5350. }, { "style": { "height": "36px" } }).form; //创建窗体
  5351. _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); } }
  5352. break;
  5353. case "studyGM": //课程中心
  5354. _formdiv = new U.UF.UI.form(
  5355. "课程中心",
  5356. $$("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
  5357. "id": "study",
  5358. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5359. "onresize": function () { }
  5360. }, {
  5361. closecallback: function () { }
  5362. }, { "style": { "height": "36px" } }).form; //创建窗体
  5363. _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); } }
  5364. break;
  5365. // studentGM
  5366. case "studentGM": //学生管理
  5367. _formdiv = new U.UF.UI.form(
  5368. "学生管理",
  5369. $$("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 }), {
  5370. "id": "studentGM",
  5371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _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); } }
  5377. break;
  5378. case "evaluateGM": //学生评价
  5379. _formdiv = new U.UF.UI.form(
  5380. "学生评价",
  5381. $$("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 }), {
  5382. "id": "evaluateGM",
  5383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5384. "onresize": function () { }
  5385. }, {
  5386. closecallback: function () { }
  5387. }, { "style": { "height": "36px" } }).form; //创建窗体
  5388. _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); } }
  5389. break;
  5390. // classGM
  5391. case "classGM": //班级管理
  5392. _formdiv = new U.UF.UI.form(
  5393. "班级管理",
  5394. $$("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 }), {
  5395. "id": "classGM",
  5396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5397. "onresize": function () { }
  5398. }, {
  5399. closecallback: function () { }
  5400. }, { "style": { "height": "36px" } }).form; //创建窗体
  5401. _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); } }
  5402. break;
  5403. // dataGM
  5404. case "dataGM":
  5405. _formdiv = new U.UF.UI.form(
  5406. "我的资料",
  5407. $$("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 }), {
  5408. "id": "dataGM",
  5409. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. break;
  5416. // caseGM
  5417. case "caseGM": //课程进展
  5418. _formdiv = new U.UF.UI.form(
  5419. "课程进展",
  5420. $$("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 }), {
  5421. "id": "caseGM",
  5422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. _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); } }
  5428. break;
  5429. // meterialGM
  5430. case "meterialGM": //素材库
  5431. _formdiv = new U.UF.UI.form(
  5432. "素材库",
  5433. $$("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 }), {
  5434. "id": "meterialGM",
  5435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. // evaluateSGM
  5443. case "evaluateSGM": //我的评价
  5444. _formdiv = new U.UF.UI.form(
  5445. "我的评价",
  5446. $$("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 }), {
  5447. "id": "evaluateSGM",
  5448. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5449. "onresize": function () { }
  5450. }, {
  5451. closecallback: function () { }
  5452. }, { "style": { "height": "36px" } }).form; //创建窗体
  5453. _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); } }
  5454. break;
  5455. case "jupyter": //jupyter
  5456. _formdiv = new U.UF.UI.form(
  5457. "jupyter",
  5458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5459. "id": "jupyter",
  5460. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5461. "onresize": function () { }
  5462. }, {
  5463. closecallback: function () { }
  5464. }, { "style": { "height": "36px" } }).form; //创建窗体
  5465. _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); } }
  5466. break;
  5467. case "number": //数字实验室
  5468. _formdiv = new U.UF.UI.form(
  5469. "数字实验室",
  5470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5471. "id": "number",
  5472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _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); } }
  5478. break;
  5479. case "studentCourse": //项目管理 学生
  5480. _formdiv = new U.UF.UI.form(
  5481. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5482. $$("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 }), {
  5483. "id": "studentCourse",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. _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); } }
  5490. break;
  5491. case "studentCourseS": //项目管理 老师
  5492. _formdiv = new U.UF.UI.form(
  5493. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5494. $$("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 }), {
  5495. "id": "studentCourseS",
  5496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "studentIndex": //项目中心
  5504. _formdiv = new U.UF.UI.form(
  5505. "项目中心",
  5506. $$("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 }), {
  5507. "id": "studentIndex",
  5508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. case "CaseDesignS":
  5516. _formdiv = new U.UF.UI.form(
  5517. "项目进展",
  5518. $$("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 }), {
  5519. "id": "case",
  5520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "tcStudent": //腾讯学生管理
  5528. _formdiv = new U.UF.UI.form(
  5529. "学生管理",
  5530. $$("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 }), {
  5531. "id": "tcStudent",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "tcSchool": //腾讯学校管理
  5540. _formdiv = new U.UF.UI.form(
  5541. "学校管理",
  5542. $$("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 }), {
  5543. "id": "tcSchool",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "tcTeacher": //腾讯学校管理
  5552. _formdiv = new U.UF.UI.form(
  5553. "教师管理",
  5554. $$("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 }), {
  5555. "id": "tcTeacher",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "tcData": //腾讯我的资料
  5564. _formdiv = new U.UF.UI.form(
  5565. "我的资料",
  5566. $$("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 }), {
  5567. "id": "tcData",
  5568. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "tcNotice": //腾讯消息通知
  5576. _formdiv = new U.UF.UI.form(
  5577. "消息通知",
  5578. $$("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 }), {
  5579. "id": "tcNotice",
  5580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "myReport": //好友打开
  5588. _formdiv = new U.UF.UI.form(
  5589. "我的评价",
  5590. $$("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 }), {
  5591. "id": "myReport",
  5592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "learnAna": //好友打开
  5600. _formdiv = new U.UF.UI.form(
  5601. "学习分析",
  5602. $$("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 }), {
  5603. "id": "learnAna",
  5604. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "AIChat": //AI共创
  5612. _formdiv = new U.UF.UI.form(
  5613. "AI共创",
  5614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5615. "id": "AIChat",
  5616. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. istop: true,
  5620. closecallback: function () { $("#aichat_icon").remove(); },
  5621. narrowcallback: function () {
  5622. if (!$("#aichat_icon")[0]) {
  5623. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5624. }
  5625. },
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "ainew": //AI共创
  5630. _formdiv = new U.UF.UI.form(
  5631. "AI协同",
  5632. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5633. "id": "ainew",
  5634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "gpt4": //gpt4
  5642. _formdiv = new U.UF.UI.form(
  5643. "AI助手",
  5644. $$("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 }), {
  5645. "id": "gpt4",
  5646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "aigpt": //gpt4
  5654. _formdiv = new U.UF.UI.form(
  5655. "AI助手+",
  5656. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5657. "id": "aigpt",
  5658. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. case "aiKnowledge": //aiKnowledge
  5666. _formdiv = new U.UF.UI.form(
  5667. "知识建构",
  5668. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  5669. "id": "aiKnowledge",
  5670. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _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); } }
  5676. break;
  5677. case "futureClass": //AI共创
  5678. _formdiv = new U.UF.UI.form(
  5679. "协同建构",
  5680. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  5681. "id": "synergyCourse",
  5682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () {
  5686. $("iframe", _formdiv)[0].contentWindow.loginout();
  5687. }
  5688. }, { "style": { "height": "36px" } }).form; //创建窗体
  5689. _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); } }
  5690. break;
  5691. case "aiagent": //ai agent
  5692. _formdiv = new U.UF.UI.form(
  5693. "AI Agent",
  5694. $$("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" }), {
  5695. "id": "AIAgent",
  5696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5697. "onresize": function () { }
  5698. }, {
  5699. closecallback: function () { }
  5700. }, { "style": { "height": "36px" } }).form; //创建窗体
  5701. _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); } }
  5702. break;
  5703. case "dataBoard": //数据看板
  5704. _formdiv = new U.UF.UI.form(
  5705. "数据看板",
  5706. $$("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 }), {
  5707. "id": "dataBoard",
  5708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5709. "onresize": function () { }
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _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); } }
  5714. break;
  5715. case "dataBoardSies": //数据融合
  5716. _formdiv = new U.UF.UI.form(
  5717. "数据融合",
  5718. $$("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 }), {
  5719. "id": "dataBoardSies",
  5720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. _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); } }
  5726. break;
  5727. case "dataBoardNew": //数据看板
  5728. _formdiv = new U.UF.UI.form(
  5729. "综合看板",
  5730. $$("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 }), {
  5731. "id": "dataBoardNew",
  5732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5738. break;
  5739. case "dataBoardTest": //数据看板
  5740. _formdiv = new U.UF.UI.form(
  5741. "评测看板",
  5742. $$("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 }), {
  5743. "id": "dataBoardTest",
  5744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5750. break;
  5751. case "AIAnalyse": //AI共创
  5752. _formdiv = new U.UF.UI.form(
  5753. "AI分析",
  5754. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5755. "id": "AIAnalyse",
  5756. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5762. break;
  5763. case "studioCourse": //AI共创
  5764. _formdiv = new U.UF.UI.form(
  5765. "工作管理",
  5766. $$("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 }), {
  5767. "id": "studioCourse",
  5768. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5774. break;
  5775. case "studioIndex": //AI共创
  5776. _formdiv = new U.UF.UI.form(
  5777. "工作中心",
  5778. $$("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 }), {
  5779. "id": "studioIndex",
  5780. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. _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); } }
  5786. break;
  5787. case "source":
  5788. _formdiv = new U.UF.UI.form(
  5789. "教学资源",
  5790. $$("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 }), {
  5791. "id": "source",
  5792. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. _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); } }
  5798. break;
  5799. case "testTeacher":
  5800. _formdiv = new U.UF.UI.form(
  5801. "教师管理",
  5802. $$("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 }), {
  5803. "id": "testTeacher",
  5804. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _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); } }
  5810. break;
  5811. case "testStudent":
  5812. _formdiv = new U.UF.UI.form(
  5813. "教师中心",
  5814. $$("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 }), {
  5815. "id": "testStudent",
  5816. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _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); } }
  5822. break;
  5823. case "testTeacherSies":
  5824. _formdiv = new U.UF.UI.form(
  5825. "教师管理",
  5826. $$("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 }), {
  5827. "id": "testTeacherSies",
  5828. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. break;
  5835. case "testStudentSies":
  5836. _formdiv = new U.UF.UI.form(
  5837. "教师中心",
  5838. $$("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 }), {
  5839. "id": "testStudentSies",
  5840. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _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); } }
  5846. break;
  5847. case "ytpbl": //消息通知
  5848. _formdiv = new U.UF.UI.form(
  5849. "案例征集",
  5850. $$("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 }), {
  5851. "id": "ytpbl",
  5852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. // 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");
  5859. break;
  5860. case "aiCourseResource": //人工智能窗体
  5861. _formdiv = new U.UF.UI.form(
  5862. false,
  5863. $$("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 }), {
  5864. "id": "aiCourseResource",
  5865. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5866. "onresize": function () { },
  5867. "isdrag": false,
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _taskbar = ''
  5872. break;
  5873. case "szdjgCocooroboX": //图形化编程
  5874. _formdiv = new U.UF.UI.form(
  5875. "图形化编程",
  5876. $$("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" }), {
  5877. "id": "szdjgCocooroboX",
  5878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _taskbar = ''
  5884. break;
  5885. case "szdjgPython": //python编程
  5886. _formdiv = new U.UF.UI.form(
  5887. "Python编程",
  5888. $$("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" }), {
  5889. "id": "szdjgPython",
  5890. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _taskbar = ''
  5896. break;
  5897. case "Record":
  5898. _formdiv = new U.UF.UI.form(
  5899. "观察记录",
  5900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5901. "id": "Record",
  5902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5908. break;
  5909. case "aigptCourse":
  5910. _formdiv = new U.UF.UI.form(
  5911. "AI智能体",
  5912. $$("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' }), {
  5913. "id": "aigptCourse",
  5914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5915. "onresize": function () { }
  5916. }, {
  5917. closecallback: function () { }
  5918. }, { "style": { "height": "36px" } }).form; //创建窗体
  5919. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5920. break;
  5921. case "classroomObservation":
  5922. _formdiv = new U.UF.UI.form(
  5923. "课堂观察",
  5924. $$("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 }), {
  5925. "id": "classroomObservation",
  5926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5932. break;
  5933. case "pblCourse":
  5934. _formdiv = new U.UF.UI.form(
  5935. "学生PBL",
  5936. $$("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 }), {
  5937. "id": "pblCourse",
  5938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5939. "onresize": function () { }
  5940. }, {
  5941. closecallback: function () { }
  5942. }, { "style": { "height": "36px" } }).form; //创建窗体
  5943. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5944. break;
  5945. }
  5946. //U.MD.D.I.openClick(str);
  5947. //如果有任务栏信息
  5948. if (_taskbar) {
  5949. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5950. }
  5951. }
  5952. // U.MD.D.I.openClick = function(str){
  5953. // var click = '';
  5954. // switch(str){
  5955. // case 'friend':
  5956. // click = '我的好友';
  5957. // break;
  5958. // case 'domain':
  5959. // click = '域名管理';
  5960. // break;
  5961. // case 'disk':
  5962. // click = '我的云盘';
  5963. // break;
  5964. // case 'word':
  5965. // click = 'Word';
  5966. // break;
  5967. // case 'excel':
  5968. // click = 'Execl';
  5969. // break;
  5970. // case 'txt':
  5971. // click = '文本文件';
  5972. // break;
  5973. // case 'lookupFriend':
  5974. // click = '查找好友';
  5975. // break;
  5976. // case 'ftp':
  5977. // click = 'FTP';
  5978. // break;
  5979. // case 'group':
  5980. // click = '群组';
  5981. // break;
  5982. // case 'set':
  5983. // click = '我的设置';
  5984. // break;
  5985. // case 'systemSet':
  5986. // click = '系统设置';
  5987. // break;
  5988. // case 'boomYun':
  5989. // click = '互联办公';
  5990. // break;
  5991. // case 'xz':
  5992. // click = '云端下载';
  5993. // break;
  5994. // case 'client':
  5995. // click = '有思浏览器';
  5996. // break;
  5997. // case 'backEndProgramming':
  5998. // click = '在线后台编程';
  5999. // break;
  6000. // case 'frontEndProgramming':
  6001. // click = '在线前端编程';
  6002. // break;
  6003. // default: break;
  6004. // }
  6005. // if(U.MD.D.I.Ip && click){
  6006. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6007. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6008. // })
  6009. // }
  6010. // }
  6011. /**
  6012. *函数作用:ajax简易函数,使用post格式
  6013. *@param url {data} 后台地址
  6014. *@param data {data} 参数json
  6015. *@param fn {data} 回调函数
  6016. *
  6017. */
  6018. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6019. // var xhr = new XMLHttpRequest();
  6020. // xhr.open("GET",url,true);
  6021. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6022. // xhr.onreadystatechange = function(){
  6023. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6024. // fn.call(this,xhr.responseText);
  6025. // }
  6026. // };
  6027. // xhr.send();
  6028. // }
  6029. /*判断是否是内网IP*/
  6030. // U.MD.D.I.isInnerIPFn = function(str){
  6031. // var curPageUrl = str;
  6032. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6033. // curPageUrl =curPageUrl.replace(reg1,'');
  6034. // // console.log('curPageUrl-1 '+curPageUrl);
  6035. // var reg2 = /\:+/g;//替换冒号为一点
  6036. // curPageUrl =curPageUrl.replace(reg2,'.');
  6037. // // console.log('curPageUrl-2 '+curPageUrl);
  6038. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6039. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6040. // if(curPageUrl[2] != '16'){
  6041. // return ipAddress;
  6042. // }else{
  6043. // return false;
  6044. // }
  6045. // }
  6046. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6047. // //compatibility for firefox and chrome
  6048. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6049. // var pc = new myPeerConnection({
  6050. // iceServers: []
  6051. // }),
  6052. // noop = function() {},
  6053. // localIPs = {},
  6054. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6055. // key;
  6056. // function iterateIP(ip) {
  6057. // if (!localIPs[ip]) onNewIP(ip);
  6058. // localIPs[ip] = true;
  6059. // }
  6060. // //create a bogus data channel
  6061. // pc.createDataChannel("");
  6062. // // create offer and set local description
  6063. // pc.createOffer().then(function(sdp) {
  6064. // sdp.sdp.split('\n').forEach(function(line) {
  6065. // if (line.indexOf('candidate') < 0) return;
  6066. // line.match(ipRegex).forEach(iterateIP);
  6067. // });
  6068. // pc.setLocalDescription(sdp, noop, noop);
  6069. // }).catch(function(reason) {
  6070. // // An error occurred, so handle the failure to connect
  6071. // });
  6072. // //sten for candidate events
  6073. // pc.onicecandidate = function(ice) {
  6074. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6075. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6076. // };
  6077. // }
  6078. // U.MD.D.I.getUserIpBool = function(callback){
  6079. // U.MD.D.I.getUserIP(function(ip){
  6080. // alert("Got IP! :" + ip);
  6081. // });
  6082. //}
  6083. //#endregion
  6084. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6085. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6086. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6087. _userinfo = US.userInfo, //登录用户信息
  6088. _userid = US.userInfo.userid //登录用户id
  6089. let _iframe;
  6090. let _cid = cid,
  6091. _stage = stage,
  6092. _task = task,
  6093. _tool = tool;
  6094. var _jie = $$("div", {
  6095. "style": {
  6096. "position": "absolute",
  6097. "bottom": "50px",
  6098. "right": "50px",
  6099. "zIndex": "9999",
  6100. "backgroundColor": "#2268bc",
  6101. "color": "#fff",
  6102. "padding": "12px 20px",
  6103. "cursor": "pointer",
  6104. "borderRadius": "4px",
  6105. },
  6106. "innerHTML": "提交作业"
  6107. })
  6108. let aTool = ''
  6109. let _loading = document.createElement('div')
  6110. _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;"
  6111. // _loading.id = "";
  6112. let _lchild = document.createElement('div')
  6113. let _limg = document.createElement('img')
  6114. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6115. _limg.style = "width: 26px;margin-right: 10px;"
  6116. _lchild.appendChild(_limg)
  6117. let _lspan = document.createElement('span')
  6118. _lspan.innerHTML = "上传中..."
  6119. _lchild.appendChild(_lspan)
  6120. _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%);"
  6121. _loading.appendChild(_lchild)
  6122. var _box = $$('div', {
  6123. "style": {
  6124. "position": "relative",
  6125. "width": "100%",
  6126. "height": "100%",
  6127. },
  6128. })
  6129. _box.appendChild(_loading)
  6130. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6131. switch (str) {
  6132. case "whiteboard":
  6133. aTool = 1;
  6134. _iframe = $$("iframe", {
  6135. "frameborder": "no",
  6136. "border": "0",
  6137. "scrolling ": "no",
  6138. "style": {
  6139. "cssText": "border:0;width:100%;height:100%"
  6140. },
  6141. "src": "https://beta.iwb.cocorobo.cn/"
  6142. })
  6143. _box.appendChild(_iframe);
  6144. _box.appendChild(_jie);
  6145. _formdiv = new U.UF.UI.form(
  6146. "电子白板",
  6147. _box, {
  6148. "id": "whiteboard" + cid + stage + task + tool,
  6149. "style": {
  6150. "width": "90%",
  6151. "height": "90%",
  6152. "overflow": 'hidden'
  6153. },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, {
  6158. "style": {
  6159. "height": "36px"
  6160. }
  6161. }).form; //创建窗体
  6162. _taskbar = {
  6163. "id": str + _formdiv.id,
  6164. "style": {
  6165. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6166. },
  6167. "name": "电子白板",
  6168. "forms": _formdiv,
  6169. "click": function () {
  6170. U.MD.D.I.openApplication(str, obj, info);
  6171. }
  6172. }
  6173. break;
  6174. case "mind":
  6175. aTool = 3;
  6176. _iframe = $$("iframe", {
  6177. "frameborder": "no",
  6178. "border": "0",
  6179. "scrolling ": "no",
  6180. "style": {
  6181. "cssText": "border:0;width:100%;height:100%"
  6182. },
  6183. "src": "/kityminder-editor/dist/index.html"
  6184. })
  6185. _box.appendChild(_iframe);
  6186. _box.appendChild(_jie);
  6187. _formdiv = new U.UF.UI.form(
  6188. "思维导图",
  6189. _box, { //"/jsmind/example/demo.html"
  6190. "id": "mind" + cid + stage + task + tool,
  6191. "style": {
  6192. "width": "90%",
  6193. "height": "90%",
  6194. "overflow": 'hidden'
  6195. },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, {
  6200. "style": {
  6201. "height": "36px"
  6202. }
  6203. }).form; //创建窗体
  6204. _taskbar = {
  6205. "id": str + _formdiv.id,
  6206. "style": {
  6207. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6208. },
  6209. "name": "思维导图",
  6210. "forms": _formdiv,
  6211. "click": function () {
  6212. U.MD.D.I.openApplication(str, obj, info);
  6213. }
  6214. }
  6215. break;
  6216. case "MindMap":
  6217. aTool = 3;
  6218. _iframe = $$("iframe", {
  6219. "frameborder": "no",
  6220. "border": "0",
  6221. "scrolling ": "no",
  6222. "style": {
  6223. "cssText": "border:0;width:100%;height:100%"
  6224. },
  6225. "src": "//cloud.cocorobo.cn/mind/"
  6226. })
  6227. _box.appendChild(_iframe);
  6228. _box.appendChild(_jie);
  6229. _formdiv = new U.UF.UI.form(
  6230. "思维导图",
  6231. _box, { //"/jsmind/example/demo.html"
  6232. "id": "mind" + cid + stage + task + tool,
  6233. "style": {
  6234. "width": "90%",
  6235. "height": "90%",
  6236. "overflow": 'hidden'
  6237. },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, {
  6242. "style": {
  6243. "height": "36px"
  6244. }
  6245. }).form; //创建窗体
  6246. _taskbar = {
  6247. "id": str + _formdiv.id,
  6248. "style": {
  6249. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6250. },
  6251. "name": "思维导图",
  6252. "forms": _formdiv,
  6253. "click": function () {
  6254. U.MD.D.I.openApplication(str, obj, info);
  6255. }
  6256. }
  6257. break;
  6258. case "doc":
  6259. aTool = 6;
  6260. _iframe = $$("iframe", {
  6261. "frameborder": "no",
  6262. "border": "0",
  6263. "scrolling ": "no",
  6264. "style": {
  6265. "cssText": "border:0;width:100%;height:100%"
  6266. },
  6267. "src": "/Office/Word/WordEditArea.htm"
  6268. })
  6269. _box.appendChild(_iframe);
  6270. _box.appendChild(_jie);
  6271. _formdiv = new U.UF.UI.form(
  6272. "协同文档",
  6273. _box, {
  6274. "id": "doc" + cid + stage + task + tool,
  6275. "style": {
  6276. "width": "90%",
  6277. "height": "90%",
  6278. "overflow": 'hidden'
  6279. },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, {
  6284. "style": {
  6285. "height": "36px"
  6286. }
  6287. }).form; //创建窗体
  6288. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6289. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6290. })
  6291. _taskbar = {
  6292. "id": str + _formdiv.id,
  6293. "style": {
  6294. "backgroundImage": "url(/img/icon/doc.png)"
  6295. },
  6296. "name": "协同文档",
  6297. "forms": _formdiv,
  6298. "click": function () {
  6299. U.MD.D.I.openApplication(str, obj, info);
  6300. }
  6301. }
  6302. break;
  6303. case "mindNetwork": //好友打开
  6304. aTool = 7;
  6305. _iframe = $$("iframe", {
  6306. "webkitallowfullscreen": "",
  6307. "mozallowfullscreen": "",
  6308. "allowfullscreen": "",
  6309. "frameborder": "no",
  6310. "border": "0",
  6311. "scrolling ": "no",
  6312. "style": {
  6313. "cssText": "border:0; width:100%; height:100%;"
  6314. },
  6315. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6316. })
  6317. _box.appendChild(_iframe);
  6318. _box.appendChild(_jie);
  6319. _formdiv = new U.UF.UI.form(
  6320. "思维网格",
  6321. _box, {
  6322. "id": "mindNetwork" + cid + stage + task + tool,
  6323. "style": {
  6324. "width": "90%",
  6325. "height": "90%",
  6326. "overflow": 'hidden'
  6327. },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, {
  6332. "style": {
  6333. "height": "36px"
  6334. }
  6335. }).form; //创建窗体
  6336. _taskbar = {
  6337. "id": str + _formdiv.id,
  6338. "style": {
  6339. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6340. },
  6341. "name": "思维网格",
  6342. "forms": _formdiv,
  6343. "click": function () {
  6344. U.MD.D.I.openApplication(str, obj, info);
  6345. }
  6346. }
  6347. break;
  6348. case "courseDesign":
  6349. _iframe = $$("iframe", {
  6350. "webkitallowfullscreen": "",
  6351. "mozallowfullscreen": "",
  6352. "allowfullscreen": "",
  6353. "frameborder": "no",
  6354. "border": "0",
  6355. "scrolling ": "no",
  6356. "style": {
  6357. "cssText": "border:0; width:100%; height:100%;"
  6358. },
  6359. "src": "/course-design-vue"
  6360. })
  6361. _box.appendChild(_iframe);
  6362. _box.appendChild(_jie);
  6363. _formdiv = new U.UF.UI.form(
  6364. "项目设计",
  6365. _box, {
  6366. "id": "courseDesign" + cid + stage + task + tool,
  6367. "style": {
  6368. "width": "90%",
  6369. "height": "90%",
  6370. "overflow": 'hidden'
  6371. },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, {
  6376. "style": {
  6377. "height": "36px"
  6378. }
  6379. }).form; //创建窗体
  6380. _taskbar = {
  6381. "id": str + _formdiv.id,
  6382. "style": {
  6383. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6384. },
  6385. "name": "项目设计",
  6386. "forms": _formdiv,
  6387. "click": function () {
  6388. U.MD.D.I.openApplication(str, obj, info);
  6389. }
  6390. }
  6391. break;
  6392. }
  6393. const script1 = document.createElement("script");
  6394. script1.type = "text/javascript";
  6395. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6396. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6397. const script2 = document.createElement("script");
  6398. script2.type = "text/javascript";
  6399. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6400. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6401. const script3 = document.createElement("script");
  6402. script3.type = "text/javascript";
  6403. script3.charset = "UTF-8";
  6404. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6405. const script4 = document.createElement("script");
  6406. script4.type = "text/javascript";
  6407. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6408. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6409. if (_iframe) {
  6410. if (str == 'doc') {
  6411. _iframe = _formdiv.querySelector('iframe')
  6412. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6413. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6414. _iframe.contentWindow.document.body.appendChild(script1);
  6415. _iframe.contentWindow.document.body.appendChild(script2);
  6416. // _iframe.contentWindow.document.body.appendChild(script3);
  6417. _iframe.contentWindow.document.body.appendChild(script4);
  6418. })
  6419. if (onloadListener) {
  6420. _iframe.contentDocument.location.reload()
  6421. } else {
  6422. _iframe.contentDocument.location.reload()
  6423. }
  6424. } else if (str == 'courseDesign') {
  6425. U.UF.DL.iframeLoad(_iframe, function () {
  6426. // _iframe.contentWindow.U.MD.O.W.load();
  6427. // _iframe.contentWindow.document.body.appendChild(script1);
  6428. _iframe.contentWindow.document.body.appendChild(script2);
  6429. _iframe.contentWindow.document.body.appendChild(script4);
  6430. })
  6431. } else if (str == 'mind') {
  6432. _iframe = _formdiv.querySelector('iframe')
  6433. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6434. //
  6435. _iframe.contentWindow.document.body.appendChild(script1);
  6436. _iframe.contentWindow.document.body.appendChild(script2);
  6437. _iframe.contentWindow.document.body.appendChild(script4);
  6438. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6439. })
  6440. if (onloadListener) {
  6441. _iframe.contentDocument.location.reload()
  6442. } else {
  6443. _iframe.contentDocument.location.reload()
  6444. }
  6445. } else if (str == 'whiteboard') {
  6446. _iframe = _formdiv.querySelector('iframe')
  6447. let onloadListener = _iframe.onload = () => {
  6448. _iframe.contentWindow.document.body.appendChild(script1);
  6449. _iframe.contentWindow.document.body.appendChild(script2);
  6450. _iframe.contentWindow.document.body.appendChild(script4);
  6451. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6452. };
  6453. // if (onloadListener) {
  6454. // try {
  6455. // _iframe.src += "?cocorobo="+new Date().getTime()
  6456. // _iframe.contentWindow.document.location.reload()
  6457. // } catch (error) {
  6458. // }
  6459. // } else {
  6460. // _iframe.contentDocument.location.reload()
  6461. // }
  6462. } else {
  6463. _iframe.onload = () => {
  6464. _iframe.contentWindow.document.body.appendChild(script1);
  6465. _iframe.contentWindow.document.body.appendChild(script2);
  6466. // _iframe.contentWindow.document.body.appendChild(script3);
  6467. _iframe.contentWindow.document.body.appendChild(script4);
  6468. };
  6469. }
  6470. _jie.onclick = async () => {
  6471. let text = ''
  6472. if (aTool == 1) {
  6473. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6474. } else if (aTool == 6) {
  6475. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6476. } else if (aTool == 3) {
  6477. text = await U.MD.D.I.getEditorContent(_iframe);
  6478. }
  6479. _loading.style.display = 'flex'
  6480. console.log(_loading);
  6481. var _ajs = _iframe.contentWindow.document.createElement("script");
  6482. _ajs.type = "text/javascript";
  6483. _ajs.innerHTML =
  6484. // 'console.log(' + _loading + ');\n' +
  6485. 'var _js = document.createElement("script");\n' +
  6486. '_js.type="text/javascript";\n' +
  6487. '_js.charset="UTF-8";\n' +
  6488. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6489. "_js.onload = function(){\n" +
  6490. ' var a = document.getElementsByTagName("img")\n' +
  6491. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6492. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6493. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6494. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6495. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6496. "beforeUpload_shishi(file," +
  6497. "'" +
  6498. _userid +
  6499. "'" +
  6500. ", " +
  6501. "'" +
  6502. _cid +
  6503. "'" +
  6504. ", " +
  6505. "'" +
  6506. _stage +
  6507. "'" +
  6508. ", " +
  6509. "'" +
  6510. _task +
  6511. "'" +
  6512. ", " +
  6513. "'" +
  6514. _tool +
  6515. "'" +
  6516. ", " +
  6517. "'" +
  6518. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6519. "'" +
  6520. ", " +
  6521. "'" +
  6522. aTool +
  6523. "'" +
  6524. ", " +
  6525. "`" +
  6526. text +
  6527. "`" +
  6528. ")\n" +
  6529. " });\n" +
  6530. "}\n" +
  6531. "document.head.appendChild(_js);\n";
  6532. _iframe.contentWindow.document.head.appendChild(_ajs);
  6533. }
  6534. }
  6535. //U.MD.D.I.openClick(str);
  6536. //如果有任务栏信息
  6537. // if (_taskbar) {
  6538. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6539. // }
  6540. }
  6541. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6542. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6543. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6544. _userinfo = US.userInfo, //登录用户信息
  6545. _userid = US.userInfo.userid //登录用户id
  6546. let _iframe;
  6547. let _cid = cid,
  6548. _stage = stage,
  6549. _task = task,
  6550. _tool = tool;
  6551. var _jie = $$("div", {
  6552. "style": {
  6553. "position": "absolute",
  6554. "bottom": "50px",
  6555. "right": "50px",
  6556. "zIndex": "9999",
  6557. "backgroundColor": "#2268bc",
  6558. "color": "#fff",
  6559. "padding": "12px 20px",
  6560. "cursor": "pointer",
  6561. "borderRadius": "4px",
  6562. },
  6563. "innerHTML": "提交作业"
  6564. })
  6565. let aTool = ''
  6566. let _loading = document.createElement('div')
  6567. _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;"
  6568. // _loading.id = "";
  6569. let _lchild = document.createElement('div')
  6570. let _limg = document.createElement('img')
  6571. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6572. _limg.style = "width: 26px;margin-right: 10px;"
  6573. _lchild.appendChild(_limg)
  6574. let _lspan = document.createElement('span')
  6575. _lspan.innerHTML = "上传中..."
  6576. _lchild.appendChild(_lspan)
  6577. _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%);"
  6578. _loading.appendChild(_lchild)
  6579. let _box = $$('div', {
  6580. "style": {
  6581. "position": "relative",
  6582. "width": "100%",
  6583. "height": "100%",
  6584. },
  6585. })
  6586. _box.appendChild(_loading)
  6587. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6588. switch (str) {
  6589. case "whiteboard":
  6590. aTool = 1;
  6591. _iframe = $$("iframe", {
  6592. "frameborder": "no",
  6593. "border": "0",
  6594. "scrolling ": "no",
  6595. "style": {
  6596. "cssText": "border:0;width:100%;height:100%"
  6597. },
  6598. "src": "https://beta.iwb.cocorobo.cn/"
  6599. })
  6600. _box.appendChild(_iframe);
  6601. _box.appendChild(_jie);
  6602. _formdiv = new U.UF.UI.form(
  6603. "电子白板",
  6604. _box, {
  6605. "id": "whiteboard" + cid + stage + task + tool,
  6606. "style": {
  6607. "width": "90%",
  6608. "height": "90%",
  6609. "overflow": 'hidden'
  6610. },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, {
  6615. "style": {
  6616. "height": "36px"
  6617. }
  6618. }).form; //创建窗体
  6619. _taskbar = {
  6620. "id": str + _formdiv.id,
  6621. "style": {
  6622. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6623. },
  6624. "name": "电子白板",
  6625. "forms": _formdiv,
  6626. "click": function () {
  6627. U.MD.D.I.openApplication(str, obj, info);
  6628. }
  6629. }
  6630. break;
  6631. case "mind":
  6632. aTool = 3;
  6633. _iframe = $$("iframe", {
  6634. "frameborder": "no",
  6635. "border": "0",
  6636. "scrolling ": "no",
  6637. "style": {
  6638. "cssText": "border:0;width:100%;height:100%"
  6639. },
  6640. "src": "/kityminder-editor/dist/index.html"
  6641. })
  6642. _box.appendChild(_iframe);
  6643. _box.appendChild(_jie);
  6644. _formdiv = new U.UF.UI.form(
  6645. "思维导图",
  6646. _box, { //"/jsmind/example/demo.html"
  6647. "id": "mind" + cid + stage + task + tool,
  6648. "style": {
  6649. "width": "90%",
  6650. "height": "90%",
  6651. "overflow": 'hidden'
  6652. },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, {
  6657. "style": {
  6658. "height": "36px"
  6659. }
  6660. }).form; //创建窗体
  6661. _taskbar = {
  6662. "id": str + _formdiv.id,
  6663. "style": {
  6664. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6665. },
  6666. "name": "思维导图",
  6667. "forms": _formdiv,
  6668. "click": function () {
  6669. U.MD.D.I.openApplication(str, obj, info);
  6670. }
  6671. }
  6672. break;
  6673. case "MindMap":
  6674. aTool = 3;
  6675. _iframe = $$("iframe", {
  6676. "frameborder": "no",
  6677. "border": "0",
  6678. "scrolling ": "no",
  6679. "style": {
  6680. "cssText": "border:0;width:100%;height:100%"
  6681. },
  6682. "src": "//cloud.cocorobo.cn/mind/"
  6683. })
  6684. _box.appendChild(_iframe);
  6685. _box.appendChild(_jie);
  6686. _formdiv = new U.UF.UI.form(
  6687. "思维导图",
  6688. _box, { //"/jsmind/example/demo.html"
  6689. "id": "mind" + cid + stage + task + tool,
  6690. "style": {
  6691. "width": "90%",
  6692. "height": "90%",
  6693. "overflow": 'hidden'
  6694. },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, {
  6699. "style": {
  6700. "height": "36px"
  6701. }
  6702. }).form; //创建窗体
  6703. _taskbar = {
  6704. "id": str + _formdiv.id,
  6705. "style": {
  6706. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6707. },
  6708. "name": "思维导图",
  6709. "forms": _formdiv,
  6710. "click": function () {
  6711. U.MD.D.I.openApplication(str, obj, info);
  6712. }
  6713. }
  6714. break;
  6715. case "doc":
  6716. aTool = 6;
  6717. _iframe = $$("iframe", {
  6718. "frameborder": "no",
  6719. "border": "0",
  6720. "scrolling ": "no",
  6721. "style": {
  6722. "cssText": "border:0;width:100%;height:100%"
  6723. },
  6724. "src": "/Office/Word/WordEditArea.htm"
  6725. })
  6726. _box.appendChild(_iframe);
  6727. _box.appendChild(_jie);
  6728. _formdiv = new U.UF.UI.form(
  6729. "协同文档",
  6730. _box, {
  6731. "id": "doc" + cid + stage + task + tool,
  6732. "style": {
  6733. "width": "90%",
  6734. "height": "90%",
  6735. "overflow": 'hidden'
  6736. },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, {
  6741. "style": {
  6742. "height": "36px"
  6743. }
  6744. }).form; //创建窗体
  6745. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6746. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6747. })
  6748. _taskbar = {
  6749. "id": str + _formdiv.id,
  6750. "style": {
  6751. "backgroundImage": "url(/img/icon/doc.png)"
  6752. },
  6753. "name": "协同文档",
  6754. "forms": _formdiv,
  6755. "click": function () {
  6756. U.MD.D.I.openApplication(str, obj, info);
  6757. }
  6758. }
  6759. break;
  6760. case "mindNetwork": //好友打开
  6761. aTool = 7;
  6762. _iframe = $$("iframe", {
  6763. "webkitallowfullscreen": "",
  6764. "mozallowfullscreen": "",
  6765. "allowfullscreen": "",
  6766. "frameborder": "no",
  6767. "border": "0",
  6768. "scrolling ": "no",
  6769. "style": {
  6770. "cssText": "border:0; width:100%; height:100%;"
  6771. },
  6772. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6773. })
  6774. _box.appendChild(_iframe);
  6775. _box.appendChild(_jie);
  6776. _formdiv = new U.UF.UI.form(
  6777. "思维网格",
  6778. _box, {
  6779. "id": "mindNetwork" + cid + stage + task + tool,
  6780. "style": {
  6781. "width": "90%",
  6782. "height": "90%",
  6783. "overflow": 'hidden'
  6784. },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, {
  6789. "style": {
  6790. "height": "36px"
  6791. }
  6792. }).form; //创建窗体
  6793. _taskbar = {
  6794. "id": str + _formdiv.id,
  6795. "style": {
  6796. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6797. },
  6798. "name": "思维网格",
  6799. "forms": _formdiv,
  6800. "click": function () {
  6801. U.MD.D.I.openApplication(str, obj, info);
  6802. }
  6803. }
  6804. break;
  6805. case "courseDesign":
  6806. _iframe = $$("iframe", {
  6807. "webkitallowfullscreen": "",
  6808. "mozallowfullscreen": "",
  6809. "allowfullscreen": "",
  6810. "frameborder": "no",
  6811. "border": "0",
  6812. "scrolling ": "no",
  6813. "style": {
  6814. "cssText": "border:0; width:100%; height:100%;"
  6815. },
  6816. "src": "/course-design-vue"
  6817. })
  6818. _box.appendChild(_iframe);
  6819. _box.appendChild(_jie);
  6820. _formdiv = new U.UF.UI.form(
  6821. "项目设计",
  6822. _box, {
  6823. "id": "courseDesign" + cid + stage + task + tool,
  6824. "style": {
  6825. "width": "90%",
  6826. "height": "90%",
  6827. "overflow": 'hidden'
  6828. },
  6829. "onresize": function () { }
  6830. }, {
  6831. closecallback: function () { }
  6832. }, {
  6833. "style": {
  6834. "height": "36px"
  6835. }
  6836. }).form; //创建窗体
  6837. _taskbar = {
  6838. "id": str + _formdiv.id,
  6839. "style": {
  6840. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6841. },
  6842. "name": "项目设计",
  6843. "forms": _formdiv,
  6844. "click": function () {
  6845. U.MD.D.I.openApplication(str, obj, info);
  6846. }
  6847. }
  6848. break;
  6849. }
  6850. const script1 = document.createElement("script");
  6851. script1.type = "text/javascript";
  6852. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6853. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6854. const script2 = document.createElement("script");
  6855. script2.type = "text/javascript";
  6856. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6857. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6858. const script3 = document.createElement("script");
  6859. script3.type = "text/javascript";
  6860. script3.charset = "UTF-8";
  6861. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6862. const script4 = document.createElement("script");
  6863. script4.type = "text/javascript";
  6864. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6865. script4.src = window.origin + "/js/Common/jietu2E.js";
  6866. if (_iframe) {
  6867. if (str == 'doc') {
  6868. _iframe = _formdiv.querySelector('iframe')
  6869. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6870. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6871. _iframe.contentWindow.document.body.appendChild(script1);
  6872. _iframe.contentWindow.document.body.appendChild(script2);
  6873. // _iframe.contentWindow.document.body.appendChild(script3);
  6874. _iframe.contentWindow.document.body.appendChild(script4);
  6875. })
  6876. if (onloadListener) {
  6877. _iframe.contentDocument.location.reload()
  6878. } else {
  6879. _iframe.contentDocument.location.reload()
  6880. }
  6881. } else if (str == 'courseDesign') {
  6882. U.UF.DL.iframeLoad(_iframe, function () {
  6883. // _iframe.contentWindow.U.MD.O.W.load();
  6884. // _iframe.contentWindow.document.body.appendChild(script1);
  6885. _iframe.contentWindow.document.body.appendChild(script2);
  6886. _iframe.contentWindow.document.body.appendChild(script4);
  6887. })
  6888. } else if (str == 'mind') {
  6889. _iframe = _formdiv.querySelector('iframe')
  6890. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6891. //
  6892. _iframe.contentWindow.document.body.appendChild(script1);
  6893. _iframe.contentWindow.document.body.appendChild(script2);
  6894. _iframe.contentWindow.document.body.appendChild(script4);
  6895. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6896. })
  6897. if (onloadListener) {
  6898. _iframe.contentDocument.location.reload()
  6899. } else {
  6900. _iframe.contentDocument.location.reload()
  6901. }
  6902. } else if (str == 'whiteboard') {
  6903. _iframe = _formdiv.querySelector('iframe')
  6904. let onloadListener = _iframe.onload = () => {
  6905. _iframe.contentWindow.document.body.appendChild(script1);
  6906. _iframe.contentWindow.document.body.appendChild(script2);
  6907. _iframe.contentWindow.document.body.appendChild(script4);
  6908. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6909. };
  6910. // if (onloadListener) {
  6911. // try {
  6912. // _iframe.src += "?cocorobo="+new Date().getTime()
  6913. // _iframe.contentWindow.document.location.reload()
  6914. // } catch (error) {
  6915. // }
  6916. // } else {
  6917. // _iframe.contentDocument.location.reload()
  6918. // }
  6919. } else {
  6920. _iframe.onload = () => {
  6921. _iframe.contentWindow.document.body.appendChild(script1);
  6922. _iframe.contentWindow.document.body.appendChild(script2);
  6923. // _iframe.contentWindow.document.body.appendChild(script3);
  6924. _iframe.contentWindow.document.body.appendChild(script4);
  6925. };
  6926. }
  6927. _jie.onclick = async () => {
  6928. let text = ''
  6929. if (aTool == 1) {
  6930. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6931. } else if (aTool == 6) {
  6932. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6933. } else if (aTool == 3) {
  6934. text = await U.MD.D.I.getEditorContent(_iframe);
  6935. }
  6936. _loading.style.display = 'flex'
  6937. console.log(_loading);
  6938. var _ajs = _iframe.contentWindow.document.createElement("script");
  6939. _ajs.type = "text/javascript";
  6940. _ajs.innerHTML =
  6941. // 'console.log(' + _loading + ');\n' +
  6942. 'var _js = document.createElement("script");\n' +
  6943. '_js.type="text/javascript";\n' +
  6944. '_js.charset="UTF-8";\n' +
  6945. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6946. "_js.onload = function(){\n" +
  6947. ' var a = document.getElementsByTagName("img")\n' +
  6948. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6949. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6950. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6951. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6952. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6953. "beforeUpload_shishi(file," +
  6954. "'" +
  6955. _userid +
  6956. "'" +
  6957. ", " +
  6958. "'" +
  6959. _cid +
  6960. "'" +
  6961. ", " +
  6962. "'" +
  6963. _stage +
  6964. "'" +
  6965. ", " +
  6966. "'" +
  6967. _task +
  6968. "'" +
  6969. ", " +
  6970. "'" +
  6971. _tool +
  6972. "'" +
  6973. ", " +
  6974. "'" +
  6975. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6976. "'" +
  6977. ", " +
  6978. "'" +
  6979. aTool +
  6980. "'" +
  6981. ", " +
  6982. "`" +
  6983. text +
  6984. "`" +
  6985. ")\n" +
  6986. " });\n" +
  6987. "}\n" +
  6988. "document.head.appendChild(_js);\n";
  6989. _iframe.contentWindow.document.head.appendChild(_ajs);
  6990. }
  6991. }
  6992. //U.MD.D.I.openClick(str);
  6993. //如果有任务栏信息
  6994. // if (_taskbar) {
  6995. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6996. // }
  6997. }
  6998. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6999. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7000. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7001. _userid = student.userid, //登录用户id
  7002. _username = student.student //用户名字
  7003. let _iframe;
  7004. let _cid = cid,
  7005. _stage = stage,
  7006. _task = task,
  7007. _tool = tool;
  7008. var _jie = $$("div", {
  7009. "style": {
  7010. "position": "absolute",
  7011. "bottom": "50px",
  7012. "right": "50px",
  7013. "zIndex": "9999",
  7014. "backgroundColor": "#2268bc",
  7015. "color": "#fff",
  7016. "padding": "12px 20px",
  7017. "cursor": "pointer",
  7018. "borderRadius": "4px",
  7019. },
  7020. "innerHTML": "提交作业"
  7021. })
  7022. let aTool = ''
  7023. let _loading = document.createElement('div')
  7024. _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;"
  7025. // _loading.id = "";
  7026. let _lchild = document.createElement('div')
  7027. let _limg = document.createElement('img')
  7028. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7029. _limg.style = "width: 26px;margin-right: 10px;"
  7030. _lchild.appendChild(_limg)
  7031. let _lspan = document.createElement('span')
  7032. _lspan.innerHTML = "上传中..."
  7033. _lchild.appendChild(_lspan)
  7034. _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%);"
  7035. _loading.appendChild(_lchild)
  7036. var _box = $$('div', {
  7037. "style": {
  7038. "position": "relative",
  7039. "width": "100%",
  7040. "height": "100%",
  7041. },
  7042. })
  7043. _box.appendChild(_loading)
  7044. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7045. switch (str) {
  7046. case "whiteboard":
  7047. aTool = 1;
  7048. _iframe = $$("iframe", {
  7049. "frameborder": "no",
  7050. "border": "0",
  7051. "scrolling ": "no",
  7052. "style": {
  7053. "cssText": "border:0;width:100%;height:100%"
  7054. },
  7055. "src": "https://beta.iwb.cocorobo.cn/"
  7056. })
  7057. _box.appendChild(_iframe);
  7058. _box.appendChild(_jie);
  7059. _formdiv = new U.UF.UI.form(
  7060. "电子白板-" + _username,
  7061. _box, {
  7062. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7063. "style": {
  7064. "width": "90%",
  7065. "height": "90%",
  7066. "overflow": 'hidden'
  7067. },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, {
  7072. "style": {
  7073. "height": "36px"
  7074. }
  7075. }).form; //创建窗体
  7076. _taskbar = {
  7077. "id": str + _formdiv.id,
  7078. "style": {
  7079. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7080. },
  7081. "name": "电子白板",
  7082. "forms": _formdiv,
  7083. "click": function () {
  7084. U.MD.D.I.openApplication(str, obj, info);
  7085. }
  7086. }
  7087. break;
  7088. case "mind":
  7089. aTool = 3;
  7090. _iframe = $$("iframe", {
  7091. "frameborder": "no",
  7092. "border": "0",
  7093. "scrolling ": "no",
  7094. "style": {
  7095. "cssText": "border:0;width:100%;height:100%"
  7096. },
  7097. "src": "/kityminder-editor/dist/index.html"
  7098. })
  7099. _box.appendChild(_iframe);
  7100. _box.appendChild(_jie);
  7101. _formdiv = new U.UF.UI.form(
  7102. "思维导图-" + _username,
  7103. _box, { //"/jsmind/example/demo.html"
  7104. "id": "mind" + cid + stage + task + tool + _userid,
  7105. "style": {
  7106. "width": "90%",
  7107. "height": "90%",
  7108. "overflow": 'hidden'
  7109. },
  7110. "onresize": function () { }
  7111. }, {
  7112. closecallback: function () { }
  7113. }, {
  7114. "style": {
  7115. "height": "36px"
  7116. }
  7117. }).form; //创建窗体
  7118. _taskbar = {
  7119. "id": str + _formdiv.id,
  7120. "style": {
  7121. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7122. },
  7123. "name": "思维导图",
  7124. "forms": _formdiv,
  7125. "click": function () {
  7126. U.MD.D.I.openApplication(str, obj, info);
  7127. }
  7128. }
  7129. break;
  7130. case "MindMap":
  7131. aTool = 3;
  7132. _iframe = $$("iframe", {
  7133. "frameborder": "no",
  7134. "border": "0",
  7135. "scrolling ": "no",
  7136. "style": {
  7137. "cssText": "border:0;width:100%;height:100%"
  7138. },
  7139. "src": "//cloud.cocorobo.cn/mind/"
  7140. })
  7141. _box.appendChild(_iframe);
  7142. _box.appendChild(_jie);
  7143. _formdiv = new U.UF.UI.form(
  7144. "思维导图-" + _username,
  7145. _box, { //"/jsmind/example/demo.html"
  7146. "id": "mind" + cid + stage + task + tool + _userid,
  7147. "style": {
  7148. "width": "90%",
  7149. "height": "90%",
  7150. "overflow": 'hidden'
  7151. },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, {
  7156. "style": {
  7157. "height": "36px"
  7158. }
  7159. }).form; //创建窗体
  7160. _taskbar = {
  7161. "id": str + _formdiv.id,
  7162. "style": {
  7163. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7164. },
  7165. "name": "思维导图",
  7166. "forms": _formdiv,
  7167. "click": function () {
  7168. U.MD.D.I.openApplication(str, obj, info);
  7169. }
  7170. }
  7171. break;
  7172. case "doc":
  7173. aTool = 6;
  7174. _iframe = $$("iframe", {
  7175. "frameborder": "no",
  7176. "border": "0",
  7177. "scrolling ": "no",
  7178. "style": {
  7179. "cssText": "border:0;width:100%;height:100%"
  7180. },
  7181. "src": "/Office/Word/WordEditArea.htm"
  7182. })
  7183. _box.appendChild(_iframe);
  7184. _box.appendChild(_jie);
  7185. _formdiv = new U.UF.UI.form(
  7186. "协同文档-" + _username,
  7187. _box, {
  7188. "id": "doc" + cid + stage + task + tool + _userid,
  7189. "style": {
  7190. "width": "90%",
  7191. "height": "90%",
  7192. "overflow": 'hidden'
  7193. },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, {
  7198. "style": {
  7199. "height": "36px"
  7200. }
  7201. }).form; //创建窗体
  7202. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7203. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7204. })
  7205. _taskbar = {
  7206. "id": str + _formdiv.id,
  7207. "style": {
  7208. "backgroundImage": "url(/img/icon/doc.png)"
  7209. },
  7210. "name": "协同文档",
  7211. "forms": _formdiv,
  7212. "click": function () {
  7213. U.MD.D.I.openApplication(str, obj, info);
  7214. }
  7215. }
  7216. break;
  7217. case "mindNetwork": //好友打开
  7218. aTool = 7;
  7219. _iframe = $$("iframe", {
  7220. "webkitallowfullscreen": "",
  7221. "mozallowfullscreen": "",
  7222. "allowfullscreen": "",
  7223. "frameborder": "no",
  7224. "border": "0",
  7225. "scrolling ": "no",
  7226. "style": {
  7227. "cssText": "border:0; width:100%; height:100%;"
  7228. },
  7229. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7230. })
  7231. _box.appendChild(_iframe);
  7232. _box.appendChild(_jie);
  7233. _formdiv = new U.UF.UI.form(
  7234. "思维网格-" + _username,
  7235. _box, {
  7236. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7237. "style": {
  7238. "width": "90%",
  7239. "height": "90%",
  7240. "overflow": 'hidden'
  7241. },
  7242. "onresize": function () { }
  7243. }, {
  7244. closecallback: function () { }
  7245. }, {
  7246. "style": {
  7247. "height": "36px"
  7248. }
  7249. }).form; //创建窗体
  7250. _taskbar = {
  7251. "id": str + _formdiv.id,
  7252. "style": {
  7253. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7254. },
  7255. "name": "思维网格",
  7256. "forms": _formdiv,
  7257. "click": function () {
  7258. U.MD.D.I.openApplication(str, obj, info);
  7259. }
  7260. }
  7261. break;
  7262. case "courseDesign":
  7263. _iframe = $$("iframe", {
  7264. "webkitallowfullscreen": "",
  7265. "mozallowfullscreen": "",
  7266. "allowfullscreen": "",
  7267. "frameborder": "no",
  7268. "border": "0",
  7269. "scrolling ": "no",
  7270. "style": {
  7271. "cssText": "border:0; width:100%; height:100%;"
  7272. },
  7273. "src": "/course-design-vue"
  7274. })
  7275. _box.appendChild(_iframe);
  7276. _box.appendChild(_jie);
  7277. _formdiv = new U.UF.UI.form(
  7278. "项目设计-" + _username,
  7279. _box, {
  7280. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7281. "style": {
  7282. "width": "90%",
  7283. "height": "90%",
  7284. "overflow": 'hidden'
  7285. },
  7286. "onresize": function () { }
  7287. }, {
  7288. closecallback: function () { }
  7289. }, {
  7290. "style": {
  7291. "height": "36px"
  7292. }
  7293. }).form; //创建窗体
  7294. _taskbar = {
  7295. "id": str + _formdiv.id,
  7296. "style": {
  7297. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7298. },
  7299. "name": "项目设计",
  7300. "forms": _formdiv,
  7301. "click": function () {
  7302. U.MD.D.I.openApplication(str, obj, info);
  7303. }
  7304. }
  7305. break;
  7306. }
  7307. const script1 = document.createElement("script");
  7308. script1.type = "text/javascript";
  7309. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7310. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7311. const script2 = document.createElement("script");
  7312. script2.type = "text/javascript";
  7313. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7314. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7315. const script3 = document.createElement("script");
  7316. script3.type = "text/javascript";
  7317. script3.charset = "UTF-8";
  7318. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7319. const script4 = document.createElement("script");
  7320. script4.type = "text/javascript";
  7321. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7322. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7323. if (_iframe) {
  7324. if (str == 'doc') {
  7325. _iframe = _formdiv.querySelector('iframe')
  7326. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7327. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7328. _iframe.contentWindow.document.body.appendChild(script1);
  7329. _iframe.contentWindow.document.body.appendChild(script2);
  7330. // _iframe.contentWindow.document.body.appendChild(script3);
  7331. _iframe.contentWindow.document.body.appendChild(script4);
  7332. })
  7333. if (onloadListener) {
  7334. _iframe.contentDocument.location.reload()
  7335. } else {
  7336. _iframe.contentDocument.location.reload()
  7337. }
  7338. } else if (str == 'courseDesign') {
  7339. U.UF.DL.iframeLoad(_iframe, function () {
  7340. // _iframe.contentWindow.U.MD.O.W.load();
  7341. // _iframe.contentWindow.document.body.appendChild(script1);
  7342. _iframe.contentWindow.document.body.appendChild(script2);
  7343. _iframe.contentWindow.document.body.appendChild(script4);
  7344. })
  7345. } else if (str == 'mind') {
  7346. _iframe = _formdiv.querySelector('iframe')
  7347. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7348. //
  7349. _iframe.contentWindow.document.body.appendChild(script1);
  7350. _iframe.contentWindow.document.body.appendChild(script2);
  7351. _iframe.contentWindow.document.body.appendChild(script4);
  7352. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7353. })
  7354. if (onloadListener) {
  7355. _iframe.contentDocument.location.reload()
  7356. } else {
  7357. _iframe.contentDocument.location.reload()
  7358. }
  7359. } else if (str == 'whiteboard') {
  7360. _iframe = _formdiv.querySelector('iframe')
  7361. let onloadListener = _iframe.onload = () => {
  7362. _iframe.contentWindow.document.body.appendChild(script1);
  7363. _iframe.contentWindow.document.body.appendChild(script2);
  7364. _iframe.contentWindow.document.body.appendChild(script4);
  7365. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7366. };
  7367. // if (onloadListener) {
  7368. // try {
  7369. // _iframe.src += "?cocorobo="+new Date().getTime()
  7370. // _iframe.contentWindow.document.location.reload()
  7371. // } catch (error) {
  7372. // }
  7373. // } else {
  7374. // _iframe.contentDocument.location.reload()
  7375. // }
  7376. } else {
  7377. _iframe.onload = () => {
  7378. _iframe.contentWindow.document.body.appendChild(script1);
  7379. _iframe.contentWindow.document.body.appendChild(script2);
  7380. // _iframe.contentWindow.document.body.appendChild(script3);
  7381. _iframe.contentWindow.document.body.appendChild(script4);
  7382. };
  7383. }
  7384. _jie.onclick = async () => {
  7385. let text = ''
  7386. if (aTool == 1) {
  7387. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7388. } else if (aTool == 6) {
  7389. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7390. } else if (aTool == 3) {
  7391. text = await U.MD.D.I.getEditorContent(_iframe);
  7392. }
  7393. _loading.style.display = 'flex'
  7394. console.log(_loading);
  7395. var _ajs = _iframe.contentWindow.document.createElement("script");
  7396. _ajs.type = "text/javascript";
  7397. _ajs.innerHTML =
  7398. // 'console.log(' + _loading + ');\n' +
  7399. 'var _js = document.createElement("script");\n' +
  7400. '_js.type="text/javascript";\n' +
  7401. '_js.charset="UTF-8";\n' +
  7402. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7403. "_js.onload = function(){\n" +
  7404. ' var a = document.getElementsByTagName("img")\n' +
  7405. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7406. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7407. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7408. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7409. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7410. "beforeUpload_shishi(file," +
  7411. "'" +
  7412. _userid +
  7413. "'" +
  7414. ", " +
  7415. "'" +
  7416. _cid +
  7417. "'" +
  7418. ", " +
  7419. "'" +
  7420. _stage +
  7421. "'" +
  7422. ", " +
  7423. "'" +
  7424. _task +
  7425. "'" +
  7426. ", " +
  7427. "'" +
  7428. _tool +
  7429. "'" +
  7430. ", " +
  7431. "'" +
  7432. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7433. "'" +
  7434. ", " +
  7435. "'" +
  7436. aTool +
  7437. "'" +
  7438. ", " +
  7439. "`" +
  7440. text +
  7441. "`" +
  7442. ")\n" +
  7443. " });\n" +
  7444. "}\n" +
  7445. "document.head.appendChild(_js);\n";
  7446. _iframe.contentWindow.document.head.appendChild(_ajs);
  7447. }
  7448. }
  7449. }
  7450. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7451. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7452. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7453. _userid = student.userid, //登录用户id
  7454. _username = student.student //用户名字
  7455. let _iframe;
  7456. let _cid = cid,
  7457. _stage = stage,
  7458. _task = task,
  7459. _tool = tool;
  7460. var _jie = $$("div", {
  7461. "style": {
  7462. "position": "absolute",
  7463. "bottom": "50px",
  7464. "right": "50px",
  7465. "zIndex": "9999",
  7466. "backgroundColor": "#2268bc",
  7467. "color": "#fff",
  7468. "padding": "12px 20px",
  7469. "cursor": "pointer",
  7470. "borderRadius": "4px",
  7471. },
  7472. "innerHTML": "提交作业"
  7473. })
  7474. let aTool = ''
  7475. let _loading = document.createElement('div')
  7476. _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;"
  7477. // _loading.id = "";
  7478. let _lchild = document.createElement('div')
  7479. let _limg = document.createElement('img')
  7480. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7481. _limg.style = "width: 26px;margin-right: 10px;"
  7482. _lchild.appendChild(_limg)
  7483. let _lspan = document.createElement('span')
  7484. _lspan.innerHTML = "上传中..."
  7485. _lchild.appendChild(_lspan)
  7486. _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%);"
  7487. _loading.appendChild(_lchild)
  7488. var _box = $$('div', {
  7489. "style": {
  7490. "position": "relative",
  7491. "width": "100%",
  7492. "height": "100%",
  7493. },
  7494. })
  7495. _box.appendChild(_loading)
  7496. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7497. switch (str) {
  7498. case "whiteboard":
  7499. aTool = 1;
  7500. _iframe = $$("iframe", {
  7501. "frameborder": "no",
  7502. "border": "0",
  7503. "scrolling ": "no",
  7504. "style": {
  7505. "cssText": "border:0;width:100%;height:100%"
  7506. },
  7507. "src": "https://beta.iwb.cocorobo.cn/"
  7508. })
  7509. _box.appendChild(_iframe);
  7510. _box.appendChild(_jie);
  7511. _formdiv = new U.UF.UI.form(
  7512. "电子白板-" + _username,
  7513. _box, {
  7514. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7515. "style": {
  7516. "width": "90%",
  7517. "height": "90%",
  7518. "overflow": 'hidden'
  7519. },
  7520. "onresize": function () { }
  7521. }, {
  7522. closecallback: function () { }
  7523. }, {
  7524. "style": {
  7525. "height": "36px"
  7526. }
  7527. }).form; //创建窗体
  7528. _taskbar = {
  7529. "id": str + _formdiv.id,
  7530. "style": {
  7531. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7532. },
  7533. "name": "电子白板",
  7534. "forms": _formdiv,
  7535. "click": function () {
  7536. U.MD.D.I.openApplication(str, obj, info);
  7537. }
  7538. }
  7539. break;
  7540. case "mind":
  7541. aTool = 3;
  7542. _iframe = $$("iframe", {
  7543. "frameborder": "no",
  7544. "border": "0",
  7545. "scrolling ": "no",
  7546. "style": {
  7547. "cssText": "border:0;width:100%;height:100%"
  7548. },
  7549. "src": "/kityminder-editor/dist/index.html"
  7550. })
  7551. _box.appendChild(_iframe);
  7552. _box.appendChild(_jie);
  7553. _formdiv = new U.UF.UI.form(
  7554. "思维导图-" + _username,
  7555. _box, { //"/jsmind/example/demo.html"
  7556. "id": "mind" + cid + stage + task + tool + _userid,
  7557. "style": {
  7558. "width": "90%",
  7559. "height": "90%",
  7560. "overflow": 'hidden'
  7561. },
  7562. "onresize": function () { }
  7563. }, {
  7564. closecallback: function () { }
  7565. }, {
  7566. "style": {
  7567. "height": "36px"
  7568. }
  7569. }).form; //创建窗体
  7570. _taskbar = {
  7571. "id": str + _formdiv.id,
  7572. "style": {
  7573. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7574. },
  7575. "name": "思维导图",
  7576. "forms": _formdiv,
  7577. "click": function () {
  7578. U.MD.D.I.openApplication(str, obj, info);
  7579. }
  7580. }
  7581. break;
  7582. case "MindMap":
  7583. aTool = 3;
  7584. _iframe = $$("iframe", {
  7585. "frameborder": "no",
  7586. "border": "0",
  7587. "scrolling ": "no",
  7588. "style": {
  7589. "cssText": "border:0;width:100%;height:100%"
  7590. },
  7591. "src": "//cloud.cocorobo.cn/mind/"
  7592. })
  7593. _box.appendChild(_iframe);
  7594. _box.appendChild(_jie);
  7595. _formdiv = new U.UF.UI.form(
  7596. "思维导图-" + _username,
  7597. _box, { //"/jsmind/example/demo.html"
  7598. "id": "mind" + cid + stage + task + tool + _userid,
  7599. "style": {
  7600. "width": "90%",
  7601. "height": "90%",
  7602. "overflow": 'hidden'
  7603. },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, {
  7608. "style": {
  7609. "height": "36px"
  7610. }
  7611. }).form; //创建窗体
  7612. _taskbar = {
  7613. "id": str + _formdiv.id,
  7614. "style": {
  7615. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7616. },
  7617. "name": "思维导图",
  7618. "forms": _formdiv,
  7619. "click": function () {
  7620. U.MD.D.I.openApplication(str, obj, info);
  7621. }
  7622. }
  7623. break;
  7624. case "doc":
  7625. aTool = 6;
  7626. _iframe = $$("iframe", {
  7627. "frameborder": "no",
  7628. "border": "0",
  7629. "scrolling ": "no",
  7630. "style": {
  7631. "cssText": "border:0;width:100%;height:100%"
  7632. },
  7633. "src": "/Office/Word/WordEditArea.htm"
  7634. })
  7635. _box.appendChild(_iframe);
  7636. _box.appendChild(_jie);
  7637. _formdiv = new U.UF.UI.form(
  7638. "协同文档-" + _username,
  7639. _box, {
  7640. "id": "doc" + cid + stage + task + tool + _userid,
  7641. "style": {
  7642. "width": "90%",
  7643. "height": "90%",
  7644. "overflow": 'hidden'
  7645. },
  7646. "onresize": function () { }
  7647. }, {
  7648. closecallback: function () { }
  7649. }, {
  7650. "style": {
  7651. "height": "36px"
  7652. }
  7653. }).form; //创建窗体
  7654. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7655. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7656. })
  7657. _taskbar = {
  7658. "id": str + _formdiv.id,
  7659. "style": {
  7660. "backgroundImage": "url(/img/icon/doc.png)"
  7661. },
  7662. "name": "协同文档",
  7663. "forms": _formdiv,
  7664. "click": function () {
  7665. U.MD.D.I.openApplication(str, obj, info);
  7666. }
  7667. }
  7668. break;
  7669. case "mindNetwork": //好友打开
  7670. aTool = 7;
  7671. _iframe = $$("iframe", {
  7672. "webkitallowfullscreen": "",
  7673. "mozallowfullscreen": "",
  7674. "allowfullscreen": "",
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0; width:100%; height:100%;"
  7680. },
  7681. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "思维网格-" + _username,
  7687. _box, {
  7688. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. _taskbar = {
  7703. "id": str + _formdiv.id,
  7704. "style": {
  7705. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7706. },
  7707. "name": "思维网格",
  7708. "forms": _formdiv,
  7709. "click": function () {
  7710. U.MD.D.I.openApplication(str, obj, info);
  7711. }
  7712. }
  7713. break;
  7714. case "courseDesign":
  7715. _iframe = $$("iframe", {
  7716. "webkitallowfullscreen": "",
  7717. "mozallowfullscreen": "",
  7718. "allowfullscreen": "",
  7719. "frameborder": "no",
  7720. "border": "0",
  7721. "scrolling ": "no",
  7722. "style": {
  7723. "cssText": "border:0; width:100%; height:100%;"
  7724. },
  7725. "src": "/course-design-vue"
  7726. })
  7727. _box.appendChild(_iframe);
  7728. _box.appendChild(_jie);
  7729. _formdiv = new U.UF.UI.form(
  7730. "项目设计-" + _username,
  7731. _box, {
  7732. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7733. "style": {
  7734. "width": "90%",
  7735. "height": "90%",
  7736. "overflow": 'hidden'
  7737. },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, {
  7742. "style": {
  7743. "height": "36px"
  7744. }
  7745. }).form; //创建窗体
  7746. _taskbar = {
  7747. "id": str + _formdiv.id,
  7748. "style": {
  7749. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7750. },
  7751. "name": "项目设计",
  7752. "forms": _formdiv,
  7753. "click": function () {
  7754. U.MD.D.I.openApplication(str, obj, info);
  7755. }
  7756. }
  7757. break;
  7758. }
  7759. const script1 = document.createElement("script");
  7760. script1.type = "text/javascript";
  7761. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7762. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7763. const script2 = document.createElement("script");
  7764. script2.type = "text/javascript";
  7765. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7766. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7767. const script3 = document.createElement("script");
  7768. script3.type = "text/javascript";
  7769. script3.charset = "UTF-8";
  7770. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7771. const script4 = document.createElement("script");
  7772. script4.type = "text/javascript";
  7773. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7774. script4.src = window.origin + "/js/Common/jietu2E.js";
  7775. if (_iframe) {
  7776. if (str == 'doc') {
  7777. _iframe = _formdiv.querySelector('iframe')
  7778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7779. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7780. _iframe.contentWindow.document.body.appendChild(script1);
  7781. _iframe.contentWindow.document.body.appendChild(script2);
  7782. // _iframe.contentWindow.document.body.appendChild(script3);
  7783. _iframe.contentWindow.document.body.appendChild(script4);
  7784. })
  7785. if (onloadListener) {
  7786. _iframe.contentDocument.location.reload()
  7787. } else {
  7788. _iframe.contentDocument.location.reload()
  7789. }
  7790. } else if (str == 'courseDesign') {
  7791. U.UF.DL.iframeLoad(_iframe, function () {
  7792. // _iframe.contentWindow.U.MD.O.W.load();
  7793. // _iframe.contentWindow.document.body.appendChild(script1);
  7794. _iframe.contentWindow.document.body.appendChild(script2);
  7795. _iframe.contentWindow.document.body.appendChild(script4);
  7796. })
  7797. } else if (str == 'mind') {
  7798. _iframe = _formdiv.querySelector('iframe')
  7799. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7800. //
  7801. _iframe.contentWindow.document.body.appendChild(script1);
  7802. _iframe.contentWindow.document.body.appendChild(script2);
  7803. _iframe.contentWindow.document.body.appendChild(script4);
  7804. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7805. })
  7806. if (onloadListener) {
  7807. _iframe.contentDocument.location.reload()
  7808. } else {
  7809. _iframe.contentDocument.location.reload()
  7810. }
  7811. } else if (str == 'whiteboard') {
  7812. _iframe = _formdiv.querySelector('iframe')
  7813. let onloadListener = _iframe.onload = () => {
  7814. _iframe.contentWindow.document.body.appendChild(script1);
  7815. _iframe.contentWindow.document.body.appendChild(script2);
  7816. _iframe.contentWindow.document.body.appendChild(script4);
  7817. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7818. };
  7819. // if (onloadListener) {
  7820. // try {
  7821. // _iframe.src += "?cocorobo="+new Date().getTime()
  7822. // _iframe.contentWindow.document.location.reload()
  7823. // } catch (error) {
  7824. // }
  7825. // } else {
  7826. // _iframe.contentDocument.location.reload()
  7827. // }
  7828. } else {
  7829. _iframe.onload = () => {
  7830. _iframe.contentWindow.document.body.appendChild(script1);
  7831. _iframe.contentWindow.document.body.appendChild(script2);
  7832. // _iframe.contentWindow.document.body.appendChild(script3);
  7833. _iframe.contentWindow.document.body.appendChild(script4);
  7834. };
  7835. }
  7836. _jie.onclick = async () => {
  7837. let text = ''
  7838. if (aTool == 1) {
  7839. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7840. } else if (aTool == 6) {
  7841. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7842. } else if (aTool == 3) {
  7843. text = await U.MD.D.I.getEditorContent(_iframe);
  7844. }
  7845. _loading.style.display = 'flex'
  7846. console.log(_loading);
  7847. var _ajs = _iframe.contentWindow.document.createElement("script");
  7848. _ajs.type = "text/javascript";
  7849. _ajs.innerHTML =
  7850. // 'console.log(' + _loading + ');\n' +
  7851. 'var _js = document.createElement("script");\n' +
  7852. '_js.type="text/javascript";\n' +
  7853. '_js.charset="UTF-8";\n' +
  7854. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7855. "_js.onload = function(){\n" +
  7856. ' var a = document.getElementsByTagName("img")\n' +
  7857. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7858. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7859. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7860. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7861. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7862. "beforeUpload_shishi(file," +
  7863. "'" +
  7864. _userid +
  7865. "'" +
  7866. ", " +
  7867. "'" +
  7868. _cid +
  7869. "'" +
  7870. ", " +
  7871. "'" +
  7872. _stage +
  7873. "'" +
  7874. ", " +
  7875. "'" +
  7876. _task +
  7877. "'" +
  7878. ", " +
  7879. "'" +
  7880. _tool +
  7881. "'" +
  7882. ", " +
  7883. "'" +
  7884. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7885. "'" +
  7886. ", " +
  7887. "'" +
  7888. aTool +
  7889. "'" +
  7890. ", " +
  7891. "`" +
  7892. text +
  7893. "`" +
  7894. ")\n" +
  7895. " });\n" +
  7896. "}\n" +
  7897. "document.head.appendChild(_js);\n";
  7898. _iframe.contentWindow.document.head.appendChild(_ajs);
  7899. }
  7900. }
  7901. }
  7902. U.MD.D.I.getEditorContent = function (iframe) {
  7903. return new Promise((resolve, reject) => {
  7904. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7905. console.log(content);
  7906. resolve(content)
  7907. });
  7908. });
  7909. }
  7910. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7911. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7912. // if (res.value[0].length > 0) {
  7913. // // resolve(res.value[0][0].text);
  7914. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7915. // $(fileInput).val('');
  7916. // });
  7917. // }
  7918. // }, [], { "type": "GET", "withCredentials": true });
  7919. var xmlhttp;
  7920. var Mac, Sn, DeviceId
  7921. if (window.XMLHttpRequest) {
  7922. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7923. xmlhttp = new XMLHttpRequest();
  7924. } else {
  7925. // IE6, IE5 浏览器执行代码
  7926. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7927. }
  7928. xmlhttp.onreadystatechange = function () {
  7929. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7930. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7931. // resolve(res.value[0][0].text);
  7932. if (type == '2') {
  7933. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7934. } else if (type == '3') {
  7935. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7936. }
  7937. } else {
  7938. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7939. }
  7940. }
  7941. }
  7942. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7943. xmlhttp.send();
  7944. }
  7945. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7946. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7947. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7948. _userinfo = US.userInfo, //登录用户信息
  7949. _userid = US.userInfo.userid //登录用户id
  7950. let _iframe;
  7951. let _cid = cid,
  7952. _stage = stage,
  7953. _task = task,
  7954. _tool = tool;
  7955. var _jie = $$("div", {
  7956. "style": {
  7957. "position": "absolute",
  7958. "bottom": "50px",
  7959. "right": "50px",
  7960. "zIndex": "9999",
  7961. "backgroundColor": "#2268bc",
  7962. "color": "#fff",
  7963. "padding": "12px 20px",
  7964. "cursor": "pointer",
  7965. "borderRadius": "4px",
  7966. },
  7967. "innerHTML": "确认并提交"
  7968. })
  7969. let aTool = ''
  7970. let _loading = document.createElement('div')
  7971. _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;"
  7972. // _loading.id = "";
  7973. let _lchild = document.createElement('div')
  7974. let _limg = document.createElement('img')
  7975. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7976. _limg.style = "width: 26px;margin-right: 10px;"
  7977. _lchild.appendChild(_limg)
  7978. let _lspan = document.createElement('span')
  7979. _lspan.innerHTML = "上传中..."
  7980. _lchild.appendChild(_lspan)
  7981. _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%);"
  7982. _loading.appendChild(_lchild)
  7983. var _box = $$('div', {
  7984. "style": {
  7985. "position": "relative",
  7986. "width": "100%",
  7987. "height": "100%",
  7988. },
  7989. })
  7990. _box.appendChild(_loading)
  7991. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7992. switch (str) {
  7993. case "whiteboard":
  7994. aTool = 1;
  7995. _iframe = $$("iframe", {
  7996. "frameborder": "no",
  7997. "border": "0",
  7998. "scrolling ": "no",
  7999. "style": {
  8000. "cssText": "border:0;width:100%;height:100%"
  8001. },
  8002. "src": "https://beta.iwb.cocorobo.cn/"
  8003. })
  8004. _box.appendChild(_iframe);
  8005. _box.appendChild(_jie);
  8006. _formdiv = new U.UF.UI.form(
  8007. "电子白板",
  8008. _box, {
  8009. "id": "whiteboards" + cid + stage + task + tool,
  8010. "style": {
  8011. "width": "90%",
  8012. "height": "90%",
  8013. "overflow": 'hidden'
  8014. },
  8015. "onresize": function () { }
  8016. }, {
  8017. closecallback: function () { }
  8018. }, {
  8019. "style": {
  8020. "height": "36px"
  8021. }
  8022. }).form; //创建窗体
  8023. _taskbar = {
  8024. "id": str + _formdiv.id,
  8025. "style": {
  8026. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8027. },
  8028. "name": "电子白板",
  8029. "forms": _formdiv,
  8030. "click": function () {
  8031. U.MD.D.I.openApplication(str, obj, info);
  8032. }
  8033. }
  8034. break;
  8035. case "mind":
  8036. aTool = 3;
  8037. _iframe = $$("iframe", {
  8038. "frameborder": "no",
  8039. "border": "0",
  8040. "scrolling ": "no",
  8041. "style": {
  8042. "cssText": "border:0;width:100%;height:100%"
  8043. },
  8044. "src": "/kityminder-editor/dist/index.html"
  8045. });
  8046. _box.appendChild(_iframe);
  8047. _box.appendChild(_jie);
  8048. _formdiv = new U.UF.UI.form(
  8049. "思维导图",
  8050. _box, { //"/jsmind/example/demo.html"
  8051. "id": "minds" + cid + stage + task + tool,
  8052. "style": {
  8053. "width": "90%",
  8054. "height": "90%",
  8055. "overflow": 'hidden'
  8056. },
  8057. "onresize": function () { }
  8058. }, {
  8059. closecallback: function () { }
  8060. }, {
  8061. "style": {
  8062. "height": "36px"
  8063. }
  8064. }).form; //创建窗体
  8065. _taskbar = {
  8066. "id": str + _formdiv.id,
  8067. "style": {
  8068. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8069. },
  8070. "name": "思维导图",
  8071. "forms": _formdiv,
  8072. "click": function () {
  8073. U.MD.D.I.openApplication(str, obj, info);
  8074. }
  8075. }
  8076. break;
  8077. case "doc":
  8078. aTool = 6;
  8079. _iframe = $$("iframe", {
  8080. "frameborder": "no",
  8081. "border": "0",
  8082. "scrolling ": "no",
  8083. "style": {
  8084. "cssText": "border:0;width:100%;height:100%"
  8085. },
  8086. "src": "/Office/Word/WordEditArea.htm"
  8087. })
  8088. _box.appendChild(_iframe);
  8089. _box.appendChild(_jie);
  8090. _formdiv = new U.UF.UI.form(
  8091. "协同文档",
  8092. _box, {
  8093. "id": "docs" + cid + stage + task + tool,
  8094. "style": {
  8095. "width": "90%",
  8096. "height": "90%",
  8097. "overflow": 'hidden'
  8098. },
  8099. "onresize": function () { }
  8100. }, {
  8101. closecallback: function () { }
  8102. }, {
  8103. "style": {
  8104. "height": "36px"
  8105. }
  8106. }).form; //创建窗体
  8107. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8108. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8109. })
  8110. _taskbar = {
  8111. "id": str + _formdiv.id,
  8112. "style": {
  8113. "backgroundImage": "url(/img/icon/doc.png)"
  8114. },
  8115. "name": "协同文档",
  8116. "forms": _formdiv,
  8117. "click": function () {
  8118. U.MD.D.I.openApplication(str, obj, info);
  8119. }
  8120. }
  8121. break;
  8122. }
  8123. const script1 = document.createElement("script");
  8124. script1.type = "text/javascript";
  8125. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8126. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8127. const script2 = document.createElement("script");
  8128. script2.type = "text/javascript";
  8129. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8130. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8131. const script3 = document.createElement("script");
  8132. script3.type = "text/javascript";
  8133. script3.charset = "UTF-8";
  8134. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8135. const script4 = document.createElement("script");
  8136. script4.type = "text/javascript";
  8137. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8138. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8139. if (_iframe) {
  8140. if (str == 'doc') {
  8141. _iframe = _formdiv.querySelector('iframe')
  8142. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8143. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8144. _iframe.contentWindow.document.body.appendChild(script1);
  8145. _iframe.contentWindow.document.body.appendChild(script2);
  8146. // _iframe.contentWindow.document.body.appendChild(script3);
  8147. _iframe.contentWindow.document.body.appendChild(script4);
  8148. })
  8149. if (onloadListener) {
  8150. _iframe.contentDocument.location.reload()
  8151. } else {
  8152. _iframe.contentDocument.location.reload()
  8153. }
  8154. } else if (str == 'mind') {
  8155. _iframe = _formdiv.querySelector('iframe')
  8156. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8157. _iframe.contentWindow.document.body.appendChild(script1);
  8158. _iframe.contentWindow.document.body.appendChild(script2);
  8159. _iframe.contentWindow.document.body.appendChild(script4);
  8160. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8161. })
  8162. if (onloadListener) {
  8163. _iframe.contentDocument.location.reload()
  8164. } else {
  8165. _iframe.contentDocument.location.reload()
  8166. }
  8167. } else {
  8168. _iframe.onload = () => {
  8169. _iframe.contentWindow.document.body.appendChild(script1);
  8170. _iframe.contentWindow.document.body.appendChild(script2);
  8171. // _iframe.contentWindow.document.body.appendChild(script3);
  8172. _iframe.contentWindow.document.body.appendChild(script4);
  8173. };
  8174. }
  8175. _jie.onclick = async () => {
  8176. let text = ''
  8177. if (aTool == 6) {
  8178. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8179. } else if (aTool == 3) {
  8180. text = await U.MD.D.I.getEditorContent(_iframe);
  8181. }
  8182. _loading.style.display = 'flex'
  8183. console.log(_loading);
  8184. var _ajs = _iframe.contentWindow.document.createElement("script");
  8185. _ajs.type = "text/javascript";
  8186. _ajs.innerHTML =
  8187. // 'console.log(' + _loading + ');\n' +
  8188. 'var _js = document.createElement("script");\n' +
  8189. '_js.type="text/javascript";\n' +
  8190. '_js.charset="UTF-8";\n' +
  8191. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8192. "_js.onload = function(){\n" +
  8193. ' var a = document.getElementsByTagName("img")\n' +
  8194. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8195. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8196. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8197. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8198. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8199. "beforeUpload_shishi(file," +
  8200. "'" +
  8201. _userid +
  8202. "'" +
  8203. ", " +
  8204. "'" +
  8205. _cid +
  8206. "'" +
  8207. ", " +
  8208. "'" +
  8209. _stage +
  8210. "'" +
  8211. ", " +
  8212. "'" +
  8213. _task +
  8214. "'" +
  8215. ", " +
  8216. "'" +
  8217. _tool +
  8218. "'" +
  8219. ", " +
  8220. "'" +
  8221. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8222. "'" +
  8223. ", " +
  8224. "'" +
  8225. aTool +
  8226. "'" +
  8227. ", " +
  8228. "`" +
  8229. text +
  8230. "`" +
  8231. ")\n" +
  8232. " });\n" +
  8233. "}\n" +
  8234. "document.head.appendChild(_js);\n";
  8235. _iframe.contentWindow.document.head.appendChild(_ajs);
  8236. }
  8237. }
  8238. //U.MD.D.I.openClick(str);
  8239. //如果有任务栏信息
  8240. // if (_taskbar) {
  8241. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8242. // }
  8243. }
  8244. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8245. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8246. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8247. _userinfo = US.userInfo, //登录用户信息
  8248. _userid = US.userInfo.userid //登录用户id
  8249. let _iframe;
  8250. let _cid = cid,
  8251. _stage = stage,
  8252. _task = task,
  8253. _tool = tool;
  8254. var _jie = $$("div", {
  8255. "style": {
  8256. "position": "absolute",
  8257. "bottom": "50px",
  8258. "right": "50px",
  8259. "zIndex": "9999",
  8260. "backgroundColor": "#2268bc",
  8261. "color": "#fff",
  8262. "padding": "12px 20px",
  8263. "cursor": "pointer",
  8264. "borderRadius": "4px",
  8265. },
  8266. "innerHTML": "确认并提交"
  8267. })
  8268. let aTool = ''
  8269. let _loading = document.createElement('div')
  8270. _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;"
  8271. // _loading.id = "";
  8272. let _lchild = document.createElement('div')
  8273. let _limg = document.createElement('img')
  8274. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8275. _limg.style = "width: 26px;margin-right: 10px;"
  8276. _lchild.appendChild(_limg)
  8277. let _lspan = document.createElement('span')
  8278. _lspan.innerHTML = "上传中..."
  8279. _lchild.appendChild(_lspan)
  8280. _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%);"
  8281. _loading.appendChild(_lchild)
  8282. var _box = $$('div', {
  8283. "style": {
  8284. "position": "relative",
  8285. "width": "100%",
  8286. "height": "100%",
  8287. },
  8288. })
  8289. _box.appendChild(_loading)
  8290. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8291. switch (str) {
  8292. case "whiteboard":
  8293. aTool = 1;
  8294. _iframe = $$("iframe", {
  8295. "frameborder": "no",
  8296. "border": "0",
  8297. "scrolling ": "no",
  8298. "style": {
  8299. "cssText": "border:0;width:100%;height:100%"
  8300. },
  8301. "src": "https://beta.iwb.cocorobo.cn/"
  8302. })
  8303. _box.appendChild(_iframe);
  8304. _box.appendChild(_jie);
  8305. _formdiv = new U.UF.UI.form(
  8306. "电子白板",
  8307. _box, {
  8308. "id": "whiteboards" + cid + stage + task + tool,
  8309. "style": {
  8310. "width": "90%",
  8311. "height": "90%",
  8312. "overflow": 'hidden'
  8313. },
  8314. "onresize": function () { }
  8315. }, {
  8316. closecallback: function () { }
  8317. }, {
  8318. "style": {
  8319. "height": "36px"
  8320. }
  8321. }).form; //创建窗体
  8322. _taskbar = {
  8323. "id": str + _formdiv.id,
  8324. "style": {
  8325. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8326. },
  8327. "name": "电子白板",
  8328. "forms": _formdiv,
  8329. "click": function () {
  8330. U.MD.D.I.openApplication(str, obj, info);
  8331. }
  8332. }
  8333. break;
  8334. case "mind":
  8335. aTool = 3;
  8336. _iframe = $$("iframe", {
  8337. "frameborder": "no",
  8338. "border": "0",
  8339. "scrolling ": "no",
  8340. "style": {
  8341. "cssText": "border:0;width:100%;height:100%"
  8342. },
  8343. "src": "/kityminder-editor/dist/index.html"
  8344. });
  8345. _box.appendChild(_iframe);
  8346. _box.appendChild(_jie);
  8347. _formdiv = new U.UF.UI.form(
  8348. "思维导图",
  8349. _box, { //"/jsmind/example/demo.html"
  8350. "id": "minds" + cid + stage + task + tool,
  8351. "style": {
  8352. "width": "90%",
  8353. "height": "90%",
  8354. "overflow": 'hidden'
  8355. },
  8356. "onresize": function () { }
  8357. }, {
  8358. closecallback: function () { }
  8359. }, {
  8360. "style": {
  8361. "height": "36px"
  8362. }
  8363. }).form; //创建窗体
  8364. _taskbar = {
  8365. "id": str + _formdiv.id,
  8366. "style": {
  8367. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8368. },
  8369. "name": "思维导图",
  8370. "forms": _formdiv,
  8371. "click": function () {
  8372. U.MD.D.I.openApplication(str, obj, info);
  8373. }
  8374. }
  8375. break;
  8376. case "doc":
  8377. aTool = 6;
  8378. _iframe = $$("iframe", {
  8379. "frameborder": "no",
  8380. "border": "0",
  8381. "scrolling ": "no",
  8382. "style": {
  8383. "cssText": "border:0;width:100%;height:100%"
  8384. },
  8385. "src": "/Office/Word/WordEditArea.htm"
  8386. })
  8387. _box.appendChild(_iframe);
  8388. _box.appendChild(_jie);
  8389. _formdiv = new U.UF.UI.form(
  8390. "协同文档",
  8391. _box, {
  8392. "id": "docs" + cid + stage + task + tool,
  8393. "style": {
  8394. "width": "90%",
  8395. "height": "90%",
  8396. "overflow": 'hidden'
  8397. },
  8398. "onresize": function () { }
  8399. }, {
  8400. closecallback: function () { }
  8401. }, {
  8402. "style": {
  8403. "height": "36px"
  8404. }
  8405. }).form; //创建窗体
  8406. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8407. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8408. })
  8409. _taskbar = {
  8410. "id": str + _formdiv.id,
  8411. "style": {
  8412. "backgroundImage": "url(/img/icon/doc.png)"
  8413. },
  8414. "name": "协同文档",
  8415. "forms": _formdiv,
  8416. "click": function () {
  8417. U.MD.D.I.openApplication(str, obj, info);
  8418. }
  8419. }
  8420. break;
  8421. }
  8422. const script1 = document.createElement("script");
  8423. script1.type = "text/javascript";
  8424. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8425. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8426. const script2 = document.createElement("script");
  8427. script2.type = "text/javascript";
  8428. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8429. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8430. const script3 = document.createElement("script");
  8431. script3.type = "text/javascript";
  8432. script3.charset = "UTF-8";
  8433. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8434. const script4 = document.createElement("script");
  8435. script4.type = "text/javascript";
  8436. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8437. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8438. if (_iframe) {
  8439. if (str == 'doc') {
  8440. _iframe = _formdiv.querySelector('iframe')
  8441. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8442. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8443. _iframe.contentWindow.document.body.appendChild(script1);
  8444. _iframe.contentWindow.document.body.appendChild(script2);
  8445. // _iframe.contentWindow.document.body.appendChild(script3);
  8446. _iframe.contentWindow.document.body.appendChild(script4);
  8447. })
  8448. if (onloadListener) {
  8449. _iframe.contentDocument.location.reload()
  8450. } else {
  8451. _iframe.contentDocument.location.reload()
  8452. }
  8453. } else if (str == 'mind') {
  8454. _iframe = _formdiv.querySelector('iframe')
  8455. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8456. _iframe.contentWindow.document.body.appendChild(script1);
  8457. _iframe.contentWindow.document.body.appendChild(script2);
  8458. _iframe.contentWindow.document.body.appendChild(script4);
  8459. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8460. })
  8461. if (onloadListener) {
  8462. _iframe.contentDocument.location.reload()
  8463. } else {
  8464. _iframe.contentDocument.location.reload()
  8465. }
  8466. } else {
  8467. _iframe.onload = () => {
  8468. _iframe.contentWindow.document.body.appendChild(script1);
  8469. _iframe.contentWindow.document.body.appendChild(script2);
  8470. // _iframe.contentWindow.document.body.appendChild(script3);
  8471. _iframe.contentWindow.document.body.appendChild(script4);
  8472. };
  8473. }
  8474. _jie.onclick = async () => {
  8475. let text = ''
  8476. if (aTool == 6) {
  8477. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8478. } else if (aTool == 3) {
  8479. text = await U.MD.D.I.getEditorContent(_iframe);
  8480. }
  8481. _loading.style.display = 'flex'
  8482. console.log(_loading);
  8483. var _ajs = _iframe.contentWindow.document.createElement("script");
  8484. _ajs.type = "text/javascript";
  8485. _ajs.innerHTML =
  8486. // 'console.log(' + _loading + ');\n' +
  8487. 'var _js = document.createElement("script");\n' +
  8488. '_js.type="text/javascript";\n' +
  8489. '_js.charset="UTF-8";\n' +
  8490. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8491. "_js.onload = function(){\n" +
  8492. ' var a = document.getElementsByTagName("img")\n' +
  8493. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8494. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8495. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8496. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8497. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8498. "beforeUpload_shishi(file," +
  8499. "'" +
  8500. _userid +
  8501. "'" +
  8502. ", " +
  8503. "'" +
  8504. _cid +
  8505. "'" +
  8506. ", " +
  8507. "'" +
  8508. _stage +
  8509. "'" +
  8510. ", " +
  8511. "'" +
  8512. _task +
  8513. "'" +
  8514. ", " +
  8515. "'" +
  8516. _tool +
  8517. "'" +
  8518. ", " +
  8519. "'" +
  8520. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8521. "'" +
  8522. ", " +
  8523. "'" +
  8524. aTool +
  8525. "'" +
  8526. ", " +
  8527. "`" +
  8528. text +
  8529. "`" +
  8530. ")\n" +
  8531. " });\n" +
  8532. "}\n" +
  8533. "document.head.appendChild(_js);\n";
  8534. _iframe.contentWindow.document.head.appendChild(_ajs);
  8535. }
  8536. }
  8537. //U.MD.D.I.openClick(str);
  8538. //如果有任务栏信息
  8539. // if (_taskbar) {
  8540. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8541. // }
  8542. }
  8543. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8544. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8545. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8546. _userinfo = US.userInfo, //登录用户信息
  8547. _userid = US.userInfo.userid //登录用户id
  8548. let _iframe;
  8549. let _cid = cid,
  8550. _stage = stage,
  8551. _task = task,
  8552. _tool = tool;
  8553. var _jie = $$("div", {
  8554. "style": {
  8555. "position": "absolute",
  8556. "bottom": "50px",
  8557. "right": "50px",
  8558. "zIndex": "9999",
  8559. "backgroundColor": "#2268bc",
  8560. "color": "#fff",
  8561. "padding": "12px 20px",
  8562. "cursor": "pointer",
  8563. "borderRadius": "4px",
  8564. },
  8565. "innerHTML": "上传模板"
  8566. })
  8567. let aTool = ''
  8568. let _loading = document.createElement('div')
  8569. _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;"
  8570. // _loading.id = "";
  8571. let _lchild = document.createElement('div')
  8572. let _limg = document.createElement('img')
  8573. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8574. _limg.style = "width: 26px;margin-right: 10px;"
  8575. _lchild.appendChild(_limg)
  8576. let _lspan = document.createElement('span')
  8577. _lspan.innerHTML = "上传中..."
  8578. _lchild.appendChild(_lspan)
  8579. _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%);"
  8580. _loading.appendChild(_lchild)
  8581. var _box = $$('div', {
  8582. "style": {
  8583. "position": "relative",
  8584. "width": "100%",
  8585. "height": "100%",
  8586. },
  8587. })
  8588. _box.appendChild(_loading)
  8589. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8590. switch (str) {
  8591. case "whiteboard":
  8592. aTool = 1;
  8593. _iframe = $$("iframe", {
  8594. "frameborder": "no",
  8595. "border": "0",
  8596. "scrolling ": "no",
  8597. "style": {
  8598. "cssText": "border:0;width:100%;height:100%"
  8599. },
  8600. "src": "https://beta.iwb.cocorobo.cn/"
  8601. })
  8602. _box.appendChild(_iframe);
  8603. _box.appendChild(_jie);
  8604. _formdiv = new U.UF.UI.form(
  8605. "电子白板",
  8606. _box, {
  8607. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8608. "style": {
  8609. "width": "90%",
  8610. "height": "90%",
  8611. "overflow": 'hidden'
  8612. },
  8613. "onresize": function () { }
  8614. }, {
  8615. closecallback: function () { }
  8616. }, {
  8617. "style": {
  8618. "height": "36px"
  8619. }
  8620. }).form; //创建窗体
  8621. _taskbar = {
  8622. "id": str + _formdiv.id,
  8623. "style": {
  8624. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8625. },
  8626. "name": "电子白板",
  8627. "forms": _formdiv,
  8628. "click": function () {
  8629. U.MD.D.I.openApplication(str, obj, info);
  8630. }
  8631. }
  8632. break;
  8633. case "mind":
  8634. aTool = 3;
  8635. _iframe = $$("iframe", {
  8636. "frameborder": "no",
  8637. "border": "0",
  8638. "scrolling ": "no",
  8639. "style": {
  8640. "cssText": "border:0;width:100%;height:100%"
  8641. },
  8642. "src": "/kityminder-editor/dist/index.html"
  8643. });
  8644. _box.appendChild(_iframe);
  8645. _box.appendChild(_jie);
  8646. _formdiv = new U.UF.UI.form(
  8647. "思维导图",
  8648. _box, { //"/jsmind/example/demo.html"
  8649. "id": "minds_Yu" + cid + stage + task + tool,
  8650. "style": {
  8651. "width": "90%",
  8652. "height": "90%",
  8653. "overflow": 'hidden'
  8654. },
  8655. "onresize": function () { }
  8656. }, {
  8657. closecallback: function () { }
  8658. }, {
  8659. "style": {
  8660. "height": "36px"
  8661. }
  8662. }).form; //创建窗体
  8663. _taskbar = {
  8664. "id": str + _formdiv.id,
  8665. "style": {
  8666. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8667. },
  8668. "name": "思维导图",
  8669. "forms": _formdiv,
  8670. "click": function () {
  8671. U.MD.D.I.openApplication(str, obj, info);
  8672. }
  8673. }
  8674. break;
  8675. case "doc":
  8676. aTool = 6;
  8677. _iframe = $$("iframe", {
  8678. "frameborder": "no",
  8679. "border": "0",
  8680. "scrolling ": "no",
  8681. "style": {
  8682. "cssText": "border:0;width:100%;height:100%"
  8683. },
  8684. "src": "/Office/Word/WordEditArea.htm"
  8685. })
  8686. _box.appendChild(_iframe);
  8687. _box.appendChild(_jie);
  8688. _formdiv = new U.UF.UI.form(
  8689. "协同文档",
  8690. _box, {
  8691. "id": "docs_Yu" + cid + stage + task + tool,
  8692. "style": {
  8693. "width": "90%",
  8694. "height": "90%",
  8695. "overflow": 'hidden'
  8696. },
  8697. "onresize": function () { }
  8698. }, {
  8699. closecallback: function () { }
  8700. }, {
  8701. "style": {
  8702. "height": "36px"
  8703. }
  8704. }).form; //创建窗体
  8705. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8706. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8707. })
  8708. _taskbar = {
  8709. "id": str + _formdiv.id,
  8710. "style": {
  8711. "backgroundImage": "url(/img/icon/doc.png)"
  8712. },
  8713. "name": "协同文档",
  8714. "forms": _formdiv,
  8715. "click": function () {
  8716. U.MD.D.I.openApplication(str, obj, info);
  8717. }
  8718. }
  8719. break;
  8720. case "CocoPi":
  8721. aTool = 57;
  8722. _iframe = $$("iframe", {
  8723. "allowpaymentrequest": "allowpaymentrequest",
  8724. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8725. "webkitallowfullscreen": "",
  8726. "mozallowfullscreen": "",
  8727. "frameborder": "no",
  8728. "border": "0",
  8729. "scrolling ": "no",
  8730. "style": {
  8731. "cssText": "border:0;width:100%;height:100%"
  8732. },
  8733. "src": "https://pi.cocorobo.cn/"
  8734. })
  8735. _box.appendChild(_iframe);
  8736. _box.appendChild(_jie);
  8737. _formdiv = new U.UF.UI.form(
  8738. "CocoPi",
  8739. _box, {
  8740. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8741. "style": {
  8742. "width": "90%",
  8743. "height": "90%",
  8744. "overflow": 'hidden'
  8745. },
  8746. "onresize": function () { }
  8747. }, {
  8748. closecallback: function () { }
  8749. }, {
  8750. "style": {
  8751. "height": "36px"
  8752. }
  8753. }).form; //创建窗体
  8754. _taskbar = {
  8755. "id": str + _formdiv.id,
  8756. "style": {
  8757. "backgroundImage": "url(/img/icon/cocopi.png)"
  8758. },
  8759. "name": "CocoPi",
  8760. "forms": _formdiv,
  8761. "click": function () {
  8762. U.MD.D.I.openApplication(str, obj, info);
  8763. }
  8764. }
  8765. break;
  8766. }
  8767. if (_iframe) {
  8768. if (str == 'doc') {
  8769. _iframe = _formdiv.querySelector('iframe')
  8770. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8771. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8772. })
  8773. if (onloadListener) {
  8774. _iframe.contentDocument.location.reload()
  8775. } else {
  8776. _iframe.contentDocument.location.reload()
  8777. }
  8778. } else if (str == 'mind') {
  8779. _iframe = _formdiv.querySelector('iframe')
  8780. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8781. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8782. })
  8783. if (onloadListener) {
  8784. _iframe.contentDocument.location.reload()
  8785. } else {
  8786. _iframe.contentDocument.location.reload()
  8787. }
  8788. } else if (str == 'whiteboard') {
  8789. _iframe = _formdiv.querySelector('iframe')
  8790. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8791. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8792. })
  8793. // if (onloadListener) {
  8794. // try {
  8795. // _iframe.src += "?cocorobo="+new Date().getTime()
  8796. // _iframe.contentWindow.document.location.reload()
  8797. // } catch (error) {
  8798. // }
  8799. // } else {
  8800. // _iframe.contentDocument.location.reload()
  8801. // }
  8802. } else if (str == 'CocoPi') {
  8803. _iframe = _formdiv.querySelector('iframe')
  8804. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8805. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8806. })
  8807. if (onloadListener) {
  8808. _iframe.contentDocument.location.reload()
  8809. } else {
  8810. _iframe.contentDocument.location.reload()
  8811. }
  8812. } else {
  8813. _iframe.onload = () => { };
  8814. }
  8815. _jie.onclick = async () => {
  8816. let text = ''
  8817. let type = '2'
  8818. if (aTool == 1) {
  8819. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8820. type = '3'
  8821. } else if (aTool == 6) {
  8822. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8823. type = '1'
  8824. } else if (aTool == 3) {
  8825. text = await U.MD.D.I.getEditorContent(_iframe);
  8826. type = '2'
  8827. } else if (aTool == 57) {
  8828. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8829. type = '4'
  8830. }
  8831. _loading.style.display = 'flex'
  8832. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8833. }
  8834. }
  8835. //U.MD.D.I.openClick(str);
  8836. //如果有任务栏信息
  8837. // if (_taskbar) {
  8838. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8839. // }
  8840. }
  8841. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8842. var xmlhttp;
  8843. var Mac, Sn, DeviceId
  8844. if (window.XMLHttpRequest) {
  8845. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8846. xmlhttp = new XMLHttpRequest();
  8847. } else {
  8848. // IE6, IE5 浏览器执行代码
  8849. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8850. }
  8851. xmlhttp.onreadystatechange = function () {
  8852. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8853. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8854. // resolve(res.value[0][0].text);
  8855. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8856. }
  8857. }
  8858. }
  8859. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8860. xmlhttp.send();
  8861. }
  8862. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8863. var xmlhttp;
  8864. var Mac, Sn, DeviceId
  8865. if (window.XMLHttpRequest) {
  8866. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8867. xmlhttp = new XMLHttpRequest();
  8868. } else {
  8869. // IE6, IE5 浏览器执行代码
  8870. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8871. }
  8872. xmlhttp.onreadystatechange = function () {
  8873. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8874. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8875. // resolve(res.value[0][0].text);
  8876. if (type == '2') {
  8877. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8878. } else if (type == '3') {
  8879. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8880. } else if (type == '4') {
  8881. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8882. }
  8883. } else {
  8884. if (type == '2') {
  8885. iframe.contentWindow.editor.minder.importData('json', '')
  8886. } else if (type == '3') {
  8887. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8888. } else if (type == '4') {
  8889. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8890. }
  8891. }
  8892. }
  8893. }
  8894. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8895. xmlhttp.send();
  8896. }
  8897. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8898. var xmlhttp;
  8899. var Mac, Sn, DeviceId
  8900. if (window.XMLHttpRequest) {
  8901. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8902. xmlhttp = new XMLHttpRequest();
  8903. } else {
  8904. // IE6, IE5 浏览器执行代码
  8905. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8906. }
  8907. xmlhttp.onreadystatechange = function () {
  8908. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8909. if (xmlhttp.response) {
  8910. // resolve(res.value[0][0].text);
  8911. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8912. // $(fileInput).val('');
  8913. // });
  8914. span.innerHTML = '上传成功'
  8915. setTimeout(() => {
  8916. loading.style.display = 'none'
  8917. }, 1000);
  8918. }
  8919. }
  8920. }
  8921. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8922. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8923. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8924. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8925. // 设置请求头,表示请求体的编码格式
  8926. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8927. // 设置请求体,使用url-encoded格式的数据
  8928. }
  8929. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8930. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8931. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8932. _userinfo = US.userInfo, //登录用户信息
  8933. _userid = US.userInfo.userid //登录用户id
  8934. let _iframe;
  8935. let _cid = cid,
  8936. _stage = stage,
  8937. _task = task,
  8938. _tool = tool;
  8939. var _jie = $$("div", {
  8940. "style": {
  8941. "position": "absolute",
  8942. "bottom": "50px",
  8943. "right": "50px",
  8944. "zIndex": "9999",
  8945. "backgroundColor": "#2268bc",
  8946. "color": "#fff",
  8947. "padding": "12px 20px",
  8948. "cursor": "pointer",
  8949. "borderRadius": "4px",
  8950. },
  8951. "innerHTML": "提交作业"
  8952. })
  8953. let aTool = ''
  8954. let _loading = document.createElement('div')
  8955. _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;"
  8956. // _loading.id = "";
  8957. let _lchild = document.createElement('div')
  8958. let _limg = document.createElement('img')
  8959. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8960. _limg.style = "width: 26px;margin-right: 10px;"
  8961. _lchild.appendChild(_limg)
  8962. let _lspan = document.createElement('span')
  8963. _lspan.innerHTML = "上传中..."
  8964. _lchild.appendChild(_lspan)
  8965. _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%);"
  8966. _loading.appendChild(_lchild)
  8967. var _box = $$('div', {
  8968. "style": {
  8969. "position": "relative",
  8970. "width": "100%",
  8971. "height": "100%",
  8972. },
  8973. })
  8974. _box.appendChild(_loading)
  8975. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8976. switch (str) {
  8977. case "CocoPi":
  8978. aTool = 57;
  8979. _iframe = $$("iframe", {
  8980. "allowpaymentrequest": "allowpaymentrequest",
  8981. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8982. "webkitallowfullscreen": "",
  8983. "mozallowfullscreen": "",
  8984. "frameborder": "no",
  8985. "border": "0",
  8986. "scrolling ": "no",
  8987. "style": {
  8988. "cssText": "border:0;width:100%;height:100%"
  8989. },
  8990. "src": "https://pi.cocorobo.cn/"
  8991. })
  8992. _box.appendChild(_iframe);
  8993. _box.appendChild(_jie);
  8994. _formdiv = new U.UF.UI.form(
  8995. "CocoPi",
  8996. _box, {
  8997. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8998. "style": {
  8999. "width": "90%",
  9000. "height": "90%",
  9001. "overflow": 'hidden'
  9002. },
  9003. "onresize": function () { }
  9004. }, {
  9005. closecallback: function () { }
  9006. }, {
  9007. "style": {
  9008. "height": "36px"
  9009. }
  9010. }).form; //创建窗体
  9011. _taskbar = {
  9012. "id": str + _formdiv.id,
  9013. "style": {
  9014. "backgroundImage": "url(/img/icon/cocopi.png)"
  9015. },
  9016. "name": "CocoPi",
  9017. "forms": _formdiv,
  9018. "click": function () {
  9019. U.MD.D.I.openApplication(str, obj, info);
  9020. }
  9021. }
  9022. break;
  9023. }
  9024. if (_iframe) {
  9025. if (str == 'CocoPi') {
  9026. _iframe = _formdiv.querySelector('iframe')
  9027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9028. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9029. })
  9030. if (onloadListener) {
  9031. _iframe.contentDocument.location.reload()
  9032. } else {
  9033. _iframe.contentDocument.location.reload()
  9034. }
  9035. }
  9036. _jie.onclick = async () => {
  9037. let text = ''
  9038. if (aTool == 57) {
  9039. text = _iframe.contentWindow.getLoadXmlStr()
  9040. }
  9041. _loading.style.display = 'flex'
  9042. console.log(_loading);
  9043. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9044. _loading.style.display = 'none'
  9045. let _div = document.createElement('div')
  9046. _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;"
  9047. let _inner = document.createElement('div')
  9048. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9049. _inner.innerHTML = "上传成功"
  9050. _div.appendChild(_inner)
  9051. _iframe.contentWindow.window.document.body.appendChild(_div)
  9052. _div.onclick = () => {
  9053. _iframe.contentWindow.window.document.body.removeChild(_div)
  9054. }
  9055. setTimeout(() => {
  9056. _iframe.contentWindow.window.document.body.removeChild(_div)
  9057. }, 1000);
  9058. }, [], { "type": "POST", "withCredentials": true });
  9059. }
  9060. }
  9061. }
  9062. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9063. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9064. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9065. _userid = student.userid, //登录用户id
  9066. _username = student.student //用户名字
  9067. let _iframe;
  9068. let _cid = cid,
  9069. _stage = stage,
  9070. _task = task,
  9071. _tool = tool;
  9072. var _jie = $$("div", {
  9073. "style": {
  9074. "position": "absolute",
  9075. "bottom": "50px",
  9076. "right": "50px",
  9077. "zIndex": "9999",
  9078. "backgroundColor": "#2268bc",
  9079. "color": "#fff",
  9080. "padding": "12px 20px",
  9081. "cursor": "pointer",
  9082. "borderRadius": "4px",
  9083. },
  9084. "innerHTML": "提交作业"
  9085. })
  9086. let aTool = ''
  9087. let _loading = document.createElement('div')
  9088. _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;"
  9089. // _loading.id = "";
  9090. let _lchild = document.createElement('div')
  9091. let _limg = document.createElement('img')
  9092. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9093. _limg.style = "width: 26px;margin-right: 10px;"
  9094. _lchild.appendChild(_limg)
  9095. let _lspan = document.createElement('span')
  9096. _lspan.innerHTML = "上传中..."
  9097. _lchild.appendChild(_lspan)
  9098. _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%);"
  9099. _loading.appendChild(_lchild)
  9100. var _box = $$('div', {
  9101. "style": {
  9102. "position": "relative",
  9103. "width": "100%",
  9104. "height": "100%",
  9105. },
  9106. })
  9107. _box.appendChild(_loading)
  9108. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9109. switch (str) {
  9110. case "CocoPi":
  9111. aTool = 57;
  9112. _iframe = $$("iframe", {
  9113. "allowpaymentrequest": "allowpaymentrequest",
  9114. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9115. "webkitallowfullscreen": "",
  9116. "mozallowfullscreen": "",
  9117. "frameborder": "no",
  9118. "border": "0",
  9119. "scrolling ": "no",
  9120. "style": {
  9121. "cssText": "border:0;width:100%;height:100%"
  9122. },
  9123. "src": "https://pi.cocorobo.cn/"
  9124. })
  9125. _box.appendChild(_iframe);
  9126. _box.appendChild(_jie);
  9127. _formdiv = new U.UF.UI.form(
  9128. "CocoPi-" + _username,
  9129. _box, {
  9130. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9131. "style": {
  9132. "width": "90%",
  9133. "height": "90%",
  9134. "overflow": 'hidden'
  9135. },
  9136. "onresize": function () { }
  9137. }, {
  9138. closecallback: function () { }
  9139. }, {
  9140. "style": {
  9141. "height": "36px"
  9142. }
  9143. }).form; //创建窗体
  9144. _taskbar = {
  9145. "id": str + _formdiv.id,
  9146. "style": {
  9147. "backgroundImage": "url(/img/icon/cocopi.png)"
  9148. },
  9149. "name": "CocoPi",
  9150. "forms": _formdiv,
  9151. "click": function () {
  9152. U.MD.D.I.openApplication(str, obj, info);
  9153. }
  9154. }
  9155. break;
  9156. }
  9157. if (_iframe) {
  9158. if (str == 'CocoPi') {
  9159. _iframe = _formdiv.querySelector('iframe')
  9160. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9161. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9162. })
  9163. if (onloadListener) {
  9164. _iframe.contentDocument.location.reload()
  9165. } else {
  9166. _iframe.contentDocument.location.reload()
  9167. }
  9168. }
  9169. _jie.onclick = async () => {
  9170. let text = ''
  9171. if (aTool == 57) {
  9172. text = _iframe.contentWindow.getLoadXmlStr()
  9173. }
  9174. _loading.style.display = 'flex'
  9175. console.log(_loading);
  9176. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9177. _loading.style.display = 'none'
  9178. let _div = document.createElement('div')
  9179. _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;"
  9180. let _inner = document.createElement('div')
  9181. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9182. _inner.innerHTML = "上传成功"
  9183. _div.appendChild(_inner)
  9184. _iframe.contentWindow.window.document.body.appendChild(_div)
  9185. _div.onclick = () => {
  9186. _iframe.contentWindow.window.document.body.removeChild(_div)
  9187. }
  9188. setTimeout(() => {
  9189. _iframe.contentWindow.window.document.body.removeChild(_div)
  9190. }, 1000);
  9191. }, [], { "type": "POST", "withCredentials": true });
  9192. }
  9193. }
  9194. }
  9195. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9196. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9197. if (res.value[0].length > 0) {
  9198. if (atool == 57) {
  9199. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9200. }
  9201. } else {
  9202. if (atool == 57) {
  9203. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9204. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9205. }
  9206. }
  9207. }, [], { "type": "POST", "withCredentials": true });
  9208. }