DeskTop.js 537 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844
  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": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  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. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  730. ];
  731. //hk
  732. U.MD.D.I.hkaceStudentDeskIcon = [
  733. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  736. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  739. ];
  740. //香海正覺蓮社佛教正覺中學
  741. U.MD.D.I.hkZJLSteacherDeskIcon = [
  742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  748. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  749. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  750. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  751. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  752. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  753. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  754. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  755. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. ];
  759. //香海正覺蓮社佛教正覺中學
  760. U.MD.D.I.hkZJLSStudentDeskIcon = [
  761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. ];
  766. //云海
  767. U.MD.D.I.yunhaiTeacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  775. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  776. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  777. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  778. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  779. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  782. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  783. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. ];
  787. //福田
  788. U.MD.D.I.heyuanTeacherDeskIcon = [
  789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  793. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  794. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  796. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  797. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  798. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  801. ];
  802. //福田
  803. U.MD.D.I.heyuanAdminDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  811. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  812. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  815. ];
  816. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  817. U.MD.D.I.szherTeacherDeskIcon = [
  818. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  819. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  820. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  821. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  822. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  823. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  824. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  825. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  829. ];
  830. //dsei
  831. U.MD.D.I.dseiTeacherDeskIcon = [
  832. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  833. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  834. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  835. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  836. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  838. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  839. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  840. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  841. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  842. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  843. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  844. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  845. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  846. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  847. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  848. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  849. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  850. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  851. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  852. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  853. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  854. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  855. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  856. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  857. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  858. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  859. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  860. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  861. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  862. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  863. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  864. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  865. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  866. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  867. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  868. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  869. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  872. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  873. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  874. ];
  875. //dsei
  876. U.MD.D.I.dseiAdminDeskIcon = [
  877. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  878. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  879. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  880. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  886. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  887. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  888. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  889. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  890. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  891. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  892. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  893. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  894. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  895. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  896. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  897. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  898. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  899. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  900. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  901. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  902. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  903. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  904. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  905. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  906. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  907. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  908. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  909. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  910. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  911. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  912. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  913. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  918. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  919. ];
  920. //dsei
  921. U.MD.D.I.dseiStudentDeskIcon = [
  922. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  923. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  925. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  928. ];
  929. //未来教育基地
  930. U.MD.D.I.szjkyTeacherDeskIcon = [
  931. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  932. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  933. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  935. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  936. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  937. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  938. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  939. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  940. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  941. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  942. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  945. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  946. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  947. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  948. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  949. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  950. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  951. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  952. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  953. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. ];
  1226. //盐田区幼儿园
  1227. U.MD.D.I.ytyStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. ];
  1232. //#region 桌面初始化a
  1233. /**
  1234. * 初始化桌面的起始函数
  1235. *
  1236. */
  1237. U.MD.D.I.init = function () {
  1238. if ($("#U_MD_D_K")[0]) {
  1239. //初始化桌面图标
  1240. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1241. // var clickUrl = ':12588/requestIp.php';
  1242. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1243. // U.MD.D.I.Ip = data;
  1244. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1245. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1246. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1247. // })
  1248. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1249. // })
  1250. }
  1251. }
  1252. /**
  1253. * 模式切换
  1254. *
  1255. */
  1256. U.MD.D.I.ModeCheck = function (type) {
  1257. if (US.Config.type == type) {
  1258. return
  1259. }
  1260. US.Config.type = type
  1261. $('.U_PBL_Check .active')[0].className = ''
  1262. if (type == 1) {
  1263. $('.U_PBL_Check div')[0].className = 'active'
  1264. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1265. } else {
  1266. $('.U_PBL_Check div')[1].className = 'active'
  1267. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1268. }
  1269. //初始化桌面图标
  1270. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1271. if (type == 2) {
  1272. U.MD.D.I.openApplication("project")
  1273. }
  1274. }
  1275. /**
  1276. * 隐藏任务栏
  1277. *
  1278. * @param {element} 桌面元素
  1279. */
  1280. U.MD.D.I.hiddenTaskbar = function (el) {
  1281. //任务栏位置变小
  1282. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1283. //桌面的位置变大
  1284. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1285. }
  1286. /**
  1287. * 隐藏任务栏
  1288. *
  1289. * @param {element} 桌面元素
  1290. */
  1291. U.MD.D.I.hiddenTaskbarout = function (el) {
  1292. //任务栏位置变小
  1293. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1294. //任务栏位置变化
  1295. U.selectEl(el).css({ "bottom": "-60px" });
  1296. //桌面的位置变大
  1297. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1298. }
  1299. }
  1300. /**
  1301. * 初始化打印桌面图标
  1302. *
  1303. * @param {element} 桌面元素
  1304. */
  1305. U.MD.D.I.initDesktopIcons = function (el, type) {
  1306. var i, //用于循环
  1307. _content, //桌面图标元素
  1308. _iconcontent, //桌面图标元素
  1309. _frag = $$("frag"), //定义一个碎片元素
  1310. _type = US.userInfo.type,
  1311. _org = US.userInfo.org,
  1312. _oid = US.userInfo.organizeid,
  1313. _role = US.userInfo.role,
  1314. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1315. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1316. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1317. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1318. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1319. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1320. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1321. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1322. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1323. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1324. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1325. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1326. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1327. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1328. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1329. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1330. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1331. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1332. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1333. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1334. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1335. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1336. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1337. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1338. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1339. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1340. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1341. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1342. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1343. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1344. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1345. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1346. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1347. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1348. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1349. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1350. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1351. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1352. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1353. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1354. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1355. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1356. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1357. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1358. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1359. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1360. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1361. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1362. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1363. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1364. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1365. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1366. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1367. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1368. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1369. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1370. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1371. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1372. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1373. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1374. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1375. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1376. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1377. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1378. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1379. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1380. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1381. 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'];
  1382. 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'];
  1383. //清楚桌面图标
  1384. el.innerHTML = "";
  1385. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1386. _teacherDesktopIconInfo.push(
  1387. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1388. { "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)" } },
  1389. )
  1390. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1391. }
  1392. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1393. _teacherDesktopIconInfo.push(
  1394. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1395. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1396. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1397. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1398. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1399. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1400. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1401. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1402. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1403. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1404. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1405. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1406. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1407. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1408. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1409. )
  1410. }
  1411. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1412. _teacherDesktopIconInfo.push(
  1413. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1414. )
  1415. }
  1416. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1417. // _teacherDesktopIconInfo.push(
  1418. // )
  1419. // }
  1420. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. )
  1425. }
  1426. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1427. _teacherDesktopIconInfo.push(
  1428. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1432. )
  1433. _studentDesktopIconInfo.push(
  1434. )
  1435. }
  1436. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1437. _teacherDesktopIconInfo.push(
  1438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1439. )
  1440. _studentDesktopIconInfo.push(
  1441. )
  1442. }
  1443. //麒麟二中 和 民新小学
  1444. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1445. _teacherDesktopIconInfo.push(
  1446. )
  1447. }
  1448. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1449. _teacherDesktopIconInfo.push(
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. )
  1454. }
  1455. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. )
  1459. }
  1460. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1461. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1462. _teacherDesktopIconInfo.push(
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1465. )
  1466. }
  1467. //麒麟二中
  1468. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1469. _studentDesktopIconInfo.push(
  1470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1471. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1472. )
  1473. }
  1474. //万科双语
  1475. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1476. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1477. if (el.Name == '项目管理') {
  1478. el.Name = 'PBL项目'
  1479. }
  1480. return el
  1481. })
  1482. _studentDesktopIconInfo3.push(
  1483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1484. )
  1485. }
  1486. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1487. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1488. return el.Name != '魔盒识字' && el.Name != '24点'
  1489. })
  1490. }
  1491. 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) {
  1492. _studentDesktopIconInfo.push(
  1493. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1495. )
  1496. }
  1497. //循环创建桌面图标
  1498. if (type == 1) {
  1499. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1500. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1501. _content = $$("div", {
  1502. className: "U_MD_D_KO",
  1503. "onmousedown": U.UF.C.closure(function (obj) {
  1504. //防止拖动图标即打开了桌面应用
  1505. U.MD.D.click(this, obj);
  1506. }, [_studentDesktopIconInfo[i]]),
  1507. "onclick": U.UF.C.closure(function (obj) {
  1508. //防止拖动图标即打开了桌面应用
  1509. U.MD.D.click(this, obj);
  1510. }, [_studentDesktopIconInfo[i]])
  1511. }, _frag); //
  1512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1515. }
  1516. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1517. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1518. _content = $$("div", {
  1519. className: "U_MD_D_KO",
  1520. "onmousedown": U.UF.C.closure(function (obj) {
  1521. //防止拖动图标即打开了桌面应用
  1522. U.MD.D.click(this, obj);
  1523. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1524. "onclick": U.UF.C.closure(function (obj) {
  1525. //防止拖动图标即打开了桌面应用
  1526. U.MD.D.click(this, obj);
  1527. }, [_hkZJLSStudentDeskIconInfo[i]])
  1528. }, _frag); //
  1529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1532. } //
  1533. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1534. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1535. _content = $$("div", {
  1536. className: "U_MD_D_KO",
  1537. "onmousedown": U.UF.C.closure(function (obj) {
  1538. //防止拖动图标即打开了桌面应用
  1539. U.MD.D.click(this, obj);
  1540. }, [_ytyStudentDeskIconInfo[i]]),
  1541. "onclick": U.UF.C.closure(function (obj) {
  1542. //防止拖动图标即打开了桌面应用
  1543. U.MD.D.click(this, obj);
  1544. }, [_ytyStudentDeskIconInfo[i]])
  1545. }, _frag); //
  1546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1549. } //
  1550. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1551. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1552. _content = $$("div", {
  1553. className: "U_MD_D_KO",
  1554. "onmousedown": U.UF.C.closure(function (obj) {
  1555. //防止拖动图标即打开了桌面应用
  1556. U.MD.D.click(this, obj);
  1557. }, [_jccssylStudentDeskIconInfo[i]]),
  1558. "onclick": U.UF.C.closure(function (obj) {
  1559. //防止拖动图标即打开了桌面应用
  1560. U.MD.D.click(this, obj);
  1561. }, [_jccssylStudentDeskIconInfo[i]])
  1562. }, _frag); //
  1563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1566. }
  1567. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1568. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1569. _content = $$("div", {
  1570. className: "U_MD_D_KO",
  1571. "onmousedown": U.UF.C.closure(function (obj) {
  1572. //防止拖动图标即打开了桌面应用
  1573. U.MD.D.click(this, obj);
  1574. }, [_caleStudentDeskIconInfo[i]]),
  1575. "onclick": U.UF.C.closure(function (obj) {
  1576. //防止拖动图标即打开了桌面应用
  1577. U.MD.D.click(this, obj);
  1578. }, [_caleStudentDeskIconInfo[i]])
  1579. }, _frag); //
  1580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1583. }
  1584. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1585. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1586. _content = $$("div", {
  1587. className: "U_MD_D_KO",
  1588. "onmousedown": U.UF.C.closure(function (obj) {
  1589. //防止拖动图标即打开了桌面应用
  1590. U.MD.D.click(this, obj);
  1591. }, [_thuioeStudentDeskIconInfo[i]]),
  1592. "onclick": U.UF.C.closure(function (obj) {
  1593. //防止拖动图标即打开了桌面应用
  1594. U.MD.D.click(this, obj);
  1595. }, [_thuioeStudentDeskIconInfo[i]])
  1596. }, _frag); //
  1597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1600. }
  1601. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1602. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1603. _content = $$("div", {
  1604. className: "U_MD_D_KO",
  1605. "onmousedown": U.UF.C.closure(function (obj) {
  1606. //防止拖动图标即打开了桌面应用
  1607. U.MD.D.click(this, obj);
  1608. }, [_tpcStudentDeskIconInfo[i]]),
  1609. "onclick": U.UF.C.closure(function (obj) {
  1610. //防止拖动图标即打开了桌面应用
  1611. U.MD.D.click(this, obj);
  1612. }, [_tpcStudentDeskIconInfo[i]])
  1613. }, _frag); //
  1614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1617. } //
  1618. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1619. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1620. _content = $$("div", {
  1621. className: "U_MD_D_KO",
  1622. "onmousedown": U.UF.C.closure(function (obj) {
  1623. //防止拖动图标即打开了桌面应用
  1624. U.MD.D.click(this, obj);
  1625. }, [_chjyjStudentDeskIconInfo[i]]),
  1626. "onclick": U.UF.C.closure(function (obj) {
  1627. //防止拖动图标即打开了桌面应用
  1628. U.MD.D.click(this, obj);
  1629. }, [_chjyjStudentDeskIconInfo[i]])
  1630. }, _frag); //
  1631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1634. }
  1635. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1636. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1637. _content = $$("div", {
  1638. className: "U_MD_D_KO",
  1639. "onmousedown": U.UF.C.closure(function (obj) {
  1640. //防止拖动图标即打开了桌面应用
  1641. U.MD.D.click(this, obj);
  1642. }, [_szjkyStudentDeskIconInfo[i]]),
  1643. "onclick": U.UF.C.closure(function (obj) {
  1644. //防止拖动图标即打开了桌面应用
  1645. U.MD.D.click(this, obj);
  1646. }, [_szjkyStudentDeskIconInfo[i]])
  1647. }, _frag); //
  1648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1651. }
  1652. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1653. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1654. _content = $$("div", {
  1655. className: "U_MD_D_KO",
  1656. "onmousedown": U.UF.C.closure(function (obj) {
  1657. //防止拖动图标即打开了桌面应用
  1658. U.MD.D.click(this, obj);
  1659. }, [_dseiStudentDeskIconInfo[i]]),
  1660. "onclick": U.UF.C.closure(function (obj) {
  1661. //防止拖动图标即打开了桌面应用
  1662. U.MD.D.click(this, obj);
  1663. }, [_dseiStudentDeskIconInfo[i]])
  1664. }, _frag); //
  1665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1668. }
  1669. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1670. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1671. _content = $$("div", {
  1672. className: "U_MD_D_KO",
  1673. "onmousedown": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1677. "onclick": U.UF.C.closure(function (obj) {
  1678. //防止拖动图标即打开了桌面应用
  1679. U.MD.D.click(this, obj);
  1680. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1681. }, _frag); //
  1682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1685. }
  1686. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1687. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1688. _content = $$("div", {
  1689. className: "U_MD_D_KO",
  1690. "onmousedown": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_siesStudentDeskIconInfo[i]]),
  1694. "onclick": U.UF.C.closure(function (obj) {
  1695. //防止拖动图标即打开了桌面应用
  1696. U.MD.D.click(this, obj);
  1697. }, [_siesStudentDeskIconInfo[i]])
  1698. }, _frag); //
  1699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1702. }
  1703. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1704. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1705. _content = $$("div", {
  1706. className: "U_MD_D_KO",
  1707. "onmousedown": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_hkStudentDeskIconInfo[i]]),
  1711. "onclick": U.UF.C.closure(function (obj) {
  1712. //防止拖动图标即打开了桌面应用
  1713. U.MD.D.click(this, obj);
  1714. }, [_hkStudentDeskIconInfo[i]])
  1715. }, _frag); //
  1716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1719. }
  1720. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1721. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1722. _content = $$("div", {
  1723. className: "U_MD_D_KO",
  1724. "onmousedown": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_hkaceStudentDeskIconInfo[i]]),
  1728. "onclick": U.UF.C.closure(function (obj) {
  1729. //防止拖动图标即打开了桌面应用
  1730. U.MD.D.click(this, obj);
  1731. }, [_hkaceStudentDeskIconInfo[i]])
  1732. }, _frag); //
  1733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1736. }
  1737. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1738. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1739. _content = $$("div", {
  1740. className: "U_MD_D_KO",
  1741. "onmousedown": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_studentDesktopIconInfo[i]]),
  1745. "onclick": U.UF.C.closure(function (obj) {
  1746. //防止拖动图标即打开了桌面应用
  1747. U.MD.D.click(this, obj);
  1748. }, [_studentDesktopIconInfo[i]])
  1749. }, _frag); //
  1750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1753. }
  1754. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1755. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1756. _content = $$("div", {
  1757. className: "U_MD_D_KO",
  1758. "onmousedown": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_tcStudentDeskIconInfo[i]]),
  1762. "onclick": U.UF.C.closure(function (obj) {
  1763. //防止拖动图标即打开了桌面应用
  1764. U.MD.D.click(this, obj);
  1765. }, [_tcStudentDeskIconInfo[i]])
  1766. }, _frag); //
  1767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1770. }
  1771. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1772. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1773. _content = $$("div", {
  1774. className: "U_MD_D_KO",
  1775. "onmousedown": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_szscStudentDeskIconInfo[i]]),
  1779. "onclick": U.UF.C.closure(function (obj) {
  1780. //防止拖动图标即打开了桌面应用
  1781. U.MD.D.click(this, obj);
  1782. }, [_szscStudentDeskIconInfo[i]])
  1783. }, _frag); //
  1784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1787. }
  1788. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1789. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1790. _content = $$("div", {
  1791. className: "U_MD_D_KO",
  1792. "onmousedown": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_studentDesktopIconInfo3[i]]),
  1796. "onclick": U.UF.C.closure(function (obj) {
  1797. //防止拖动图标即打开了桌面应用
  1798. U.MD.D.click(this, obj);
  1799. }, [_studentDesktopIconInfo3[i]])
  1800. }, _frag); //
  1801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1804. }
  1805. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1806. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1807. _content = $$("div", {
  1808. className: "U_MD_D_KO",
  1809. "onmousedown": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_studentDesktopIconInfo2[i]]),
  1813. "onclick": U.UF.C.closure(function (obj) {
  1814. //防止拖动图标即打开了桌面应用
  1815. U.MD.D.click(this, obj);
  1816. }, [_studentDesktopIconInfo2[i]])
  1817. }, _frag); //
  1818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1821. }
  1822. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1823. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1824. _content = $$("div", {
  1825. className: "U_MD_D_KO",
  1826. "onmousedown": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_wanketeacherDesktopIconInfo[i]]),
  1830. "onclick": U.UF.C.closure(function (obj) {
  1831. //防止拖动图标即打开了桌面应用
  1832. U.MD.D.click(this, obj);
  1833. }, [_wanketeacherDesktopIconInfo[i]])
  1834. }, _frag); //
  1835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1838. }
  1839. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1840. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1841. _content = $$("div", {
  1842. className: "U_MD_D_KO",
  1843. "onmousedown": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_wankeAdminDesktopIconInfo[i]]),
  1847. "onclick": U.UF.C.closure(function (obj) {
  1848. //防止拖动图标即打开了桌面应用
  1849. U.MD.D.click(this, obj);
  1850. }, [_wankeAdminDesktopIconInfo[i]])
  1851. }, _frag); //
  1852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1855. }
  1856. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1857. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1858. _content = $$("div", {
  1859. className: "U_MD_D_KO",
  1860. "onmousedown": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_jccssylTeacherDeskIconInfo[i]]),
  1864. "onclick": U.UF.C.closure(function (obj) {
  1865. //防止拖动图标即打开了桌面应用
  1866. U.MD.D.click(this, obj);
  1867. }, [_jccssylTeacherDeskIconInfo[i]])
  1868. }, _frag); //
  1869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1872. }
  1873. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1874. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1875. _content = $$("div", {
  1876. className: "U_MD_D_KO",
  1877. "onmousedown": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_caleTeacherDeskIconInfo[i]]),
  1881. "onclick": U.UF.C.closure(function (obj) {
  1882. //防止拖动图标即打开了桌面应用
  1883. U.MD.D.click(this, obj);
  1884. }, [_caleTeacherDeskIconInfo[i]])
  1885. }, _frag); //
  1886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1889. }
  1890. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1891. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1892. _content = $$("div", {
  1893. className: "U_MD_D_KO",
  1894. "onmousedown": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_tpcOrganizerDeskIconInfo[i]]),
  1898. "onclick": U.UF.C.closure(function (obj) {
  1899. //防止拖动图标即打开了桌面应用
  1900. U.MD.D.click(this, obj);
  1901. }, [_tpcOrganizerDeskIconInfo[i]])
  1902. }, _frag); //
  1903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1906. }
  1907. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1908. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1909. _content = $$("div", {
  1910. className: "U_MD_D_KO",
  1911. "onmousedown": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_tpcTeacherDeskIconInfo[i]]),
  1915. "onclick": U.UF.C.closure(function (obj) {
  1916. //防止拖动图标即打开了桌面应用
  1917. U.MD.D.click(this, obj);
  1918. }, [_tpcTeacherDeskIconInfo[i]])
  1919. }, _frag); //
  1920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1923. }
  1924. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1925. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1926. _content = $$("div", {
  1927. className: "U_MD_D_KO",
  1928. "onmousedown": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_teacherDesktopIconInfo2[i]]),
  1932. "onclick": U.UF.C.closure(function (obj) {
  1933. //防止拖动图标即打开了桌面应用
  1934. U.MD.D.click(this, obj);
  1935. }, [_teacherDesktopIconInfo2[i]])
  1936. }, _frag); //
  1937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1940. }
  1941. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1942. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1943. _content = $$("div", {
  1944. className: "U_MD_D_KO",
  1945. "onmousedown": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_thuioeTeacherDeskIconInfo[i]]),
  1949. "onclick": U.UF.C.closure(function (obj) {
  1950. //防止拖动图标即打开了桌面应用
  1951. U.MD.D.click(this, obj);
  1952. }, [_thuioeTeacherDeskIconInfo[i]])
  1953. }, _frag); //
  1954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1957. }
  1958. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1959. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1960. _content = $$("div", {
  1961. className: "U_MD_D_KO",
  1962. "onmousedown": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_lotechTeacherDeskIconInfo[i]]),
  1966. "onclick": U.UF.C.closure(function (obj) {
  1967. //防止拖动图标即打开了桌面应用
  1968. U.MD.D.click(this, obj);
  1969. }, [_lotechTeacherDeskIconInfo[i]])
  1970. }, _frag); //
  1971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1974. }//
  1975. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1976. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1977. _content = $$("div", {
  1978. className: "U_MD_D_KO",
  1979. "onmousedown": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1983. "onclick": U.UF.C.closure(function (obj) {
  1984. //防止拖动图标即打开了桌面应用
  1985. U.MD.D.click(this, obj);
  1986. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1987. }, _frag); //
  1988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1991. }
  1992. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1993. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1994. _content = $$("div", {
  1995. className: "U_MD_D_KO",
  1996. "onmousedown": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_siesTeacherDeskIconInfo[i]]),
  2000. "onclick": U.UF.C.closure(function (obj) {
  2001. //防止拖动图标即打开了桌面应用
  2002. U.MD.D.click(this, obj);
  2003. }, [_siesTeacherDeskIconInfo[i]])
  2004. }, _frag); //
  2005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2008. }
  2009. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2010. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2011. _content = $$("div", {
  2012. className: "U_MD_D_KO",
  2013. "onmousedown": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_longhuaTeacherDeskIconInfo[i]]),
  2017. "onclick": U.UF.C.closure(function (obj) {
  2018. //防止拖动图标即打开了桌面应用
  2019. U.MD.D.click(this, obj);
  2020. }, [_longhuaTeacherDeskIconInfo[i]])
  2021. }, _frag); //
  2022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2025. }
  2026. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2027. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2028. _content = $$("div", {
  2029. className: "U_MD_D_KO",
  2030. "onmousedown": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_ytyTeacherDeskIconInfo[i]]),
  2034. "onclick": U.UF.C.closure(function (obj) {
  2035. //防止拖动图标即打开了桌面应用
  2036. U.MD.D.click(this, obj);
  2037. }, [_ytyTeacherDeskIconInfo[i]])
  2038. }, _frag); //
  2039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2042. }
  2043. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2044. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2045. _content = $$("div", {
  2046. className: "U_MD_D_KO",
  2047. "onmousedown": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2051. "onclick": U.UF.C.closure(function (obj) {
  2052. //防止拖动图标即打开了桌面应用
  2053. U.MD.D.click(this, obj);
  2054. }, [_yunhaiTeacherDeskIconInfo[i]])
  2055. }, _frag); //
  2056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2059. } //_hkStudentDeskIconInfo
  2060. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2061. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2062. _content = $$("div", {
  2063. className: "U_MD_D_KO",
  2064. "onmousedown": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2068. "onclick": U.UF.C.closure(function (obj) {
  2069. //防止拖动图标即打开了桌面应用
  2070. U.MD.D.click(this, obj);
  2071. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2072. }, _frag); //
  2073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2076. }
  2077. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2078. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_hkTeacherDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_hkTeacherDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2095. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_hkaceTeacherDeskIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_hkaceTeacherDeskIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2112. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_gdjgAdminDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_gdjgAdminDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2129. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_gdjgTeacherDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_gdjgTeacherDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2146. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2147. _content = $$("div", {
  2148. className: "U_MD_D_KO",
  2149. "onmousedown": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_szherTeacherDeskIconInfo[i]]),
  2153. "onclick": U.UF.C.closure(function (obj) {
  2154. //防止拖动图标即打开了桌面应用
  2155. U.MD.D.click(this, obj);
  2156. }, [_szherTeacherDeskIconInfo[i]])
  2157. }, _frag); //
  2158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2161. }
  2162. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2163. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_heyuannAdminDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_heyuannAdminDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2180. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_heyuanTeacherDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_heyuanTeacherDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2195. } //
  2196. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2197. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_dseiAdminDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_dseiAdminDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2212. }
  2213. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2214. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_dseiTeacherDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_dseiTeacherDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2229. } //
  2230. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2231. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjAdminDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_chjyjAdminDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2246. }//
  2247. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2248. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_chjyjTeacherDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_chjyjTeacherDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2265. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_szjkyAdminDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_szjkyAdminDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2280. }//
  2281. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2282. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_szjkyTeacherDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_szjkyTeacherDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2297. }
  2298. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2299. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_futianAdminDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_futianAdminDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2316. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_futianTeacherDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_futianTeacherDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2333. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_MingdeTeacherDeskIcon[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_MingdeTeacherDeskIcon[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2348. }
  2349. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2350. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_lhsAdminDesktopIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_lhsAdminDesktopIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2367. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_lhsteacherDesktopIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_lhsteacherDesktopIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2384. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_zhoujiateacherDesktopIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2401. for (i = 0; i < _hanDeskIcon.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_hanDeskIcon[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hanDeskIcon[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2416. }
  2417. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2418. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_orgStemDeskIcon[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_orgStemDeskIcon[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2433. }
  2434. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2435. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_szulsDeskIcon[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_szulsDeskIcon[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2450. }
  2451. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2452. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  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. }, [_orgDesktopIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_orgDesktopIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2469. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_schoolDesktopIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_schoolDesktopIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2486. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_GMteacherDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_GMteacherDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2503. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SONGteacherDesktopIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_SONGteacherDesktopIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2520. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_GMstudentDesktopIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_GMstudentDesktopIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2537. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_tcTeacherDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_tcTeacherDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2554. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tcOrganizerDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_tcOrganizerDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2571. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_szscTeacherDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_szscTeacherDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2588. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_szscOrganizerDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_szscOrganizerDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else {
  2605. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_teacherDesktopIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_teacherDesktopIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. }
  2622. } else {
  2623. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. style: { 'width': '124px', 'height': '145px' },
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_easyDesktopIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_easyDesktopIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2639. }
  2640. }
  2641. if (type == 1) {
  2642. //加载好后给图标定位
  2643. U.MD.D.iconPostion($(_frag).Child());
  2644. } else {
  2645. //加载好后给图标定位
  2646. U.MD.D.iconPostion2($(_frag).Child());
  2647. }
  2648. //把图标加载到页面
  2649. el.appendChild(_frag);
  2650. }
  2651. /**
  2652. * 显示任务栏
  2653. *
  2654. * @param {element} 桌面元素
  2655. */
  2656. U.MD.D.I.displayTaskbar = function (el) {
  2657. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2658. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2659. //任务栏位置变化
  2660. U.selectEl(el).css({ "bottom": "0px" });
  2661. //桌面位置变话
  2662. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2663. }
  2664. }
  2665. //#region 桌面图标拖动逻辑
  2666. /**
  2667. * 桌面排列图标
  2668. *
  2669. * @param {element} 桌面元素
  2670. * @param {object} 上下相距的距离
  2671. * @param {object} 左右相距的距离
  2672. * @return {object} 命名空间
  2673. */
  2674. U.MD.D.iconPostion = function (childs, top, left) {
  2675. var i; //用于循环处理
  2676. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2677. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2678. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2679. for (i = 0; i < childs.length; i++) {
  2680. //如果竖排top超过了范围处理
  2681. if (top + 95 > US.height - 10) {
  2682. //left超过了页面范围处理,则向上重叠打印处理
  2683. if ((left + 180) > US.width) {
  2684. top -= 110;
  2685. left -= 90;
  2686. }
  2687. //没有超过范围,那么left+90添加到下一个竖排打印
  2688. else {
  2689. left += 90;
  2690. top = 15;
  2691. };
  2692. }
  2693. //给图标的位置赋值
  2694. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2695. if (i < childs.length - 1) {
  2696. //页面图标每次向下加95
  2697. top += 95;
  2698. }
  2699. }
  2700. //返回最后调用的图标的位置
  2701. return [top, left];
  2702. }
  2703. /**
  2704. * 桌面排列图标
  2705. *
  2706. * @param {element} 桌面元素
  2707. * @param {object} 上下相距的距离
  2708. * @param {object} 左右相距的距离
  2709. * @return {object} 命名空间
  2710. */
  2711. U.MD.D.iconPostion2 = function (childs, top, left) {
  2712. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2713. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2714. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2715. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2716. for (i = 0; i < childs.length; i++) {
  2717. //如果竖排top超过了范围处理
  2718. if (left + 150 > US.width - 10) {
  2719. //left超过了页面范围处理,则向上重叠打印处理
  2720. if ((top + 180) > US.Height) {
  2721. top -= 150;
  2722. left -= 150;
  2723. }
  2724. //没有超过范围,那么left+90添加到下一个竖排打印
  2725. else {
  2726. top += 150;
  2727. left = ol;
  2728. };
  2729. }
  2730. //给图标的位置赋值
  2731. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2732. if (i < childs.length - 1) {
  2733. //页面图标每次向下加95
  2734. left += 150;
  2735. }
  2736. }
  2737. //返回最后调用的图标的位置
  2738. return [top, left];
  2739. }
  2740. /**
  2741. * 桌面点击事件逻辑
  2742. *
  2743. * @param {element} 桌面元素
  2744. * @param {object} 上下相距的距离
  2745. * @param {object} 左右相距的距离
  2746. * @return {object} 命名空间
  2747. */
  2748. U.MD.D.click = function (el, obj) {
  2749. var _buttonnumber = event.button; //点击的按钮的事件值
  2750. var _userinfo = US.userInfo;
  2751. U.UF.EV.stopBubble(); //阻止向上冒泡
  2752. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2753. if (_buttonnumber < 2) {
  2754. //如果是click事件的处理
  2755. if (event.type == "click") {
  2756. //如果元素在mousemove事件中没有移动则出发click事件
  2757. if (!U.MD.D.I.IsDrag) {
  2758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2759. U.alert("请先登录您的账号!");
  2760. setTimeout(() => {
  2761. U.MD.U.L.login();
  2762. }, 2000);
  2763. } else {
  2764. //打开应用处理
  2765. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2766. }
  2767. }
  2768. }
  2769. //如果是mouse事件的处理
  2770. else {
  2771. if (US.Config.type == '1') {
  2772. //拖动处理,添加拖动和拖动结束事件
  2773. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2774. }
  2775. }
  2776. U.MD.D.I.IsDrag = false;
  2777. }
  2778. }
  2779. /**
  2780. * 拖动的处理
  2781. *
  2782. */
  2783. U.MD.D.iconMove = function () {
  2784. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2785. U.MD.D.I.IsDrag = true;
  2786. }
  2787. /**
  2788. * 拖动结束后,这里是定位处理,以网状的形式定位
  2789. *
  2790. * @param {element} 拖动的元素
  2791. * @return {object} 命名空间
  2792. */
  2793. U.MD.D.iconUp = function (el) {
  2794. var _top = 15,
  2795. _left = 20,
  2796. _margin,
  2797. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2798. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2799. if (_positioninfo["OT"] > 15) {
  2800. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2801. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2802. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2803. }
  2804. if (_positioninfo["OL"] > 20) {
  2805. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2806. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2807. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2808. }
  2809. //while循环判断么一个重叠的元素
  2810. do {
  2811. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2812. _top = _positioninfo[0] + 95; //得到定位后的top
  2813. _left = _positioninfo[1]; //得到定位后的left
  2814. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2815. }
  2816. /**
  2817. * 判断拖动后图标是否重叠
  2818. *
  2819. * @param {element} 拖动的元素
  2820. * @param {element} 桌面所有的元素
  2821. * @param {array} 拖动元素的位置
  2822. ----------[0] 上 top
  2823. ----------[1] 左 left
  2824. * @return {object} 命名空间
  2825. */
  2826. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2827. //循环所有的图标
  2828. for (var i = 0; i < childs.length; i++) {
  2829. //判断有没有和该图标诶子重叠的元素
  2830. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2831. return childs[i]; //如果有返回
  2832. }
  2833. }
  2834. }
  2835. //#endregion
  2836. //#endregion
  2837. //#region 桌面应用
  2838. /**
  2839. * 打开应用
  2840. *
  2841. * @param {string} 类型
  2842. -----------------Disk 网盘系统
  2843. -----------------PDisk 学习系统网盘
  2844. -----------------Poto 图片
  2845. -----------------Video 视频
  2846. -----------------Music 音乐
  2847. -----------------Word word
  2848. -----------------Excel excel
  2849. -----------------Txt 记事本
  2850. -----------------PB 学习系统
  2851. -----------------Blog 朋友圈系统
  2852. -----------------FTP ftp系统
  2853. -----------------Group 好友群
  2854. -----------------SY 首页系统
  2855. -----------------Set 个人设置
  2856. -----------------XSet 系统设置
  2857. -----------------App 我们所有的app
  2858. -----------------BC c.1473.cn 平台
  2859. -----------------CWeb d.1473.cn 变成平台
  2860. -----------------其他的外联系统 我们统一用iframe打开
  2861. * @param {array} 类型
  2862. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2863. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2864. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2865. 如果第一个参数为其他,则无第二个参数
  2866. * @returns {array}
  2867. */
  2868. window.addEventListener('message', function (e) { // 监听 message 事件
  2869. // alert(e.data.type);
  2870. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2875. //3是展示全部阶段 2学生 1老师 4专家
  2876. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2877. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2878. //3是展示全部阶段 2学生 1老师 4专家
  2879. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2882. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2885. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2887. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2888. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2889. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2890. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2891. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2892. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2893. //3是展示全部阶段 2学生 1老师 4专家
  2894. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2895. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2896. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2897. U.MD.D.I.selectUser();
  2898. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2899. var _formel = document.getElementById("study");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2902. var _formel = document.getElementById("studyDetail");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2905. var _formel = document.getElementById("studyDetail");
  2906. U.UF.F.windowZooming(_formel);
  2907. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2908. var _formel = document.getElementById("studentStudy");
  2909. U.UF.F.windowZooming(_formel);
  2910. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2911. // var _formel = document.getElementById("study");
  2912. //如果最大化了,那么就把他缩小
  2913. // if (_formel.ismaximize) {
  2914. // return;
  2915. // }
  2916. // U.UF.F.windowZooming(_formel);
  2917. // U.UF.F.topWindow(_formel);
  2918. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2919. // var _formel = document.getElementById("studyDetail");
  2920. //如果最大化了,那么就把他缩小
  2921. // if (_formel.ismaximize) {
  2922. // return;
  2923. // }
  2924. // U.UF.F.windowZooming(_formel);
  2925. // U.UF.F.topWindow(_formel);
  2926. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2927. // var _formel = document.getElementById("studentStudy");
  2928. // if (_formel.ismaximize) {
  2929. // return;
  2930. // }
  2931. // U.UF.F.windowZooming(_formel);
  2932. // U.UF.F.topWindow(_formel);
  2933. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2934. var _formel = document.getElementById("study");
  2935. // if (_formel.ismaximize) {
  2936. // return;
  2937. // }
  2938. // U.UF.F.windowZooming(_formel);
  2939. U.UF.F.topWindow(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2941. var _formel = document.getElementById("studentIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2944. var _formel = document.getElementById("studyDetailS");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2947. var _formel = document.getElementById("studioIndex");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2950. var _formel = document.getElementById("studyDetailStudio");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2953. var _formel = document.getElementById("studyDetailStudio");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2956. var _formel = document.getElementById("studyDetailNT");
  2957. U.UF.F.windowZooming(_formel);
  2958. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2959. var _formel = document.getElementById("studyDetailS");
  2960. U.UF.F.windowZooming(_formel);
  2961. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2962. var _formel = document.getElementById("studyDetailS");
  2963. U.UF.F.topWindow(_formel);
  2964. } else if (e.data.tools && e.data.tools == "1") {
  2965. // U.MD.D.I.openApplication("whiteboard")
  2966. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2967. } else if (e.data.tools && e.data.tools == "2") {
  2968. U.MD.D.I.openApplication("note")
  2969. } else if (e.data.tools && e.data.tools == "3") {
  2970. // U.MD.D.I.openApplication("mind")
  2971. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2972. } else if (e.data.tools && e.data.tools == "4") {
  2973. U.MD.D.I.openApplication("investigation")
  2974. } else if (e.data.tools && e.data.tools == "6") {
  2975. // U.MD.D.I.openApplication("doc")
  2976. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2977. } else if (e.data.tools && e.data.tools == "7") {
  2978. // U.MD.D.I.openApplication("mindNetwork")
  2979. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2980. } else if (e.data.tools && e.data.tools == "8") {
  2981. U.MD.D.I.openApplication("library")
  2982. } else if (e.data.tools && e.data.tools == "17") {
  2983. U.MD.D.I.openApplication("stuLibrary")
  2984. } else if (e.data.tools && e.data.tools == "18") {
  2985. U.MD.D.I.openApplication("train")
  2986. } else if (e.data.tools && e.data.tools == "21") {
  2987. U.MD.D.I.openApplication("program")
  2988. } else if (e.data.tools && e.data.tools == "22") {
  2989. U.MD.D.I.openApplication("AIprogram2")
  2990. } else if (e.data.tools && e.data.tools == "23") {
  2991. U.MD.D.I.openApplication("Pythonprogram")
  2992. } else if (e.data.tools && e.data.tools == "24") {
  2993. U.MD.D.I.openApplication("AIprogram")
  2994. } else if (e.data.tools && e.data.tools == "25") {
  2995. U.MD.D.I.openApplication("sys")
  2996. } else if (e.data.tools && e.data.tools == "26") {
  2997. // U.MD.D.I.openApplication("courseDesign")
  2998. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2999. } else if (e.data.tools && e.data.tools == "31") {
  3000. U.MD.D.I.openApplication("netWorkPanel")
  3001. } else if (e.data.tools && e.data.tools == "32") {
  3002. U.MD.D.I.openApplication("codeEdit")
  3003. } else if (e.data.tools && e.data.tools == "57") {
  3004. U.MD.D.I.openApplication("CocoPi")
  3005. } else if (e.data.tools && e.data.tools == "63") {
  3006. U.MD.D.I.openApplication("Wood")
  3007. } else if (e.data.tools && e.data.tools == "58") {
  3008. U.MD.D.I.openApplication("car")
  3009. } else if (e.data.tools && e.data.tools == "59") {
  3010. U.MD.D.I.openApplication("lineSearch")
  3011. } else if (e.data.tools && e.data.tools == "60") {
  3012. U.MD.D.I.openApplication("deepLearning")
  3013. } else if (e.data.tools && e.data.tools == "61") {
  3014. U.MD.D.I.openApplication("allHistory")
  3015. } else if (e.data.tools && e.data.tools == "28") {
  3016. U.MD.D.I.openApplication("translation")
  3017. } else if (e.data.tools && e.data.tools == "37") {
  3018. U.MD.D.I.openApplication("mohe")
  3019. } else if (e.data.tools && e.data.tools == "38") {
  3020. U.MD.D.I.openApplication("24game")
  3021. } else if (e.data.tools && e.data.tools == "39") {
  3022. U.MD.D.I.openApplication("GeoGebra")
  3023. } else if (e.data.tools && e.data.tools == "43") {
  3024. U.MD.D.I.openApplication("studentEvaluate")
  3025. } else if (e.data.tools && e.data.tools == "44") {
  3026. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3027. } else if (e.data.tools && e.data.tools == "46") {
  3028. U.MD.D.I.openApplication("project")
  3029. } else if (e.data.tools && e.data.tools == "71") {
  3030. U.MD.D.I.openApplication("aigptCourse")
  3031. } else if (e.data.tools && e.data.tools == "1s") {
  3032. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3s") {
  3034. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6s") {
  3036. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "1studio") {
  3038. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "3studio") {
  3040. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "6studio") {
  3042. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3043. } else if (e.data.tools && e.data.tools == "3y") {
  3044. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3045. } else if (e.data.tools && e.data.tools == "1y") {
  3046. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3047. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3048. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3049. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3050. U.MD.D.I.openApplication("AIAnalyse")
  3051. } else if (e.data.tools && e.data.tools == "1teacher") {
  3052. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacher") {
  3054. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "7teacher") {
  3056. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3057. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3058. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3059. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3060. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3061. } else if (e.data.tools && e.data.tools == "1E") {
  3062. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "3E") {
  3064. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3065. } else if (e.data.tools && e.data.tools == "57y") {
  3066. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3067. } else if (e.data.tools && e.data.tools == "57u") {
  3068. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3069. } else if (e.data.tools && e.data.tools == "57teacher") {
  3070. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3071. } else if (e.data.tools && e.data.tools == "64") {
  3072. U.MD.D.I.openApplication("AIChat")
  3073. } else if (e.data.tools && e.data.tools == "66") {
  3074. U.MD.D.I.openApplication("formulaEdi")
  3075. } else if (e.data.tools && e.data.tools == "67") {
  3076. U.MD.D.I.openApplication("molStr")
  3077. } else if (e.data.tools && e.data.tools == "68") {
  3078. U.MD.D.I.openApplication("timeAxis")
  3079. } else if (e.data.tools && e.data.tools == "openCourse") {
  3080. let _data = {
  3081. typea: e.data.typea || '',
  3082. typeb: e.data.typeb || '',
  3083. typed: e.data.typed || '',
  3084. }
  3085. U.MD.D.I.openInApplication("index", _data)
  3086. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3087. let _data = {
  3088. classid: e.data.classid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("dataClass", _data)
  3091. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3092. let _data = {
  3093. cid: e.data.cid || '',
  3094. gid: e.data.gid || '',
  3095. }
  3096. U.MD.D.I.openInApplication("opencCscl", _data)
  3097. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3098. U.MD.D.I.openApplication("dataBoardTest")
  3099. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3100. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3102. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3103. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3104. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3105. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3106. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3107. }else if (e.data.tools && e.data.tools == "loginSz") {
  3108. U.MD.D.I.openInApplication("loginSz")
  3109. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3110. if($('#classroom_observation_board')[0]){
  3111. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3112. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3113. }
  3114. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3115. }
  3116. });
  3117. U.MD.D.I.selectUser = function () {
  3118. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3119. if (res.value[0].length > 0) {
  3120. US.userInfo = res.value[0][0];
  3121. $(".userName")[0].innerHTML = US.userInfo.username;
  3122. }
  3123. }, [], { "type": "GET", "withCredentials": true });
  3124. }
  3125. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3126. var _userinfo = US.userInfo, //登录用户信息
  3127. _userid = US.userInfo.userid, //登录用户id
  3128. _oid = _userinfo.organizeid,
  3129. _type = US.userInfo.type,
  3130. _org = US.userInfo.org,
  3131. _role = US.userInfo.role,
  3132. _classId = US.userInfo.classid;
  3133. if (_type == 4) {
  3134. tType = 4
  3135. }
  3136. switch (str) {
  3137. case "studyDetailNT": //无终端模式
  3138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3139. setTimeout(() => {
  3140. U.MD.U.L.login();
  3141. }, 2000);
  3142. } else {
  3143. _formdiv = new U.UF.UI.form(
  3144. "课程详情",
  3145. $$("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 }), {
  3146. "id": "studyDetailNT",
  3147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3148. "onresize": function () { }
  3149. }, {
  3150. closecallback: function () { }
  3151. }, { "style": { "height": "36px" } }).form; //创建窗体
  3152. _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); } }
  3153. break;
  3154. }
  3155. case "studyDetail":
  3156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3157. setTimeout(() => {
  3158. U.MD.U.L.login();
  3159. }, 2000);
  3160. } else {
  3161. _formdiv = new U.UF.UI.form(
  3162. "课程详情",
  3163. $$("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 }), {
  3164. "id": "studyDetail",
  3165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3166. "onresize": function () { }
  3167. }, {
  3168. closecallback: function () { }
  3169. }, { "style": { "height": "36px" } }).form; //创建窗体
  3170. _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); } }
  3171. break;
  3172. }
  3173. case "studyDetailTrain":
  3174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3175. setTimeout(() => {
  3176. U.MD.U.L.login();
  3177. }, 2000);
  3178. } else {
  3179. _formdiv = new U.UF.UI.form(
  3180. "培训详情",
  3181. $$("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 }), {
  3182. "id": "studyDetailTrain",
  3183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3184. "onresize": function () { }
  3185. }, {
  3186. closecallback: function () { }
  3187. }, { "style": { "height": "36px" } }).form; //创建窗体
  3188. _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); } }
  3189. break;
  3190. }
  3191. case "studyDetailS":
  3192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3193. setTimeout(() => {
  3194. U.MD.U.L.login();
  3195. }, 2000);
  3196. } else {
  3197. _formdiv = new U.UF.UI.form(
  3198. "项目详情",
  3199. $$("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 }), {
  3200. "id": "studyDetailS",
  3201. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3202. "onresize": function () { }
  3203. }, {
  3204. closecallback: function () { }
  3205. }, { "style": { "height": "36px" } }).form; //创建窗体
  3206. _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); } }
  3207. break;
  3208. }
  3209. case "studyDetailStudio":
  3210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3211. setTimeout(() => {
  3212. U.MD.U.L.login();
  3213. }, 2000);
  3214. } else {
  3215. _formdiv = new U.UF.UI.form(
  3216. "工作详情",
  3217. $$("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 }), {
  3218. "id": "studyDetailStudio",
  3219. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3220. "onresize": function () { }
  3221. }, {
  3222. closecallback: function () { }
  3223. }, { "style": { "height": "36px" } }).form; //创建窗体
  3224. _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); } }
  3225. break;
  3226. }
  3227. case "studyDetailS5":
  3228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3229. setTimeout(() => {
  3230. U.MD.U.L.login();
  3231. }, 2000);
  3232. } else {
  3233. _formdiv = new U.UF.UI.form(
  3234. "项目详情",
  3235. $$("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 }), {
  3236. "id": "studyDetailS",
  3237. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3238. "onresize": function () { }
  3239. }, {
  3240. closecallback: function () { }
  3241. }, { "style": { "height": "36px" } }).form; //创建窗体
  3242. _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); } }
  3243. break;
  3244. }
  3245. case "studyDetailGM":
  3246. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3247. setTimeout(() => {
  3248. U.MD.U.L.login();
  3249. }, 2000);
  3250. } else {
  3251. _formdiv = new U.UF.UI.form(
  3252. "课程详情",
  3253. $$("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 }), {
  3254. "id": "studyDetail",
  3255. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3256. "onresize": function () { }
  3257. }, {
  3258. closecallback: function () { }
  3259. }, { "style": { "height": "36px" } }).form; //创建窗体
  3260. _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); } }
  3261. break;
  3262. }
  3263. case "hanUrl":
  3264. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3265. setTimeout(() => {
  3266. U.MD.U.L.login();
  3267. }, 2000);
  3268. } else {
  3269. _formdiv = new U.UF.UI.form(
  3270. "汉字宫",
  3271. $$("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" }), {
  3272. "id": "hanUrl",
  3273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3274. "onresize": function () { }
  3275. }, {
  3276. closecallback: function () { }
  3277. }, { "style": { "height": "36px" } }).form; //创建窗体
  3278. _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); } }
  3279. break;
  3280. }
  3281. case "index":
  3282. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3283. setTimeout(() => {
  3284. U.MD.U.L.login();
  3285. }, 2000);
  3286. } else {
  3287. _formdiv = new U.UF.UI.form(
  3288. "课程中心",
  3289. $$("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 }), {
  3290. "id": "study",
  3291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3292. "onresize": function () { }
  3293. }, {
  3294. closecallback: function () { }
  3295. }, { "style": { "height": "36px" } }).form; //创建窗体
  3296. _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); } }
  3297. break;
  3298. }
  3299. case "dataClass":
  3300. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3301. setTimeout(() => {
  3302. U.MD.U.L.login();
  3303. }, 2000);
  3304. } else {
  3305. _formdiv = new U.UF.UI.form(
  3306. "数据报告",
  3307. $$("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 }), {
  3308. "id": "dataClass",
  3309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3310. "onresize": function () { }
  3311. }, {
  3312. closecallback: function () { }
  3313. }, { "style": { "height": "36px" } }).form; //创建窗体
  3314. _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); } }
  3315. break;
  3316. }
  3317. case "opencCscl":
  3318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3319. setTimeout(() => {
  3320. U.MD.U.L.login();
  3321. }, 2000);
  3322. } else {
  3323. _formdiv = new U.UF.UI.form(
  3324. "协同建构",
  3325. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3326. "id": "futureClass",
  3327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3328. "onresize": function () { }
  3329. }, {
  3330. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3331. }, { "style": { "height": "36px" } }).form; //创建窗体
  3332. _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); } }
  3333. break;
  3334. }
  3335. case "openCourseUpdate":
  3336. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3337. setTimeout(() => {
  3338. U.MD.U.L.login();
  3339. }, 2000);
  3340. } else {
  3341. _formdiv = new U.UF.UI.form(
  3342. "课程管理",
  3343. $$("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 }), {
  3344. "id": "openCourseUpdate",
  3345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3346. "onresize": function () { }
  3347. }, {
  3348. closecallback: function () { }
  3349. }, { "style": { "height": "36px" } }).form; //创建窗体
  3350. break;
  3351. }
  3352. case "openNewCourseUpdate":
  3353. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3354. setTimeout(() => {
  3355. U.MD.U.L.login();
  3356. }, 2000);
  3357. } else {
  3358. _formdiv = new U.UF.UI.form(
  3359. "课程管理",
  3360. $$("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 }), {
  3361. "id": "openCourseUpdate",
  3362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3363. "onresize": function () { }
  3364. }, {
  3365. closecallback: function () { }
  3366. }, { "style": { "height": "36px" } }).form; //创建窗体
  3367. break;
  3368. }
  3369. case "openCourseEUpdate":
  3370. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3371. setTimeout(() => {
  3372. U.MD.U.L.login();
  3373. }, 2000);
  3374. } else {
  3375. _formdiv = new U.UF.UI.form(
  3376. "课程管理",
  3377. $$("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 }), {
  3378. "id": "openCourseUpdate",
  3379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3380. "onresize": function () { }
  3381. }, {
  3382. closecallback: function () { }
  3383. }, { "style": { "height": "36px" } }).form; //创建窗体
  3384. break;
  3385. }
  3386. case "openCourseNewUpdate":
  3387. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3388. setTimeout(() => {
  3389. U.MD.U.L.login();
  3390. }, 2000);
  3391. } else {
  3392. _formdiv = new U.UF.UI.form(
  3393. "课程管理",
  3394. $$("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 }), {
  3395. "id": "openCourseUpdate",
  3396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3397. "onresize": function () { }
  3398. }, {
  3399. closecallback: function () { }
  3400. }, { "style": { "height": "36px" } }).form; //创建窗体
  3401. break;
  3402. }
  3403. case "inviteLoginSz":
  3404. _formdiv = new U.UF.UI.form(
  3405. "随机码登录",
  3406. $$("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 }), {
  3407. "id": "loginSz",
  3408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3409. "onresize": function () { }
  3410. }, {
  3411. closecallback: function () { }
  3412. }, { "style": { "height": "36px" } }).form; //创建窗体
  3413. break;
  3414. case "loginSz":
  3415. _formdiv = new U.UF.UI.form(
  3416. "教师登录",
  3417. $$("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" }), {
  3418. "id": "loginSz",
  3419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3420. "onresize": function () { }
  3421. }, {
  3422. closecallback: function () { }
  3423. }, { "style": { "height": "36px" } }).form; //创建窗体
  3424. break;
  3425. case "teacher":
  3426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3427. setTimeout(() => {
  3428. U.MD.U.L.login();
  3429. }, 2000);
  3430. } else {
  3431. _formdiv = new U.UF.UI.form(
  3432. "教师管理",
  3433. $$("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 }), {
  3434. "id": "teacher",
  3435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3436. "onresize": function () { }
  3437. }, {
  3438. closecallback: function () { }
  3439. }, { "style": { "height": "36px" } }).form; //创建窗体
  3440. break;
  3441. }
  3442. case "dataBoardSZArea":
  3443. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3444. setTimeout(() => {
  3445. U.MD.U.L.login();
  3446. }, 2000);
  3447. } else {
  3448. _formdiv = new U.UF.UI.form(
  3449. "综合数据看板",
  3450. $$("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 }), {
  3451. "id": "dataBoardSZArea",
  3452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3453. "onresize": function () { }
  3454. }, {
  3455. closecallback: function () { }
  3456. }, { "style": { "height": "36px" } }).form; //创建窗体
  3457. break;
  3458. }
  3459. case "dataBoardSZCity":
  3460. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3461. setTimeout(() => {
  3462. U.MD.U.L.login();
  3463. }, 2000);
  3464. } else {
  3465. _formdiv = new U.UF.UI.form(
  3466. "综合数据看板",
  3467. $$("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 }), {
  3468. "id": "dataBoardSZCity",
  3469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3470. "onresize": function () { }
  3471. }, {
  3472. closecallback: function () { }
  3473. }, { "style": { "height": "36px" } }).form; //创建窗体
  3474. break;
  3475. }
  3476. case "classroom_observation_board":
  3477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3478. setTimeout(() => {
  3479. U.MD.U.L.login();
  3480. }, 2000);
  3481. } else {
  3482. _formdiv = new U.UF.UI.form(
  3483. "课堂观察",
  3484. $$("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 }), {
  3485. "id": "classroom_observation_board",
  3486. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3487. "onresize": function () { }
  3488. }, {
  3489. closecallback: function () { }
  3490. }, { "style": { "height": "36px" } }).form; //创建窗体
  3491. break;
  3492. }
  3493. }
  3494. }
  3495. U.MD.D.I.openApplication = function (str, obj, info) {
  3496. obj = obj || {};
  3497. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3498. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3499. _userinfo = US.userInfo, //登录用户信息
  3500. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3501. _oid = obj.organizeid || _userinfo.organizeid,
  3502. _type = US.userInfo.type,
  3503. _org = US.userInfo.org,
  3504. _role = US.userInfo.role,
  3505. _classId = US.userInfo.classid,
  3506. _TscreenType = 1
  3507. _screenType = 2,
  3508. _SscreenType = 3;
  3509. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3510. return;
  3511. }
  3512. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3513. switch (str) {
  3514. case "studnetProject": //好友打开
  3515. _formdiv = new U.UF.UI.form(
  3516. "我的项目",
  3517. $$("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 }), {
  3518. "id": "studnetProject",
  3519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3520. "onresize": function () { }
  3521. }, {
  3522. closecallback: function () { }
  3523. }, { "style": { "height": "36px" } }).form; //创建窗体
  3524. _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); } }
  3525. break;
  3526. case "studentEvaluate": //好友打开
  3527. _formdiv = new U.UF.UI.form(
  3528. "我的评价",
  3529. $$("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 }), {
  3530. "id": "studentEvaluate",
  3531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3532. "onresize": function () { }
  3533. }, {
  3534. closecallback: function () { }
  3535. }, { "style": { "height": "36px" } }).form; //创建窗体
  3536. _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); } }
  3537. break;
  3538. case "my":
  3539. _formdiv = new U.UF.UI.form(
  3540. "我的资料",
  3541. $$("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 }), {
  3542. "id": "my",
  3543. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3544. "onresize": function () { }
  3545. }, {
  3546. closecallback: function () { }
  3547. }, { "style": { "height": "36px" } }).form; //创建窗体
  3548. _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); } }
  3549. break;
  3550. case "program":
  3551. _formdiv = new U.UF.UI.form(
  3552. "编程平台",
  3553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3554. "id": "program",
  3555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3556. "onresize": function () { }
  3557. }, {
  3558. closecallback: function () { }
  3559. }, { "style": { "height": "36px" } }).form; //创建窗体
  3560. _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); } }
  3561. break;
  3562. case "library":
  3563. _formdiv = new U.UF.UI.form(
  3564. "素材库",
  3565. $$("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 }), {
  3566. "id": "library",
  3567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3568. "onresize": function () { }
  3569. }, {
  3570. closecallback: function () { }
  3571. }, { "style": { "height": "36px" } }).form; //创建窗体
  3572. _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); } }
  3573. break;
  3574. case "whiteboard":
  3575. _formdiv = new U.UF.UI.form(
  3576. "电子白板",
  3577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3578. "id": "whiteboard",
  3579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3580. "onresize": function () { }
  3581. }, {
  3582. closecallback: function () { }
  3583. }, { "style": { "height": "36px" } }).form; //创建窗体
  3584. _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); } }
  3585. break;
  3586. case "investigation":
  3587. _formdiv = new U.UF.UI.form(
  3588. "问卷调查",
  3589. $$("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 }), {
  3590. "id": "investigation",
  3591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3592. "onresize": function () { }
  3593. }, {
  3594. closecallback: function () { }
  3595. }, { "style": { "height": "36px" } }).form; //创建窗体
  3596. _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); } }
  3597. break;
  3598. case "note":
  3599. _formdiv = new U.UF.UI.form(
  3600. "便签分类",
  3601. $$("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 }), {
  3602. "id": "note",
  3603. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3604. "onresize": function () { }
  3605. }, {
  3606. closecallback: function () { }
  3607. }, { "style": { "height": "36px" } }).form; //创建窗体
  3608. _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); } }
  3609. break;
  3610. // case "score":
  3611. // _formdiv = new U.UF.UI.form(
  3612. // "量规评分",
  3613. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3614. // "id": "score",
  3615. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3616. // "onresize": function() {}
  3617. // }, {
  3618. // closecallback: function() {}
  3619. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. // _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); } }
  3621. // break;
  3622. case "mind":
  3623. _formdiv = new U.UF.UI.form(
  3624. "思维导图",
  3625. $$("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"
  3626. "id": "mind",
  3627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3628. "onresize": function () { }
  3629. }, {
  3630. closecallback: function () { }
  3631. }, { "style": { "height": "36px" } }).form; //创建窗体
  3632. _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); } }
  3633. break;
  3634. case "doc":
  3635. // U.MD.D.I.isRoom();
  3636. _formdiv = new U.UF.UI.form(
  3637. "协同文档",
  3638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3639. "id": "doc",
  3640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3641. "onresize": function () { }
  3642. }, {
  3643. closecallback: function () { }
  3644. }, { "style": { "height": "36px" } }).form; //创建窗体
  3645. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3646. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3647. // })
  3648. _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); } }
  3649. break;
  3650. case "studentStudy":
  3651. _formdiv = new U.UF.UI.form(
  3652. "课程中心",
  3653. $$("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
  3654. "id": "studentStudy",
  3655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3656. "onresize": function () { }
  3657. }, {
  3658. closecallback: function () { }
  3659. }, { "style": { "height": "36px" } }).form; //创建窗体
  3660. _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); } }
  3661. break;
  3662. case "train": //好友打开
  3663. _formdiv = new U.UF.UI.form(
  3664. "训练平台",
  3665. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3666. "id": "train",
  3667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3668. "onresize": function () { }
  3669. }, {
  3670. closecallback: function () { }
  3671. }, { "style": { "height": "36px" } }).form; //创建窗体
  3672. _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); } }
  3673. break;
  3674. case "mindNetwork": //好友打开
  3675. _formdiv = new U.UF.UI.form(
  3676. "思维网格",
  3677. $$("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 }), {
  3678. "id": "mindNetwork",
  3679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. _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); } }
  3685. break;
  3686. case "studentClassRoom": //好友打开
  3687. _formdiv = new U.UF.UI.form(
  3688. "实时课堂",
  3689. $$("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 }), {
  3690. "id": "studentClassRoom",
  3691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3692. "onresize": function () { }
  3693. }, {
  3694. closecallback: function () { }
  3695. }, { "style": { "height": "36px" } }).form; //创建窗体
  3696. _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); } }
  3697. setTimeout(() => {
  3698. U.UF.F.windowZooming(_formdiv)
  3699. }, 0);
  3700. break;
  3701. }
  3702. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3703. switch (str) {
  3704. case "studnetProject": //好友打开
  3705. _formdiv = new U.UF.UI.form(
  3706. "我的项目",
  3707. $$("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 }), {
  3708. "id": "studnetProject",
  3709. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3710. "onresize": function () { }
  3711. }, {
  3712. closecallback: function () { }
  3713. }, { "style": { "height": "36px" } }).form; //创建窗体
  3714. _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); } }
  3715. break;
  3716. case "studentEvaluate": //好友打开
  3717. _formdiv = new U.UF.UI.form(
  3718. "我的评价",
  3719. $$("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 }), {
  3720. "id": "studentEvaluate",
  3721. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3722. "onresize": function () { }
  3723. }, {
  3724. closecallback: function () { }
  3725. }, { "style": { "height": "36px" } }).form; //创建窗体
  3726. _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); } }
  3727. break;
  3728. case "my":
  3729. _formdiv = new U.UF.UI.form(
  3730. "我的资料",
  3731. $$("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 }), {
  3732. "id": "my",
  3733. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3734. "onresize": function () { }
  3735. }, {
  3736. closecallback: function () { }
  3737. }, { "style": { "height": "36px" } }).form; //创建窗体
  3738. _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); } }
  3739. break;
  3740. case "program":
  3741. _formdiv = new U.UF.UI.form(
  3742. "编程平台",
  3743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3744. "id": "program",
  3745. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3746. "onresize": function () { }
  3747. }, {
  3748. closecallback: function () { }
  3749. }, { "style": { "height": "36px" } }).form; //创建窗体
  3750. _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); } }
  3751. break;
  3752. case "library":
  3753. _formdiv = new U.UF.UI.form(
  3754. "素材库",
  3755. $$("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 }), {
  3756. "id": "library",
  3757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3758. "onresize": function () { }
  3759. }, {
  3760. closecallback: function () { }
  3761. }, { "style": { "height": "36px" } }).form; //创建窗体
  3762. _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); } }
  3763. break;
  3764. case "whiteboard":
  3765. _formdiv = new U.UF.UI.form(
  3766. "电子白板",
  3767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3768. "id": "whiteboard",
  3769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3770. "onresize": function () { }
  3771. }, {
  3772. closecallback: function () { }
  3773. }, { "style": { "height": "36px" } }).form; //创建窗体
  3774. _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); } }
  3775. break;
  3776. case "investigation":
  3777. _formdiv = new U.UF.UI.form(
  3778. "问卷调查",
  3779. $$("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 }), {
  3780. "id": "investigation",
  3781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3782. "onresize": function () { }
  3783. }, {
  3784. closecallback: function () { }
  3785. }, { "style": { "height": "36px" } }).form; //创建窗体
  3786. _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); } }
  3787. break;
  3788. case "note":
  3789. _formdiv = new U.UF.UI.form(
  3790. "便签分类",
  3791. $$("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 }), {
  3792. "id": "note",
  3793. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. // case "score":
  3801. // _formdiv = new U.UF.UI.form(
  3802. // "量规评分",
  3803. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3804. // "id": "score",
  3805. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3806. // "onresize": function() {}
  3807. // }, {
  3808. // closecallback: function() {}
  3809. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3810. // _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); } }
  3811. // break;
  3812. case "mind":
  3813. _formdiv = new U.UF.UI.form(
  3814. "思维导图",
  3815. $$("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"
  3816. "id": "mind",
  3817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3818. "onresize": function () { }
  3819. }, {
  3820. closecallback: function () { }
  3821. }, { "style": { "height": "36px" } }).form; //创建窗体
  3822. _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); } }
  3823. break;
  3824. case "doc":
  3825. // U.MD.D.I.isRoom();
  3826. _formdiv = new U.UF.UI.form(
  3827. "协同文档",
  3828. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3829. "id": "doc",
  3830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3831. "onresize": function () { }
  3832. }, {
  3833. closecallback: function () { }
  3834. }, { "style": { "height": "36px" } }).form; //创建窗体
  3835. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3836. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3837. })
  3838. _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); } }
  3839. break;
  3840. case "train": //好友打开
  3841. _formdiv = new U.UF.UI.form(
  3842. "训练平台",
  3843. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3844. "id": "train",
  3845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3846. "onresize": function () { }
  3847. }, {
  3848. closecallback: function () { }
  3849. }, { "style": { "height": "36px" } }).form; //创建窗体
  3850. _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); } }
  3851. break;
  3852. case "studentStudy":
  3853. _formdiv = new U.UF.UI.form(
  3854. "课程中心",
  3855. $$("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
  3856. "id": "studentStudy",
  3857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3858. "onresize": function () { }
  3859. }, {
  3860. closecallback: function () { }
  3861. }, { "style": { "height": "36px" } }).form; //创建窗体
  3862. _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); } }
  3863. break;
  3864. case "mindNetwork": //好友打开
  3865. _formdiv = new U.UF.UI.form(
  3866. "思维网格",
  3867. $$("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 }), {
  3868. "id": "mindNetwork",
  3869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3870. "onresize": function () { }
  3871. }, {
  3872. closecallback: function () { }
  3873. }, { "style": { "height": "36px" } }).form; //创建窗体
  3874. _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); } }
  3875. break;
  3876. case "studentClassRoom": //好友打开
  3877. _formdiv = new U.UF.UI.form(
  3878. "实时课堂",
  3879. $$("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 }), {
  3880. "id": "studentClassRoom",
  3881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3882. "onresize": function () { }
  3883. }, {
  3884. closecallback: function () { }
  3885. }, { "style": { "height": "36px" } }).form; //创建窗体
  3886. _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); } }
  3887. setTimeout(() => {
  3888. U.UF.F.windowZooming(_formdiv)
  3889. }, 0);
  3890. break;
  3891. }
  3892. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3893. //选择应用处理
  3894. switch (str) {
  3895. case "project": //好友打开
  3896. _formdiv = new U.UF.UI.form(
  3897. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3898. $$("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 }), {
  3899. "id": "project",
  3900. "style": { "width": "90%", "height": "90%", "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/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3906. break;
  3907. case "student":
  3908. _formdiv = new U.UF.UI.form(
  3909. "学生管理",
  3910. $$("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 }), {
  3911. "id": "student",
  3912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3913. "onresize": function () { }
  3914. }, {
  3915. closecallback: function () { }
  3916. }, { "style": { "height": "36px" } }).form; //创建窗体
  3917. _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); } }
  3918. break;
  3919. case "evaluate":
  3920. _formdiv = new U.UF.UI.form(
  3921. "学生评价",
  3922. $$("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 }), {
  3923. "id": "evaluate",
  3924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3925. "onresize": function () { }
  3926. }, {
  3927. closecallback: function () { }
  3928. }, { "style": { "height": "36px" } }).form; //创建窗体
  3929. _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); } }
  3930. break;
  3931. case "sys":
  3932. _formdiv = new U.UF.UI.form(
  3933. "目标管理",
  3934. $$("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 }), {
  3935. "id": "sys",
  3936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3937. "onresize": function () { }
  3938. }, {
  3939. closecallback: function () { }
  3940. }, { "style": { "height": "36px" } }).form; //创建窗体
  3941. _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); } }
  3942. break;
  3943. case "courseDesign":
  3944. _formdiv = new U.UF.UI.form(
  3945. "项目设计",
  3946. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3947. "id": "courseDesign",
  3948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3949. "onresize": function () { }
  3950. }, {
  3951. closecallback: function () { }
  3952. }, { "style": { "height": "36px" } }).form; //创建窗体
  3953. _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); } }
  3954. break;
  3955. case "program":
  3956. _formdiv = new U.UF.UI.form(
  3957. "编程平台",
  3958. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3959. "id": "program",
  3960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. _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); } }
  3966. break;
  3967. case "class":
  3968. _formdiv = new U.UF.UI.form(
  3969. "班级管理",
  3970. $$("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 }), {
  3971. "id": "class",
  3972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3973. "onresize": function () { }
  3974. }, {
  3975. closecallback: function () { }
  3976. }, { "style": { "height": "36px" } }).form; //创建窗体
  3977. _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); } }
  3978. break;
  3979. case "Grade":
  3980. _formdiv = new U.UF.UI.form(
  3981. "年级管理",
  3982. $$("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 }), {
  3983. "id": "Grade",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. _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); } }
  3990. break;
  3991. case "teacherOffice":
  3992. _formdiv = new U.UF.UI.form(
  3993. "教研室",
  3994. $$("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 }), {
  3995. "id": "teacherOffice",
  3996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3997. "onresize": function () { }
  3998. }, {
  3999. closecallback: function () { }
  4000. }, { "style": { "height": "36px" } }).form; //创建窗体
  4001. _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); } }
  4002. break;
  4003. case "my":
  4004. _formdiv = new U.UF.UI.form(
  4005. "我的资料",
  4006. $$("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 }), {
  4007. "id": "my",
  4008. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4009. "onresize": function () { }
  4010. }, {
  4011. closecallback: function () { }
  4012. }, { "style": { "height": "36px" } }).form; //创建窗体
  4013. _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); } }
  4014. break;
  4015. case "notice":
  4016. _formdiv = new U.UF.UI.form(
  4017. "通知公告",
  4018. $$("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 }), {
  4019. "id": "notice",
  4020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4021. "onresize": function () { }
  4022. }, {
  4023. closecallback: function () { }
  4024. }, { "style": { "height": "36px" } }).form; //创建窗体
  4025. _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); } }
  4026. break;
  4027. case "library":
  4028. _formdiv = new U.UF.UI.form(
  4029. "素材库",
  4030. $$("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 }), {
  4031. "id": "library",
  4032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4033. "onresize": function () { }
  4034. }, {
  4035. closecallback: function () { }
  4036. }, { "style": { "height": "36px" } }).form; //创建窗体
  4037. _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); } }
  4038. break;
  4039. case "whiteboard":
  4040. _formdiv = new U.UF.UI.form(
  4041. "电子白板",
  4042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4043. "id": "whiteboard",
  4044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4045. "onresize": function () { }
  4046. }, {
  4047. closecallback: function () { }
  4048. }, { "style": { "height": "36px" } }).form; //创建窗体
  4049. _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); } }
  4050. break;
  4051. case "investigation":
  4052. _formdiv = new U.UF.UI.form(
  4053. "问卷调查",
  4054. $$("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 }), {
  4055. "id": "investigation",
  4056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4057. "onresize": function () { }
  4058. }, {
  4059. closecallback: function () { }
  4060. }, { "style": { "height": "36px" } }).form; //创建窗体
  4061. _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); } }
  4062. break;
  4063. case "note":
  4064. _formdiv = new U.UF.UI.form(
  4065. "便签分类",
  4066. $$("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 }), {
  4067. "id": "note",
  4068. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4069. "onresize": function () { }
  4070. }, {
  4071. closecallback: function () { }
  4072. }, { "style": { "height": "36px" } }).form; //创建窗体
  4073. _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); } }
  4074. break;
  4075. // case "score":
  4076. // _formdiv = new U.UF.UI.form(
  4077. // "量规评分",
  4078. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4079. // "id": "score",
  4080. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. // "onresize": function() {}
  4082. // }, {
  4083. // closecallback: function() {}
  4084. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. // _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); } }
  4086. // break;
  4087. case "mind":
  4088. _formdiv = new U.UF.UI.form(
  4089. "思维导图",
  4090. $$("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"
  4091. "id": "mind",
  4092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4093. "onresize": function () { }
  4094. }, {
  4095. closecallback: function () { }
  4096. }, { "style": { "height": "36px" } }).form; //创建窗体
  4097. _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); } }
  4098. break;
  4099. case "doc":
  4100. // U.MD.D.I.isRoom();
  4101. _formdiv = new U.UF.UI.form(
  4102. "协同文档",
  4103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4104. "id": "doc",
  4105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4106. "onresize": function () { }
  4107. }, {
  4108. closecallback: function () { }
  4109. }, { "style": { "height": "36px" } }).form; //创建窗体
  4110. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4111. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4112. })
  4113. _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); } }
  4114. break;
  4115. case "study":
  4116. _formdiv = new U.UF.UI.form(
  4117. "课程中心",
  4118. $$("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
  4119. "id": "study",
  4120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4121. "onresize": function () { }
  4122. }, {
  4123. closecallback: function () { }
  4124. }, { "style": { "height": "36px" } }).form; //创建窗体
  4125. _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); } }
  4126. break;
  4127. case "mindNetwork": //好友打开
  4128. _formdiv = new U.UF.UI.form(
  4129. "思维网格",
  4130. $$("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 }), {
  4131. "id": "mindNetwork",
  4132. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4133. "onresize": function () { }
  4134. }, {
  4135. closecallback: function () { }
  4136. }, { "style": { "height": "36px" } }).form; //创建窗体
  4137. _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); } }
  4138. break;
  4139. case "train": //好友打开
  4140. _formdiv = new U.UF.UI.form(
  4141. "训练平台",
  4142. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4143. "id": "mindNetwork",
  4144. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4145. "onresize": function () { }
  4146. }, {
  4147. closecallback: function () { }
  4148. }, { "style": { "height": "36px" } }).form; //创建窗体
  4149. _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); } }
  4150. break;
  4151. case "teacherClassRoom": //好友打开
  4152. _formdiv = new U.UF.UI.form(
  4153. "实时课堂",
  4154. $$("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 }), {
  4155. "id": "teacherClassRoom",
  4156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4157. "onresize": function () { }
  4158. }, {
  4159. closecallback: function () { }
  4160. }, { "style": { "height": "36px" } }).form; //创建窗体
  4161. _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); } }
  4162. setTimeout(() => {
  4163. U.UF.F.windowZooming(_formdiv)
  4164. }, 0);
  4165. break;
  4166. }
  4167. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4168. switch (str) {
  4169. case "project": //好友打开
  4170. _formdiv = new U.UF.UI.form(
  4171. "课程管理",
  4172. $$("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 }), {
  4173. "id": "project",
  4174. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4180. break;
  4181. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4185. "id": "evaluate",
  4186. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4192. break;
  4193. case "notice":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4197. "id": "notice",
  4198. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4204. break;
  4205. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4209. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4216. break;
  4217. case "program":
  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://x.cocorobo.cn" }), {
  4221. "id": "program",
  4222. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4228. break;
  4229. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  4233. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4240. break;
  4241. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  4245. "id": "investigation",
  4246. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4252. break;
  4253. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4257. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4264. break;
  4265. case "doc":
  4266. // U.MD.D.I.isRoom();
  4267. _formdiv = new U.UF.UI.form(
  4268. "协同文档",
  4269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4270. "id": "doc",
  4271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4272. "onresize": function () { }
  4273. }, {
  4274. closecallback: function () { }
  4275. }, { "style": { "height": "36px" } }).form; //创建窗体
  4276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4278. })
  4279. _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); } }
  4280. break;
  4281. case "study":
  4282. _formdiv = new U.UF.UI.form(
  4283. "课程中心",
  4284. $$("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
  4285. "id": "study",
  4286. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4287. "onresize": function () { }
  4288. }, {
  4289. closecallback: function () { }
  4290. }, { "style": { "height": "36px" } }).form; //创建窗体
  4291. _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); } }
  4292. break;
  4293. case "mindNetwork": //好友打开
  4294. _formdiv = new U.UF.UI.form(
  4295. "思维网格",
  4296. $$("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 }), {
  4297. "id": "mindNetwork",
  4298. "style": { "width": "90%", "height": "90%", "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/mindNetwork.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 "sys":
  4318. _formdiv = new U.UF.UI.form(
  4319. "目标管理",
  4320. $$("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 }), {
  4321. "id": "sys",
  4322. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4328. break;
  4329. case "courseDesign":
  4330. _formdiv = new U.UF.UI.form(
  4331. "项目设计",
  4332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4333. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4340. break;
  4341. }
  4342. } else if (!_type) {
  4343. switch (str) {
  4344. case "my":
  4345. _formdiv = new U.UF.UI.form(
  4346. "我的资料",
  4347. $$("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 }), {
  4348. "id": "my",
  4349. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4350. "onresize": function () { }
  4351. }, {
  4352. closecallback: function () { }
  4353. }, { "style": { "height": "36px" } }).form; //创建窗体
  4354. _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); } }
  4355. break;
  4356. }
  4357. }
  4358. switch (str) {
  4359. // AIprogram2 AI体验 aihub.cocorobo.cn
  4360. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4361. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4362. case "formulaEdi": //公式编辑
  4363. _formdiv = new U.UF.UI.form(
  4364. "公式编辑",
  4365. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4366. "id": "formulaEdi",
  4367. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. _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); } }
  4373. break;
  4374. case "molStr": //分子结构
  4375. _formdiv = new U.UF.UI.form(
  4376. "分子结构",
  4377. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4378. "id": "molStr",
  4379. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4380. "onresize": function () { }
  4381. }, {
  4382. closecallback: function () { }
  4383. }, { "style": { "height": "36px" } }).form; //创建窗体
  4384. _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); } }
  4385. break;
  4386. case "timeAxis": //时间轴
  4387. _formdiv = new U.UF.UI.form(
  4388. "时间轴",
  4389. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4390. "id": "timeAxis",
  4391. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _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); } }
  4397. break;
  4398. case "AIprogram2": //AI体验
  4399. _formdiv = new U.UF.UI.form(
  4400. "AI体验",
  4401. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4402. "id": "AIprogram2",
  4403. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _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); } }
  4409. break;
  4410. case "Pythonprogram": //python编程
  4411. _formdiv = new U.UF.UI.form(
  4412. "Python编程",
  4413. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4414. "id": "Pythonprogram",
  4415. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _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); } }
  4421. break;
  4422. case "AIprogram": //ai编程
  4423. _formdiv = new U.UF.UI.form(
  4424. "AI编程平台",
  4425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4426. "id": "AIprogram",
  4427. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _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); } }
  4433. break;
  4434. case "CocoPi": //CocoPi
  4435. _formdiv = new U.UF.UI.form(
  4436. "CocoPi",
  4437. $$("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" }), {
  4438. "id": "CocoPi",
  4439. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _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); } }
  4445. break;
  4446. case "Wood": //Wood
  4447. _formdiv = new U.UF.UI.form(
  4448. "海龟编程",
  4449. $$("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/" }), {
  4450. "id": "Wood",
  4451. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _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); } }
  4457. break;
  4458. case "car": //模拟驾驶
  4459. _formdiv = new U.UF.UI.form(
  4460. "模拟驾驶",
  4461. $$("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/" }), {
  4462. "id": "car",
  4463. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _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); } }
  4469. break;
  4470. case "lineSearch": //路径搜索
  4471. _formdiv = new U.UF.UI.form(
  4472. "路径搜索",
  4473. $$("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/" }), {
  4474. "id": "lineSearch",
  4475. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _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); } }
  4481. break;
  4482. case "deepLearning": //深度学习
  4483. _formdiv = new U.UF.UI.form(
  4484. "深度学习",
  4485. $$("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/#" }), {
  4486. "id": "deepLearning",
  4487. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _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); } }
  4493. break;
  4494. case "allHistory": //深度学习
  4495. _formdiv = new U.UF.UI.form(
  4496. "全历史",
  4497. $$("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/" }), {
  4498. "id": "allHistory",
  4499. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _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); } }
  4505. break;
  4506. case "chatPDF": //ai编程
  4507. _formdiv = new U.UF.UI.form(
  4508. "chatPDF",
  4509. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4510. "id": "chatPDF",
  4511. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _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); } }
  4517. break;
  4518. case "resources": //国家教育
  4519. _formdiv = new U.UF.UI.form(
  4520. "国家教育",
  4521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4522. "id": "resources",
  4523. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _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); } }
  4529. break;
  4530. case "codeEdit": //源码编辑
  4531. _formdiv = new U.UF.UI.form(
  4532. "源码编辑",
  4533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4534. "id": "codeEdit",
  4535. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4536. "onresize": function () { }
  4537. }, {
  4538. closecallback: function () { }
  4539. }, { "style": { "height": "36px" } }).form; //创建窗体
  4540. _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); } }
  4541. break; //
  4542. case "MindMap": //MindMap
  4543. _formdiv = new U.UF.UI.form(
  4544. "MindMap",
  4545. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4546. "id": "MindMap",
  4547. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4548. "onresize": function () { }
  4549. }, {
  4550. closecallback: function () { }
  4551. }, { "style": { "height": "36px" } }).form; //创建窗体
  4552. _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); } }
  4553. break;
  4554. case "netWorkPanel": //netWorkPanel
  4555. _formdiv = new U.UF.UI.form(
  4556. "netWorkPanel",
  4557. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4558. "id": "netWorkPanel",
  4559. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. _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); } }
  4565. break;
  4566. case "GeoGebra": //GeoGebra
  4567. _formdiv = new U.UF.UI.form(
  4568. "GeoGebra",
  4569. $$("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" }), {
  4570. "id": "GeoGebra",
  4571. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4572. "onresize": function () { }
  4573. }, {
  4574. closecallback: function () { }
  4575. }, { "style": { "height": "36px" } }).form; //创建窗体
  4576. _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); } }
  4577. break;
  4578. case "translation": //翻译
  4579. _formdiv = new U.UF.UI.form(
  4580. "翻译",
  4581. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4582. "id": "translation",
  4583. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4584. "onresize": function () { }
  4585. }, {
  4586. closecallback: function () { }
  4587. }, { "style": { "height": "36px" } }).form; //创建窗体
  4588. _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); } }
  4589. break;
  4590. case "mohe": //魔盒
  4591. _formdiv = new U.UF.UI.form(
  4592. "魔盒识字",
  4593. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4594. "id": "mohe",
  4595. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4596. "onresize": function () { }
  4597. }, {
  4598. closecallback: function () { }
  4599. }, { "style": { "height": "36px" } }).form; //创建窗体
  4600. _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); } }
  4601. break;
  4602. case "24game": //24点
  4603. _formdiv = new U.UF.UI.form(
  4604. "24点",
  4605. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4606. "id": "24game",
  4607. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4608. "onresize": function () { }
  4609. }, {
  4610. closecallback: function () { }
  4611. }, { "style": { "height": "36px" } }).form; //创建窗体
  4612. _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); } }
  4613. break;
  4614. case "case":
  4615. _formdiv = new U.UF.UI.form(
  4616. "课程进展",
  4617. $$("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 }), {
  4618. "id": "case",
  4619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4620. "onresize": function () { }
  4621. }, {
  4622. closecallback: function () { }
  4623. }, { "style": { "height": "36px" } }).form; //创建窗体
  4624. _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); } }
  4625. break;
  4626. case "snf":
  4627. _formdiv = new U.UF.UI.form(
  4628. "赛诺梵",
  4629. $$("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" }), {
  4630. "id": "snf",
  4631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4632. "onresize": function () { }
  4633. }, {
  4634. closecallback: function () { }
  4635. }, { "style": { "height": "36px" } }).form; //创建窗体
  4636. _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); } }
  4637. break;
  4638. case "hanFamily":
  4639. _formdiv = new U.UF.UI.form(
  4640. "汉字家族",
  4641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4642. "id": "hanFamily",
  4643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4644. "onresize": function () { }
  4645. }, {
  4646. closecallback: function () { }
  4647. }, { "style": { "height": "36px" } }).form; //创建窗体
  4648. _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); } }
  4649. break;
  4650. case "hanClassics":
  4651. _formdiv = new U.UF.UI.form(
  4652. "国学经典",
  4653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4654. "id": "hanClassics",
  4655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4656. "onresize": function () { }
  4657. }, {
  4658. closecallback: function () { }
  4659. }, { "style": { "height": "36px" } }).form; //创建窗体
  4660. _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); } }
  4661. break;
  4662. case "hanTraining":
  4663. _formdiv = new U.UF.UI.form(
  4664. "笔画训练",
  4665. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4666. "id": "hanTraining",
  4667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4668. "onresize": function () { }
  4669. }, {
  4670. closecallback: function () { }
  4671. }, { "style": { "height": "36px" } }).form; //创建窗体
  4672. _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); } }
  4673. break;
  4674. case "hanClass":
  4675. _formdiv = new U.UF.UI.form(
  4676. "书法课堂",
  4677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4678. "id": "hanClass",
  4679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4680. "onresize": function () { }
  4681. }, {
  4682. closecallback: function () { }
  4683. }, { "style": { "height": "36px" } }).form; //创建窗体
  4684. _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); } }
  4685. break;
  4686. case "han":
  4687. _formdiv = new U.UF.UI.form(
  4688. "汉字宫",
  4689. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4690. "id": "han",
  4691. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4692. "onresize": function () { }
  4693. }, {
  4694. closecallback: function () { }
  4695. }, { "style": { "height": "36px" } }).form; //创建窗体
  4696. _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); } }
  4697. break;
  4698. case "projectGM": //课程管理
  4699. _formdiv = new U.UF.UI.form(
  4700. "课程管理",
  4701. $$("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 }), {
  4702. "id": "projectGM",
  4703. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //创建窗体
  4708. _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); } }
  4709. break;
  4710. case "studyGM": //课程中心
  4711. _formdiv = new U.UF.UI.form(
  4712. "课程中心",
  4713. $$("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
  4714. "id": "study",
  4715. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4716. "onresize": function () { }
  4717. }, {
  4718. closecallback: function () { }
  4719. }, { "style": { "height": "36px" } }).form; //创建窗体
  4720. _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); } }
  4721. break;
  4722. // studentGM
  4723. case "studentGM": //学生管理
  4724. _formdiv = new U.UF.UI.form(
  4725. "学生管理",
  4726. $$("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 }), {
  4727. "id": "studentGM",
  4728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4729. "onresize": function () { }
  4730. }, {
  4731. closecallback: function () { }
  4732. }, { "style": { "height": "36px" } }).form; //创建窗体
  4733. _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); } }
  4734. break;
  4735. case "evaluateGM": //学生评价
  4736. _formdiv = new U.UF.UI.form(
  4737. "学生评价",
  4738. $$("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 }), {
  4739. "id": "evaluateGM",
  4740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4741. "onresize": function () { }
  4742. }, {
  4743. closecallback: function () { }
  4744. }, { "style": { "height": "36px" } }).form; //创建窗体
  4745. _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); } }
  4746. break;
  4747. // classGM
  4748. case "classGM": //班级管理
  4749. _formdiv = new U.UF.UI.form(
  4750. "班级管理",
  4751. $$("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 }), {
  4752. "id": "classGM",
  4753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _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); } }
  4759. break;
  4760. // dataGM
  4761. case "dataGM":
  4762. _formdiv = new U.UF.UI.form(
  4763. "我的资料",
  4764. $$("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 }), {
  4765. "id": "dataGM",
  4766. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4767. "onresize": function () { }
  4768. }, {
  4769. closecallback: function () { }
  4770. }, { "style": { "height": "36px" } }).form; //创建窗体
  4771. _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); } }
  4772. break;
  4773. // caseGM
  4774. case "caseGM": //课程进展
  4775. _formdiv = new U.UF.UI.form(
  4776. "课程进展",
  4777. $$("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 }), {
  4778. "id": "caseGM",
  4779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4780. "onresize": function () { }
  4781. }, {
  4782. closecallback: function () { }
  4783. }, { "style": { "height": "36px" } }).form; //创建窗体
  4784. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4785. break;
  4786. // meterialGM
  4787. case "meterialGM": //素材库
  4788. _formdiv = new U.UF.UI.form(
  4789. "素材库",
  4790. $$("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 }), {
  4791. "id": "meterialGM",
  4792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4793. "onresize": function () { }
  4794. }, {
  4795. closecallback: function () { }
  4796. }, { "style": { "height": "36px" } }).form; //创建窗体
  4797. _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); } }
  4798. break;
  4799. // evaluateSGM
  4800. case "evaluateSGM": //我的评价
  4801. _formdiv = new U.UF.UI.form(
  4802. "我的评价",
  4803. $$("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 }), {
  4804. "id": "evaluateSGM",
  4805. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _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); } }
  4811. break;
  4812. case "jupyter": //jupyter
  4813. _formdiv = new U.UF.UI.form(
  4814. "jupyter",
  4815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4816. "id": "jupyter",
  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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4823. break;
  4824. case "number": //数字实验室
  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": "https://cocorobo.cn/cloud/iot/events" }), {
  4828. "id": "number",
  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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4835. break;
  4836. case "studentCourse": //项目管理 学生
  4837. _formdiv = new U.UF.UI.form(
  4838. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4839. $$("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 }), {
  4840. "id": "studentCourse",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4847. break;
  4848. case "studentCourseS": //项目管理 老师
  4849. _formdiv = new U.UF.UI.form(
  4850. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4851. $$("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 }), {
  4852. "id": "studentCourseS",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4859. break;
  4860. case "studentIndex": //项目中心
  4861. _formdiv = new U.UF.UI.form(
  4862. "项目中心",
  4863. $$("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 }), {
  4864. "id": "studentIndex",
  4865. "style": { "width": "90%", "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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4871. break;
  4872. case "CaseDesignS":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4876. "id": "case",
  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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4883. break;
  4884. case "tcStudent": //腾讯学生管理
  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/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4888. "id": "tcStudent",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4895. break;
  4896. case "tcSchool": //腾讯学校管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4900. "id": "tcSchool",
  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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4907. break;
  4908. case "tcTeacher": //腾讯学校管理
  4909. _formdiv = new U.UF.UI.form(
  4910. "教师管理",
  4911. $$("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 }), {
  4912. "id": "tcTeacher",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _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); } }
  4919. break;
  4920. case "tcData": //腾讯我的资料
  4921. _formdiv = new U.UF.UI.form(
  4922. "我的资料",
  4923. $$("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 }), {
  4924. "id": "tcData",
  4925. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4926. "onresize": function () { }
  4927. }, {
  4928. closecallback: function () { }
  4929. }, { "style": { "height": "36px" } }).form; //创建窗体
  4930. _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); } }
  4931. break;
  4932. case "tcNotice": //腾讯消息通知
  4933. _formdiv = new U.UF.UI.form(
  4934. "消息通知",
  4935. $$("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 }), {
  4936. "id": "tcNotice",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. _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); } }
  4943. break;
  4944. case "myReport": //好友打开
  4945. _formdiv = new U.UF.UI.form(
  4946. "我的评价",
  4947. $$("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 }), {
  4948. "id": "myReport",
  4949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4950. "onresize": function () { }
  4951. }, {
  4952. closecallback: function () { }
  4953. }, { "style": { "height": "36px" } }).form; //创建窗体
  4954. _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); } }
  4955. break;
  4956. case "learnAna": //好友打开
  4957. _formdiv = new U.UF.UI.form(
  4958. "学习分析",
  4959. $$("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 }), {
  4960. "id": "learnAna",
  4961. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4962. "onresize": function () { }
  4963. }, {
  4964. closecallback: function () { }
  4965. }, { "style": { "height": "36px" } }).form; //创建窗体
  4966. _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); } }
  4967. break;
  4968. case "AIChat": //AI共创
  4969. _formdiv = new U.UF.UI.form(
  4970. "AI共创",
  4971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4972. "id": "AIChat",
  4973. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4974. "onresize": function () { }
  4975. }, {
  4976. istop: true,
  4977. closecallback: function () { $("#aichat_icon").remove(); },
  4978. narrowcallback: function () {
  4979. if (!$("#aichat_icon")[0]) {
  4980. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4981. }
  4982. },
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. _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); } }
  4985. break;
  4986. case "ainew": //AI共创
  4987. _formdiv = new U.UF.UI.form(
  4988. "AI协同",
  4989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4990. "id": "ainew",
  4991. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4992. "onresize": function () { }
  4993. }, {
  4994. closecallback: function () { }
  4995. }, { "style": { "height": "36px" } }).form; //创建窗体
  4996. _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); } }
  4997. break;
  4998. case "gpt4": //gpt4
  4999. _formdiv = new U.UF.UI.form(
  5000. "AI助手",
  5001. $$("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 }), {
  5002. "id": "gpt4",
  5003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. _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); } }
  5009. break;
  5010. case "aigpt": //gpt4
  5011. _formdiv = new U.UF.UI.form(
  5012. "AI助手+",
  5013. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5014. "id": "aigpt",
  5015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5016. "onresize": function () { }
  5017. }, {
  5018. closecallback: function () { }
  5019. }, { "style": { "height": "36px" } }).form; //创建窗体
  5020. _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); } }
  5021. break;
  5022. case "futureClass": //AI共创
  5023. _formdiv = new U.UF.UI.form(
  5024. "协同建构",
  5025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  5026. "id": "synergyCourse",
  5027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () {
  5031. $("iframe", _formdiv)[0].contentWindow.loginout();
  5032. }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _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); } }
  5035. break;
  5036. case "aiagent": //ai agent
  5037. _formdiv = new U.UF.UI.form(
  5038. "AI Agent",
  5039. $$("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" }), {
  5040. "id": "AIAgent",
  5041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _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); } }
  5047. break;
  5048. case "dataBoard": //数据看板
  5049. _formdiv = new U.UF.UI.form(
  5050. "数据看板",
  5051. $$("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 }), {
  5052. "id": "dataBoard",
  5053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. _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); } }
  5059. break;
  5060. case "dataBoardSies": //数据融合
  5061. _formdiv = new U.UF.UI.form(
  5062. "数据融合",
  5063. $$("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 }), {
  5064. "id": "dataBoardSies",
  5065. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _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); } }
  5071. break;
  5072. case "dataBoardNew": //数据看板
  5073. _formdiv = new U.UF.UI.form(
  5074. "综合看板",
  5075. $$("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 }), {
  5076. "id": "dataBoardNew",
  5077. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. _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); } }
  5083. break;
  5084. case "dataBoardTest": //数据看板
  5085. _formdiv = new U.UF.UI.form(
  5086. "评测看板",
  5087. $$("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 }), {
  5088. "id": "dataBoardTest",
  5089. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _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); } }
  5095. break;
  5096. case "AIAnalyse": //AI共创
  5097. _formdiv = new U.UF.UI.form(
  5098. "AI分析",
  5099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5100. "id": "AIAnalyse",
  5101. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _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); } }
  5107. break;
  5108. case "studioCourse": //AI共创
  5109. _formdiv = new U.UF.UI.form(
  5110. "工作管理",
  5111. $$("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 }), {
  5112. "id": "studioCourse",
  5113. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _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); } }
  5119. break;
  5120. case "studioIndex": //AI共创
  5121. _formdiv = new U.UF.UI.form(
  5122. "工作中心",
  5123. $$("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 }), {
  5124. "id": "studioIndex",
  5125. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _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); } }
  5131. break;
  5132. case "source":
  5133. _formdiv = new U.UF.UI.form(
  5134. "教学资源",
  5135. $$("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 }), {
  5136. "id": "source",
  5137. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. case "testTeacher":
  5145. _formdiv = new U.UF.UI.form(
  5146. "教师管理",
  5147. $$("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 }), {
  5148. "id": "testTeacher",
  5149. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _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); } }
  5155. break;
  5156. case "testStudent":
  5157. _formdiv = new U.UF.UI.form(
  5158. "教师中心",
  5159. $$("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 }), {
  5160. "id": "testStudent",
  5161. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _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); } }
  5167. break;
  5168. case "testTeacherSies":
  5169. _formdiv = new U.UF.UI.form(
  5170. "教师管理",
  5171. $$("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 }), {
  5172. "id": "testTeacherSies",
  5173. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _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); } }
  5179. break;
  5180. case "testStudentSies":
  5181. _formdiv = new U.UF.UI.form(
  5182. "教师中心",
  5183. $$("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 }), {
  5184. "id": "testStudentSies",
  5185. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _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); } }
  5191. break;
  5192. case "ytpbl": //消息通知
  5193. _formdiv = new U.UF.UI.form(
  5194. "案例征集",
  5195. $$("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 }), {
  5196. "id": "ytpbl",
  5197. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. // 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");
  5204. break;
  5205. case "aiCourseResource": //人工智能窗体
  5206. _formdiv = new U.UF.UI.form(
  5207. false,
  5208. $$("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 }), {
  5209. "id": "aiCourseResource",
  5210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5211. "onresize": function () { },
  5212. "isdrag": false,
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _taskbar = ''
  5217. break;
  5218. case "szdjgCocooroboX": //图形化编程
  5219. _formdiv = new U.UF.UI.form(
  5220. "图形化编程",
  5221. $$("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" }), {
  5222. "id": "szdjgCocooroboX",
  5223. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _taskbar = ''
  5229. break;
  5230. case "szdjgPython": //python编程
  5231. _formdiv = new U.UF.UI.form(
  5232. "Python编程",
  5233. $$("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" }), {
  5234. "id": "szdjgPython",
  5235. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _taskbar = ''
  5241. break;
  5242. case "Record":
  5243. _formdiv = new U.UF.UI.form(
  5244. "观察记录",
  5245. $$("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 }), {
  5246. "id": "Record",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. case "aigptCourse":
  5255. _formdiv = new U.UF.UI.form(
  5256. "AI智能体",
  5257. $$("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' }), {
  5258. "id": "aigptCourse",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _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); } }
  5265. break;
  5266. case "classroomObservation":
  5267. _formdiv = new U.UF.UI.form(
  5268. "课堂观察",
  5269. $$("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 }), {
  5270. "id": "classroomObservation",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _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); } }
  5277. break;
  5278. case "pblCourse":
  5279. _formdiv = new U.UF.UI.form(
  5280. "学生PBL",
  5281. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/pblCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5282. "id": "pblCourse",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. }
  5291. //U.MD.D.I.openClick(str);
  5292. //如果有任务栏信息
  5293. if (_taskbar) {
  5294. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5295. }
  5296. }
  5297. // U.MD.D.I.openClick = function(str){
  5298. // var click = '';
  5299. // switch(str){
  5300. // case 'friend':
  5301. // click = '我的好友';
  5302. // break;
  5303. // case 'domain':
  5304. // click = '域名管理';
  5305. // break;
  5306. // case 'disk':
  5307. // click = '我的云盘';
  5308. // break;
  5309. // case 'word':
  5310. // click = 'Word';
  5311. // break;
  5312. // case 'excel':
  5313. // click = 'Execl';
  5314. // break;
  5315. // case 'txt':
  5316. // click = '文本文件';
  5317. // break;
  5318. // case 'lookupFriend':
  5319. // click = '查找好友';
  5320. // break;
  5321. // case 'ftp':
  5322. // click = 'FTP';
  5323. // break;
  5324. // case 'group':
  5325. // click = '群组';
  5326. // break;
  5327. // case 'set':
  5328. // click = '我的设置';
  5329. // break;
  5330. // case 'systemSet':
  5331. // click = '系统设置';
  5332. // break;
  5333. // case 'boomYun':
  5334. // click = '互联办公';
  5335. // break;
  5336. // case 'xz':
  5337. // click = '云端下载';
  5338. // break;
  5339. // case 'client':
  5340. // click = '有思浏览器';
  5341. // break;
  5342. // case 'backEndProgramming':
  5343. // click = '在线后台编程';
  5344. // break;
  5345. // case 'frontEndProgramming':
  5346. // click = '在线前端编程';
  5347. // break;
  5348. // default: break;
  5349. // }
  5350. // if(U.MD.D.I.Ip && click){
  5351. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5352. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5353. // })
  5354. // }
  5355. // }
  5356. /**
  5357. *函数作用:ajax简易函数,使用post格式
  5358. *@param url {data} 后台地址
  5359. *@param data {data} 参数json
  5360. *@param fn {data} 回调函数
  5361. *
  5362. */
  5363. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5364. // var xhr = new XMLHttpRequest();
  5365. // xhr.open("GET",url,true);
  5366. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5367. // xhr.onreadystatechange = function(){
  5368. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5369. // fn.call(this,xhr.responseText);
  5370. // }
  5371. // };
  5372. // xhr.send();
  5373. // }
  5374. /*判断是否是内网IP*/
  5375. // U.MD.D.I.isInnerIPFn = function(str){
  5376. // var curPageUrl = str;
  5377. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5378. // curPageUrl =curPageUrl.replace(reg1,'');
  5379. // // console.log('curPageUrl-1 '+curPageUrl);
  5380. // var reg2 = /\:+/g;//替换冒号为一点
  5381. // curPageUrl =curPageUrl.replace(reg2,'.');
  5382. // // console.log('curPageUrl-2 '+curPageUrl);
  5383. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5384. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5385. // if(curPageUrl[2] != '16'){
  5386. // return ipAddress;
  5387. // }else{
  5388. // return false;
  5389. // }
  5390. // }
  5391. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5392. // //compatibility for firefox and chrome
  5393. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5394. // var pc = new myPeerConnection({
  5395. // iceServers: []
  5396. // }),
  5397. // noop = function() {},
  5398. // localIPs = {},
  5399. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5400. // key;
  5401. // function iterateIP(ip) {
  5402. // if (!localIPs[ip]) onNewIP(ip);
  5403. // localIPs[ip] = true;
  5404. // }
  5405. // //create a bogus data channel
  5406. // pc.createDataChannel("");
  5407. // // create offer and set local description
  5408. // pc.createOffer().then(function(sdp) {
  5409. // sdp.sdp.split('\n').forEach(function(line) {
  5410. // if (line.indexOf('candidate') < 0) return;
  5411. // line.match(ipRegex).forEach(iterateIP);
  5412. // });
  5413. // pc.setLocalDescription(sdp, noop, noop);
  5414. // }).catch(function(reason) {
  5415. // // An error occurred, so handle the failure to connect
  5416. // });
  5417. // //sten for candidate events
  5418. // pc.onicecandidate = function(ice) {
  5419. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5420. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5421. // };
  5422. // }
  5423. // U.MD.D.I.getUserIpBool = function(callback){
  5424. // U.MD.D.I.getUserIP(function(ip){
  5425. // alert("Got IP! :" + ip);
  5426. // });
  5427. //}
  5428. //#endregion
  5429. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5430. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5431. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5432. _userinfo = US.userInfo, //登录用户信息
  5433. _userid = US.userInfo.userid //登录用户id
  5434. let _iframe;
  5435. let _cid = cid,
  5436. _stage = stage,
  5437. _task = task,
  5438. _tool = tool;
  5439. var _jie = $$("div", {
  5440. "style": {
  5441. "position": "absolute",
  5442. "bottom": "50px",
  5443. "right": "50px",
  5444. "zIndex": "9999",
  5445. "backgroundColor": "#2268bc",
  5446. "color": "#fff",
  5447. "padding": "12px 20px",
  5448. "cursor": "pointer",
  5449. "borderRadius": "4px",
  5450. },
  5451. "innerHTML": "提交作业"
  5452. })
  5453. let aTool = ''
  5454. let _loading = document.createElement('div')
  5455. _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;"
  5456. // _loading.id = "";
  5457. let _lchild = document.createElement('div')
  5458. let _limg = document.createElement('img')
  5459. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5460. _limg.style = "width: 26px;margin-right: 10px;"
  5461. _lchild.appendChild(_limg)
  5462. let _lspan = document.createElement('span')
  5463. _lspan.innerHTML = "上传中..."
  5464. _lchild.appendChild(_lspan)
  5465. _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%);"
  5466. _loading.appendChild(_lchild)
  5467. var _box = $$('div', {
  5468. "style": {
  5469. "position": "relative",
  5470. "width": "100%",
  5471. "height": "100%",
  5472. },
  5473. })
  5474. _box.appendChild(_loading)
  5475. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5476. switch (str) {
  5477. case "whiteboard":
  5478. aTool = 1;
  5479. _iframe = $$("iframe", {
  5480. "frameborder": "no",
  5481. "border": "0",
  5482. "scrolling ": "no",
  5483. "style": {
  5484. "cssText": "border:0;width:100%;height:100%"
  5485. },
  5486. "src": "https://beta.iwb.cocorobo.cn/"
  5487. })
  5488. _box.appendChild(_iframe);
  5489. _box.appendChild(_jie);
  5490. _formdiv = new U.UF.UI.form(
  5491. "电子白板",
  5492. _box, {
  5493. "id": "whiteboard" + cid + stage + task + tool,
  5494. "style": {
  5495. "width": "90%",
  5496. "height": "90%",
  5497. "overflow": 'hidden'
  5498. },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, {
  5503. "style": {
  5504. "height": "36px"
  5505. }
  5506. }).form; //创建窗体
  5507. _taskbar = {
  5508. "id": str + _formdiv.id,
  5509. "style": {
  5510. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5511. },
  5512. "name": "电子白板",
  5513. "forms": _formdiv,
  5514. "click": function () {
  5515. U.MD.D.I.openApplication(str, obj, info);
  5516. }
  5517. }
  5518. break;
  5519. case "mind":
  5520. aTool = 3;
  5521. _iframe = $$("iframe", {
  5522. "frameborder": "no",
  5523. "border": "0",
  5524. "scrolling ": "no",
  5525. "style": {
  5526. "cssText": "border:0;width:100%;height:100%"
  5527. },
  5528. "src": "/kityminder-editor/dist/index.html"
  5529. })
  5530. _box.appendChild(_iframe);
  5531. _box.appendChild(_jie);
  5532. _formdiv = new U.UF.UI.form(
  5533. "思维导图",
  5534. _box, { //"/jsmind/example/demo.html"
  5535. "id": "mind" + cid + stage + task + tool,
  5536. "style": {
  5537. "width": "90%",
  5538. "height": "90%",
  5539. "overflow": 'hidden'
  5540. },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, {
  5545. "style": {
  5546. "height": "36px"
  5547. }
  5548. }).form; //创建窗体
  5549. _taskbar = {
  5550. "id": str + _formdiv.id,
  5551. "style": {
  5552. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5553. },
  5554. "name": "思维导图",
  5555. "forms": _formdiv,
  5556. "click": function () {
  5557. U.MD.D.I.openApplication(str, obj, info);
  5558. }
  5559. }
  5560. break;
  5561. case "MindMap":
  5562. aTool = 3;
  5563. _iframe = $$("iframe", {
  5564. "frameborder": "no",
  5565. "border": "0",
  5566. "scrolling ": "no",
  5567. "style": {
  5568. "cssText": "border:0;width:100%;height:100%"
  5569. },
  5570. "src": "//cloud.cocorobo.cn/mind/"
  5571. })
  5572. _box.appendChild(_iframe);
  5573. _box.appendChild(_jie);
  5574. _formdiv = new U.UF.UI.form(
  5575. "思维导图",
  5576. _box, { //"/jsmind/example/demo.html"
  5577. "id": "mind" + cid + stage + task + tool,
  5578. "style": {
  5579. "width": "90%",
  5580. "height": "90%",
  5581. "overflow": 'hidden'
  5582. },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, {
  5587. "style": {
  5588. "height": "36px"
  5589. }
  5590. }).form; //创建窗体
  5591. _taskbar = {
  5592. "id": str + _formdiv.id,
  5593. "style": {
  5594. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5595. },
  5596. "name": "思维导图",
  5597. "forms": _formdiv,
  5598. "click": function () {
  5599. U.MD.D.I.openApplication(str, obj, info);
  5600. }
  5601. }
  5602. break;
  5603. case "doc":
  5604. aTool = 6;
  5605. _iframe = $$("iframe", {
  5606. "frameborder": "no",
  5607. "border": "0",
  5608. "scrolling ": "no",
  5609. "style": {
  5610. "cssText": "border:0;width:100%;height:100%"
  5611. },
  5612. "src": "/Office/Word/WordEditArea.htm"
  5613. })
  5614. _box.appendChild(_iframe);
  5615. _box.appendChild(_jie);
  5616. _formdiv = new U.UF.UI.form(
  5617. "协同文档",
  5618. _box, {
  5619. "id": "doc" + cid + stage + task + tool,
  5620. "style": {
  5621. "width": "90%",
  5622. "height": "90%",
  5623. "overflow": 'hidden'
  5624. },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, {
  5629. "style": {
  5630. "height": "36px"
  5631. }
  5632. }).form; //创建窗体
  5633. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5634. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5635. })
  5636. _taskbar = {
  5637. "id": str + _formdiv.id,
  5638. "style": {
  5639. "backgroundImage": "url(/img/icon/doc.png)"
  5640. },
  5641. "name": "协同文档",
  5642. "forms": _formdiv,
  5643. "click": function () {
  5644. U.MD.D.I.openApplication(str, obj, info);
  5645. }
  5646. }
  5647. break;
  5648. case "mindNetwork": //好友打开
  5649. aTool = 7;
  5650. _iframe = $$("iframe", {
  5651. "webkitallowfullscreen": "",
  5652. "mozallowfullscreen": "",
  5653. "allowfullscreen": "",
  5654. "frameborder": "no",
  5655. "border": "0",
  5656. "scrolling ": "no",
  5657. "style": {
  5658. "cssText": "border:0; width:100%; height:100%;"
  5659. },
  5660. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5661. })
  5662. _box.appendChild(_iframe);
  5663. _box.appendChild(_jie);
  5664. _formdiv = new U.UF.UI.form(
  5665. "思维网格",
  5666. _box, {
  5667. "id": "mindNetwork" + cid + stage + task + tool,
  5668. "style": {
  5669. "width": "90%",
  5670. "height": "90%",
  5671. "overflow": 'hidden'
  5672. },
  5673. "onresize": function () { }
  5674. }, {
  5675. closecallback: function () { }
  5676. }, {
  5677. "style": {
  5678. "height": "36px"
  5679. }
  5680. }).form; //创建窗体
  5681. _taskbar = {
  5682. "id": str + _formdiv.id,
  5683. "style": {
  5684. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5685. },
  5686. "name": "思维网格",
  5687. "forms": _formdiv,
  5688. "click": function () {
  5689. U.MD.D.I.openApplication(str, obj, info);
  5690. }
  5691. }
  5692. break;
  5693. case "courseDesign":
  5694. _iframe = $$("iframe", {
  5695. "webkitallowfullscreen": "",
  5696. "mozallowfullscreen": "",
  5697. "allowfullscreen": "",
  5698. "frameborder": "no",
  5699. "border": "0",
  5700. "scrolling ": "no",
  5701. "style": {
  5702. "cssText": "border:0; width:100%; height:100%;"
  5703. },
  5704. "src": "/course-design-vue"
  5705. })
  5706. _box.appendChild(_iframe);
  5707. _box.appendChild(_jie);
  5708. _formdiv = new U.UF.UI.form(
  5709. "项目设计",
  5710. _box, {
  5711. "id": "courseDesign" + cid + stage + task + tool,
  5712. "style": {
  5713. "width": "90%",
  5714. "height": "90%",
  5715. "overflow": 'hidden'
  5716. },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, {
  5721. "style": {
  5722. "height": "36px"
  5723. }
  5724. }).form; //创建窗体
  5725. _taskbar = {
  5726. "id": str + _formdiv.id,
  5727. "style": {
  5728. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5729. },
  5730. "name": "项目设计",
  5731. "forms": _formdiv,
  5732. "click": function () {
  5733. U.MD.D.I.openApplication(str, obj, info);
  5734. }
  5735. }
  5736. break;
  5737. }
  5738. const script1 = document.createElement("script");
  5739. script1.type = "text/javascript";
  5740. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5741. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5742. const script2 = document.createElement("script");
  5743. script2.type = "text/javascript";
  5744. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5745. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5746. const script3 = document.createElement("script");
  5747. script3.type = "text/javascript";
  5748. script3.charset = "UTF-8";
  5749. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5750. const script4 = document.createElement("script");
  5751. script4.type = "text/javascript";
  5752. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5753. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5754. if (_iframe) {
  5755. if (str == 'doc') {
  5756. _iframe = _formdiv.querySelector('iframe')
  5757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5758. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5759. _iframe.contentWindow.document.body.appendChild(script1);
  5760. _iframe.contentWindow.document.body.appendChild(script2);
  5761. // _iframe.contentWindow.document.body.appendChild(script3);
  5762. _iframe.contentWindow.document.body.appendChild(script4);
  5763. })
  5764. if (onloadListener) {
  5765. _iframe.contentDocument.location.reload()
  5766. } else {
  5767. _iframe.contentDocument.location.reload()
  5768. }
  5769. } else if (str == 'courseDesign') {
  5770. U.UF.DL.iframeLoad(_iframe, function () {
  5771. // _iframe.contentWindow.U.MD.O.W.load();
  5772. // _iframe.contentWindow.document.body.appendChild(script1);
  5773. _iframe.contentWindow.document.body.appendChild(script2);
  5774. _iframe.contentWindow.document.body.appendChild(script4);
  5775. })
  5776. } else if (str == 'mind') {
  5777. _iframe = _formdiv.querySelector('iframe')
  5778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5779. //
  5780. _iframe.contentWindow.document.body.appendChild(script1);
  5781. _iframe.contentWindow.document.body.appendChild(script2);
  5782. _iframe.contentWindow.document.body.appendChild(script4);
  5783. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5784. })
  5785. if (onloadListener) {
  5786. _iframe.contentDocument.location.reload()
  5787. } else {
  5788. _iframe.contentDocument.location.reload()
  5789. }
  5790. } else if (str == 'whiteboard') {
  5791. _iframe = _formdiv.querySelector('iframe')
  5792. let onloadListener = _iframe.onload = () => {
  5793. _iframe.contentWindow.document.body.appendChild(script1);
  5794. _iframe.contentWindow.document.body.appendChild(script2);
  5795. _iframe.contentWindow.document.body.appendChild(script4);
  5796. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5797. };
  5798. if (onloadListener) {
  5799. _iframe.contentDocument.location.reload()
  5800. } else {
  5801. _iframe.contentDocument.location.reload()
  5802. }
  5803. } else {
  5804. _iframe.onload = () => {
  5805. _iframe.contentWindow.document.body.appendChild(script1);
  5806. _iframe.contentWindow.document.body.appendChild(script2);
  5807. // _iframe.contentWindow.document.body.appendChild(script3);
  5808. _iframe.contentWindow.document.body.appendChild(script4);
  5809. };
  5810. }
  5811. _jie.onclick = async () => {
  5812. let text = ''
  5813. if (aTool == 1) {
  5814. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5815. } else if (aTool == 6) {
  5816. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5817. } else if (aTool == 3) {
  5818. text = await U.MD.D.I.getEditorContent(_iframe);
  5819. }
  5820. _loading.style.display = 'flex'
  5821. console.log(_loading);
  5822. var _ajs = _iframe.contentWindow.document.createElement("script");
  5823. _ajs.type = "text/javascript";
  5824. _ajs.innerHTML =
  5825. // 'console.log(' + _loading + ');\n' +
  5826. 'var _js = document.createElement("script");\n' +
  5827. '_js.type="text/javascript";\n' +
  5828. '_js.charset="UTF-8";\n' +
  5829. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5830. "_js.onload = function(){\n" +
  5831. ' var a = document.getElementsByTagName("img")\n' +
  5832. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5833. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5834. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5835. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5836. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5837. "beforeUpload_shishi(file," +
  5838. "'" +
  5839. _userid +
  5840. "'" +
  5841. ", " +
  5842. "'" +
  5843. _cid +
  5844. "'" +
  5845. ", " +
  5846. "'" +
  5847. _stage +
  5848. "'" +
  5849. ", " +
  5850. "'" +
  5851. _task +
  5852. "'" +
  5853. ", " +
  5854. "'" +
  5855. _tool +
  5856. "'" +
  5857. ", " +
  5858. "'" +
  5859. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5860. "'" +
  5861. ", " +
  5862. "'" +
  5863. aTool +
  5864. "'" +
  5865. ", " +
  5866. "`" +
  5867. text +
  5868. "`" +
  5869. ")\n" +
  5870. " });\n" +
  5871. "}\n" +
  5872. "document.head.appendChild(_js);\n";
  5873. _iframe.contentWindow.document.head.appendChild(_ajs);
  5874. }
  5875. }
  5876. //U.MD.D.I.openClick(str);
  5877. //如果有任务栏信息
  5878. // if (_taskbar) {
  5879. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5880. // }
  5881. }
  5882. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5883. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5884. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5885. _userinfo = US.userInfo, //登录用户信息
  5886. _userid = US.userInfo.userid //登录用户id
  5887. let _iframe;
  5888. let _cid = cid,
  5889. _stage = stage,
  5890. _task = task,
  5891. _tool = tool;
  5892. var _jie = $$("div", {
  5893. "style": {
  5894. "position": "absolute",
  5895. "bottom": "50px",
  5896. "right": "50px",
  5897. "zIndex": "9999",
  5898. "backgroundColor": "#2268bc",
  5899. "color": "#fff",
  5900. "padding": "12px 20px",
  5901. "cursor": "pointer",
  5902. "borderRadius": "4px",
  5903. },
  5904. "innerHTML": "提交作业"
  5905. })
  5906. let aTool = ''
  5907. let _loading = document.createElement('div')
  5908. _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;"
  5909. // _loading.id = "";
  5910. let _lchild = document.createElement('div')
  5911. let _limg = document.createElement('img')
  5912. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5913. _limg.style = "width: 26px;margin-right: 10px;"
  5914. _lchild.appendChild(_limg)
  5915. let _lspan = document.createElement('span')
  5916. _lspan.innerHTML = "上传中..."
  5917. _lchild.appendChild(_lspan)
  5918. _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%);"
  5919. _loading.appendChild(_lchild)
  5920. var _box = $$('div', {
  5921. "style": {
  5922. "position": "relative",
  5923. "width": "100%",
  5924. "height": "100%",
  5925. },
  5926. })
  5927. _box.appendChild(_loading)
  5928. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5929. switch (str) {
  5930. case "whiteboard":
  5931. aTool = 1;
  5932. _iframe = $$("iframe", {
  5933. "frameborder": "no",
  5934. "border": "0",
  5935. "scrolling ": "no",
  5936. "style": {
  5937. "cssText": "border:0;width:100%;height:100%"
  5938. },
  5939. "src": "https://beta.iwb.cocorobo.cn/"
  5940. })
  5941. _box.appendChild(_iframe);
  5942. _box.appendChild(_jie);
  5943. _formdiv = new U.UF.UI.form(
  5944. "电子白板",
  5945. _box, {
  5946. "id": "whiteboard" + cid + stage + task + tool,
  5947. "style": {
  5948. "width": "90%",
  5949. "height": "90%",
  5950. "overflow": 'hidden'
  5951. },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, {
  5956. "style": {
  5957. "height": "36px"
  5958. }
  5959. }).form; //创建窗体
  5960. _taskbar = {
  5961. "id": str + _formdiv.id,
  5962. "style": {
  5963. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5964. },
  5965. "name": "电子白板",
  5966. "forms": _formdiv,
  5967. "click": function () {
  5968. U.MD.D.I.openApplication(str, obj, info);
  5969. }
  5970. }
  5971. break;
  5972. case "mind":
  5973. aTool = 3;
  5974. _iframe = $$("iframe", {
  5975. "frameborder": "no",
  5976. "border": "0",
  5977. "scrolling ": "no",
  5978. "style": {
  5979. "cssText": "border:0;width:100%;height:100%"
  5980. },
  5981. "src": "/kityminder-editor/dist/index.html"
  5982. })
  5983. _box.appendChild(_iframe);
  5984. _box.appendChild(_jie);
  5985. _formdiv = new U.UF.UI.form(
  5986. "思维导图",
  5987. _box, { //"/jsmind/example/demo.html"
  5988. "id": "mind" + cid + stage + task + tool,
  5989. "style": {
  5990. "width": "90%",
  5991. "height": "90%",
  5992. "overflow": 'hidden'
  5993. },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, {
  5998. "style": {
  5999. "height": "36px"
  6000. }
  6001. }).form; //创建窗体
  6002. _taskbar = {
  6003. "id": str + _formdiv.id,
  6004. "style": {
  6005. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6006. },
  6007. "name": "思维导图",
  6008. "forms": _formdiv,
  6009. "click": function () {
  6010. U.MD.D.I.openApplication(str, obj, info);
  6011. }
  6012. }
  6013. break;
  6014. case "MindMap":
  6015. aTool = 3;
  6016. _iframe = $$("iframe", {
  6017. "frameborder": "no",
  6018. "border": "0",
  6019. "scrolling ": "no",
  6020. "style": {
  6021. "cssText": "border:0;width:100%;height:100%"
  6022. },
  6023. "src": "//cloud.cocorobo.cn/mind/"
  6024. })
  6025. _box.appendChild(_iframe);
  6026. _box.appendChild(_jie);
  6027. _formdiv = new U.UF.UI.form(
  6028. "思维导图",
  6029. _box, { //"/jsmind/example/demo.html"
  6030. "id": "mind" + cid + stage + task + tool,
  6031. "style": {
  6032. "width": "90%",
  6033. "height": "90%",
  6034. "overflow": 'hidden'
  6035. },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, {
  6040. "style": {
  6041. "height": "36px"
  6042. }
  6043. }).form; //创建窗体
  6044. _taskbar = {
  6045. "id": str + _formdiv.id,
  6046. "style": {
  6047. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6048. },
  6049. "name": "思维导图",
  6050. "forms": _formdiv,
  6051. "click": function () {
  6052. U.MD.D.I.openApplication(str, obj, info);
  6053. }
  6054. }
  6055. break;
  6056. case "doc":
  6057. aTool = 6;
  6058. _iframe = $$("iframe", {
  6059. "frameborder": "no",
  6060. "border": "0",
  6061. "scrolling ": "no",
  6062. "style": {
  6063. "cssText": "border:0;width:100%;height:100%"
  6064. },
  6065. "src": "/Office/Word/WordEditArea.htm"
  6066. })
  6067. _box.appendChild(_iframe);
  6068. _box.appendChild(_jie);
  6069. _formdiv = new U.UF.UI.form(
  6070. "协同文档",
  6071. _box, {
  6072. "id": "doc" + cid + stage + task + tool,
  6073. "style": {
  6074. "width": "90%",
  6075. "height": "90%",
  6076. "overflow": 'hidden'
  6077. },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, {
  6082. "style": {
  6083. "height": "36px"
  6084. }
  6085. }).form; //创建窗体
  6086. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6087. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6088. })
  6089. _taskbar = {
  6090. "id": str + _formdiv.id,
  6091. "style": {
  6092. "backgroundImage": "url(/img/icon/doc.png)"
  6093. },
  6094. "name": "协同文档",
  6095. "forms": _formdiv,
  6096. "click": function () {
  6097. U.MD.D.I.openApplication(str, obj, info);
  6098. }
  6099. }
  6100. break;
  6101. case "mindNetwork": //好友打开
  6102. aTool = 7;
  6103. _iframe = $$("iframe", {
  6104. "webkitallowfullscreen": "",
  6105. "mozallowfullscreen": "",
  6106. "allowfullscreen": "",
  6107. "frameborder": "no",
  6108. "border": "0",
  6109. "scrolling ": "no",
  6110. "style": {
  6111. "cssText": "border:0; width:100%; height:100%;"
  6112. },
  6113. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6114. })
  6115. _box.appendChild(_iframe);
  6116. _box.appendChild(_jie);
  6117. _formdiv = new U.UF.UI.form(
  6118. "思维网格",
  6119. _box, {
  6120. "id": "mindNetwork" + cid + stage + task + tool,
  6121. "style": {
  6122. "width": "90%",
  6123. "height": "90%",
  6124. "overflow": 'hidden'
  6125. },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, {
  6130. "style": {
  6131. "height": "36px"
  6132. }
  6133. }).form; //创建窗体
  6134. _taskbar = {
  6135. "id": str + _formdiv.id,
  6136. "style": {
  6137. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6138. },
  6139. "name": "思维网格",
  6140. "forms": _formdiv,
  6141. "click": function () {
  6142. U.MD.D.I.openApplication(str, obj, info);
  6143. }
  6144. }
  6145. break;
  6146. case "courseDesign":
  6147. _iframe = $$("iframe", {
  6148. "webkitallowfullscreen": "",
  6149. "mozallowfullscreen": "",
  6150. "allowfullscreen": "",
  6151. "frameborder": "no",
  6152. "border": "0",
  6153. "scrolling ": "no",
  6154. "style": {
  6155. "cssText": "border:0; width:100%; height:100%;"
  6156. },
  6157. "src": "/course-design-vue"
  6158. })
  6159. _box.appendChild(_iframe);
  6160. _box.appendChild(_jie);
  6161. _formdiv = new U.UF.UI.form(
  6162. "项目设计",
  6163. _box, {
  6164. "id": "courseDesign" + cid + stage + task + tool,
  6165. "style": {
  6166. "width": "90%",
  6167. "height": "90%",
  6168. "overflow": 'hidden'
  6169. },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, {
  6174. "style": {
  6175. "height": "36px"
  6176. }
  6177. }).form; //创建窗体
  6178. _taskbar = {
  6179. "id": str + _formdiv.id,
  6180. "style": {
  6181. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6182. },
  6183. "name": "项目设计",
  6184. "forms": _formdiv,
  6185. "click": function () {
  6186. U.MD.D.I.openApplication(str, obj, info);
  6187. }
  6188. }
  6189. break;
  6190. }
  6191. const script1 = document.createElement("script");
  6192. script1.type = "text/javascript";
  6193. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6194. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6195. const script2 = document.createElement("script");
  6196. script2.type = "text/javascript";
  6197. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6198. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6199. const script3 = document.createElement("script");
  6200. script3.type = "text/javascript";
  6201. script3.charset = "UTF-8";
  6202. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6203. const script4 = document.createElement("script");
  6204. script4.type = "text/javascript";
  6205. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6206. script4.src = window.origin + "/js/Common/jietu2E.js";
  6207. if (_iframe) {
  6208. if (str == 'doc') {
  6209. _iframe = _formdiv.querySelector('iframe')
  6210. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6211. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6212. _iframe.contentWindow.document.body.appendChild(script1);
  6213. _iframe.contentWindow.document.body.appendChild(script2);
  6214. // _iframe.contentWindow.document.body.appendChild(script3);
  6215. _iframe.contentWindow.document.body.appendChild(script4);
  6216. })
  6217. if (onloadListener) {
  6218. _iframe.contentDocument.location.reload()
  6219. } else {
  6220. _iframe.contentDocument.location.reload()
  6221. }
  6222. } else if (str == 'courseDesign') {
  6223. U.UF.DL.iframeLoad(_iframe, function () {
  6224. // _iframe.contentWindow.U.MD.O.W.load();
  6225. // _iframe.contentWindow.document.body.appendChild(script1);
  6226. _iframe.contentWindow.document.body.appendChild(script2);
  6227. _iframe.contentWindow.document.body.appendChild(script4);
  6228. })
  6229. } else if (str == 'mind') {
  6230. _iframe = _formdiv.querySelector('iframe')
  6231. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6232. //
  6233. _iframe.contentWindow.document.body.appendChild(script1);
  6234. _iframe.contentWindow.document.body.appendChild(script2);
  6235. _iframe.contentWindow.document.body.appendChild(script4);
  6236. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6237. })
  6238. if (onloadListener) {
  6239. _iframe.contentDocument.location.reload()
  6240. } else {
  6241. _iframe.contentDocument.location.reload()
  6242. }
  6243. } else if (str == 'whiteboard') {
  6244. _iframe = _formdiv.querySelector('iframe')
  6245. let onloadListener = _iframe.onload = () => {
  6246. _iframe.contentWindow.document.body.appendChild(script1);
  6247. _iframe.contentWindow.document.body.appendChild(script2);
  6248. _iframe.contentWindow.document.body.appendChild(script4);
  6249. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6250. };
  6251. if (onloadListener) {
  6252. _iframe.contentDocument.location.reload()
  6253. } else {
  6254. _iframe.contentDocument.location.reload()
  6255. }
  6256. } else {
  6257. _iframe.onload = () => {
  6258. _iframe.contentWindow.document.body.appendChild(script1);
  6259. _iframe.contentWindow.document.body.appendChild(script2);
  6260. // _iframe.contentWindow.document.body.appendChild(script3);
  6261. _iframe.contentWindow.document.body.appendChild(script4);
  6262. };
  6263. }
  6264. _jie.onclick = async () => {
  6265. let text = ''
  6266. if (aTool == 1) {
  6267. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6268. } else if (aTool == 6) {
  6269. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6270. } else if (aTool == 3) {
  6271. text = await U.MD.D.I.getEditorContent(_iframe);
  6272. }
  6273. _loading.style.display = 'flex'
  6274. console.log(_loading);
  6275. var _ajs = _iframe.contentWindow.document.createElement("script");
  6276. _ajs.type = "text/javascript";
  6277. _ajs.innerHTML =
  6278. // 'console.log(' + _loading + ');\n' +
  6279. 'var _js = document.createElement("script");\n' +
  6280. '_js.type="text/javascript";\n' +
  6281. '_js.charset="UTF-8";\n' +
  6282. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6283. "_js.onload = function(){\n" +
  6284. ' var a = document.getElementsByTagName("img")\n' +
  6285. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6286. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6287. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6288. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6289. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6290. "beforeUpload_shishi(file," +
  6291. "'" +
  6292. _userid +
  6293. "'" +
  6294. ", " +
  6295. "'" +
  6296. _cid +
  6297. "'" +
  6298. ", " +
  6299. "'" +
  6300. _stage +
  6301. "'" +
  6302. ", " +
  6303. "'" +
  6304. _task +
  6305. "'" +
  6306. ", " +
  6307. "'" +
  6308. _tool +
  6309. "'" +
  6310. ", " +
  6311. "'" +
  6312. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6313. "'" +
  6314. ", " +
  6315. "'" +
  6316. aTool +
  6317. "'" +
  6318. ", " +
  6319. "`" +
  6320. text +
  6321. "`" +
  6322. ")\n" +
  6323. " });\n" +
  6324. "}\n" +
  6325. "document.head.appendChild(_js);\n";
  6326. _iframe.contentWindow.document.head.appendChild(_ajs);
  6327. }
  6328. }
  6329. //U.MD.D.I.openClick(str);
  6330. //如果有任务栏信息
  6331. // if (_taskbar) {
  6332. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6333. // }
  6334. }
  6335. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6336. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6337. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6338. _userid = student.userid, //登录用户id
  6339. _username = student.student //用户名字
  6340. let _iframe;
  6341. let _cid = cid,
  6342. _stage = stage,
  6343. _task = task,
  6344. _tool = tool;
  6345. var _jie = $$("div", {
  6346. "style": {
  6347. "position": "absolute",
  6348. "bottom": "50px",
  6349. "right": "50px",
  6350. "zIndex": "9999",
  6351. "backgroundColor": "#2268bc",
  6352. "color": "#fff",
  6353. "padding": "12px 20px",
  6354. "cursor": "pointer",
  6355. "borderRadius": "4px",
  6356. },
  6357. "innerHTML": "提交作业"
  6358. })
  6359. let aTool = ''
  6360. let _loading = document.createElement('div')
  6361. _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;"
  6362. // _loading.id = "";
  6363. let _lchild = document.createElement('div')
  6364. let _limg = document.createElement('img')
  6365. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6366. _limg.style = "width: 26px;margin-right: 10px;"
  6367. _lchild.appendChild(_limg)
  6368. let _lspan = document.createElement('span')
  6369. _lspan.innerHTML = "上传中..."
  6370. _lchild.appendChild(_lspan)
  6371. _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%);"
  6372. _loading.appendChild(_lchild)
  6373. var _box = $$('div', {
  6374. "style": {
  6375. "position": "relative",
  6376. "width": "100%",
  6377. "height": "100%",
  6378. },
  6379. })
  6380. _box.appendChild(_loading)
  6381. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6382. switch (str) {
  6383. case "whiteboard":
  6384. aTool = 1;
  6385. _iframe = $$("iframe", {
  6386. "frameborder": "no",
  6387. "border": "0",
  6388. "scrolling ": "no",
  6389. "style": {
  6390. "cssText": "border:0;width:100%;height:100%"
  6391. },
  6392. "src": "https://beta.iwb.cocorobo.cn/"
  6393. })
  6394. _box.appendChild(_iframe);
  6395. _box.appendChild(_jie);
  6396. _formdiv = new U.UF.UI.form(
  6397. "电子白板-" + _username,
  6398. _box, {
  6399. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6400. "style": {
  6401. "width": "90%",
  6402. "height": "90%",
  6403. "overflow": 'hidden'
  6404. },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, {
  6409. "style": {
  6410. "height": "36px"
  6411. }
  6412. }).form; //创建窗体
  6413. _taskbar = {
  6414. "id": str + _formdiv.id,
  6415. "style": {
  6416. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6417. },
  6418. "name": "电子白板",
  6419. "forms": _formdiv,
  6420. "click": function () {
  6421. U.MD.D.I.openApplication(str, obj, info);
  6422. }
  6423. }
  6424. break;
  6425. case "mind":
  6426. aTool = 3;
  6427. _iframe = $$("iframe", {
  6428. "frameborder": "no",
  6429. "border": "0",
  6430. "scrolling ": "no",
  6431. "style": {
  6432. "cssText": "border:0;width:100%;height:100%"
  6433. },
  6434. "src": "/kityminder-editor/dist/index.html"
  6435. })
  6436. _box.appendChild(_iframe);
  6437. _box.appendChild(_jie);
  6438. _formdiv = new U.UF.UI.form(
  6439. "思维导图-" + _username,
  6440. _box, { //"/jsmind/example/demo.html"
  6441. "id": "mind" + cid + stage + task + tool + _userid,
  6442. "style": {
  6443. "width": "90%",
  6444. "height": "90%",
  6445. "overflow": 'hidden'
  6446. },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, {
  6451. "style": {
  6452. "height": "36px"
  6453. }
  6454. }).form; //创建窗体
  6455. _taskbar = {
  6456. "id": str + _formdiv.id,
  6457. "style": {
  6458. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6459. },
  6460. "name": "思维导图",
  6461. "forms": _formdiv,
  6462. "click": function () {
  6463. U.MD.D.I.openApplication(str, obj, info);
  6464. }
  6465. }
  6466. break;
  6467. case "MindMap":
  6468. aTool = 3;
  6469. _iframe = $$("iframe", {
  6470. "frameborder": "no",
  6471. "border": "0",
  6472. "scrolling ": "no",
  6473. "style": {
  6474. "cssText": "border:0;width:100%;height:100%"
  6475. },
  6476. "src": "//cloud.cocorobo.cn/mind/"
  6477. })
  6478. _box.appendChild(_iframe);
  6479. _box.appendChild(_jie);
  6480. _formdiv = new U.UF.UI.form(
  6481. "思维导图-" + _username,
  6482. _box, { //"/jsmind/example/demo.html"
  6483. "id": "mind" + cid + stage + task + tool + _userid,
  6484. "style": {
  6485. "width": "90%",
  6486. "height": "90%",
  6487. "overflow": 'hidden'
  6488. },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, {
  6493. "style": {
  6494. "height": "36px"
  6495. }
  6496. }).form; //创建窗体
  6497. _taskbar = {
  6498. "id": str + _formdiv.id,
  6499. "style": {
  6500. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6501. },
  6502. "name": "思维导图",
  6503. "forms": _formdiv,
  6504. "click": function () {
  6505. U.MD.D.I.openApplication(str, obj, info);
  6506. }
  6507. }
  6508. break;
  6509. case "doc":
  6510. aTool = 6;
  6511. _iframe = $$("iframe", {
  6512. "frameborder": "no",
  6513. "border": "0",
  6514. "scrolling ": "no",
  6515. "style": {
  6516. "cssText": "border:0;width:100%;height:100%"
  6517. },
  6518. "src": "/Office/Word/WordEditArea.htm"
  6519. })
  6520. _box.appendChild(_iframe);
  6521. _box.appendChild(_jie);
  6522. _formdiv = new U.UF.UI.form(
  6523. "协同文档-" + _username,
  6524. _box, {
  6525. "id": "doc" + cid + stage + task + tool + _userid,
  6526. "style": {
  6527. "width": "90%",
  6528. "height": "90%",
  6529. "overflow": 'hidden'
  6530. },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, {
  6535. "style": {
  6536. "height": "36px"
  6537. }
  6538. }).form; //创建窗体
  6539. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6540. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6541. })
  6542. _taskbar = {
  6543. "id": str + _formdiv.id,
  6544. "style": {
  6545. "backgroundImage": "url(/img/icon/doc.png)"
  6546. },
  6547. "name": "协同文档",
  6548. "forms": _formdiv,
  6549. "click": function () {
  6550. U.MD.D.I.openApplication(str, obj, info);
  6551. }
  6552. }
  6553. break;
  6554. case "mindNetwork": //好友打开
  6555. aTool = 7;
  6556. _iframe = $$("iframe", {
  6557. "webkitallowfullscreen": "",
  6558. "mozallowfullscreen": "",
  6559. "allowfullscreen": "",
  6560. "frameborder": "no",
  6561. "border": "0",
  6562. "scrolling ": "no",
  6563. "style": {
  6564. "cssText": "border:0; width:100%; height:100%;"
  6565. },
  6566. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6567. })
  6568. _box.appendChild(_iframe);
  6569. _box.appendChild(_jie);
  6570. _formdiv = new U.UF.UI.form(
  6571. "思维网格-" + _username,
  6572. _box, {
  6573. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6574. "style": {
  6575. "width": "90%",
  6576. "height": "90%",
  6577. "overflow": 'hidden'
  6578. },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, {
  6583. "style": {
  6584. "height": "36px"
  6585. }
  6586. }).form; //创建窗体
  6587. _taskbar = {
  6588. "id": str + _formdiv.id,
  6589. "style": {
  6590. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6591. },
  6592. "name": "思维网格",
  6593. "forms": _formdiv,
  6594. "click": function () {
  6595. U.MD.D.I.openApplication(str, obj, info);
  6596. }
  6597. }
  6598. break;
  6599. case "courseDesign":
  6600. _iframe = $$("iframe", {
  6601. "webkitallowfullscreen": "",
  6602. "mozallowfullscreen": "",
  6603. "allowfullscreen": "",
  6604. "frameborder": "no",
  6605. "border": "0",
  6606. "scrolling ": "no",
  6607. "style": {
  6608. "cssText": "border:0; width:100%; height:100%;"
  6609. },
  6610. "src": "/course-design-vue"
  6611. })
  6612. _box.appendChild(_iframe);
  6613. _box.appendChild(_jie);
  6614. _formdiv = new U.UF.UI.form(
  6615. "项目设计-" + _username,
  6616. _box, {
  6617. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6618. "style": {
  6619. "width": "90%",
  6620. "height": "90%",
  6621. "overflow": 'hidden'
  6622. },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, {
  6627. "style": {
  6628. "height": "36px"
  6629. }
  6630. }).form; //创建窗体
  6631. _taskbar = {
  6632. "id": str + _formdiv.id,
  6633. "style": {
  6634. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6635. },
  6636. "name": "项目设计",
  6637. "forms": _formdiv,
  6638. "click": function () {
  6639. U.MD.D.I.openApplication(str, obj, info);
  6640. }
  6641. }
  6642. break;
  6643. }
  6644. const script1 = document.createElement("script");
  6645. script1.type = "text/javascript";
  6646. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6647. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6648. const script2 = document.createElement("script");
  6649. script2.type = "text/javascript";
  6650. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6651. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6652. const script3 = document.createElement("script");
  6653. script3.type = "text/javascript";
  6654. script3.charset = "UTF-8";
  6655. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6656. const script4 = document.createElement("script");
  6657. script4.type = "text/javascript";
  6658. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6659. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6660. if (_iframe) {
  6661. if (str == 'doc') {
  6662. _iframe = _formdiv.querySelector('iframe')
  6663. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6664. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6665. _iframe.contentWindow.document.body.appendChild(script1);
  6666. _iframe.contentWindow.document.body.appendChild(script2);
  6667. // _iframe.contentWindow.document.body.appendChild(script3);
  6668. _iframe.contentWindow.document.body.appendChild(script4);
  6669. })
  6670. if (onloadListener) {
  6671. _iframe.contentDocument.location.reload()
  6672. } else {
  6673. _iframe.contentDocument.location.reload()
  6674. }
  6675. } else if (str == 'courseDesign') {
  6676. U.UF.DL.iframeLoad(_iframe, function () {
  6677. // _iframe.contentWindow.U.MD.O.W.load();
  6678. // _iframe.contentWindow.document.body.appendChild(script1);
  6679. _iframe.contentWindow.document.body.appendChild(script2);
  6680. _iframe.contentWindow.document.body.appendChild(script4);
  6681. })
  6682. } else if (str == 'mind') {
  6683. _iframe = _formdiv.querySelector('iframe')
  6684. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6685. //
  6686. _iframe.contentWindow.document.body.appendChild(script1);
  6687. _iframe.contentWindow.document.body.appendChild(script2);
  6688. _iframe.contentWindow.document.body.appendChild(script4);
  6689. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6690. })
  6691. if (onloadListener) {
  6692. _iframe.contentDocument.location.reload()
  6693. } else {
  6694. _iframe.contentDocument.location.reload()
  6695. }
  6696. } else if (str == 'whiteboard') {
  6697. _iframe = _formdiv.querySelector('iframe')
  6698. let onloadListener = _iframe.onload = () => {
  6699. _iframe.contentWindow.document.body.appendChild(script1);
  6700. _iframe.contentWindow.document.body.appendChild(script2);
  6701. _iframe.contentWindow.document.body.appendChild(script4);
  6702. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6703. };
  6704. if (onloadListener) {
  6705. _iframe.contentDocument.location.reload()
  6706. } else {
  6707. _iframe.contentDocument.location.reload()
  6708. }
  6709. } else {
  6710. _iframe.onload = () => {
  6711. _iframe.contentWindow.document.body.appendChild(script1);
  6712. _iframe.contentWindow.document.body.appendChild(script2);
  6713. // _iframe.contentWindow.document.body.appendChild(script3);
  6714. _iframe.contentWindow.document.body.appendChild(script4);
  6715. };
  6716. }
  6717. _jie.onclick = async () => {
  6718. let text = ''
  6719. if (aTool == 1) {
  6720. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6721. } else if (aTool == 6) {
  6722. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6723. } else if (aTool == 3) {
  6724. text = await U.MD.D.I.getEditorContent(_iframe);
  6725. }
  6726. _loading.style.display = 'flex'
  6727. console.log(_loading);
  6728. var _ajs = _iframe.contentWindow.document.createElement("script");
  6729. _ajs.type = "text/javascript";
  6730. _ajs.innerHTML =
  6731. // 'console.log(' + _loading + ');\n' +
  6732. 'var _js = document.createElement("script");\n' +
  6733. '_js.type="text/javascript";\n' +
  6734. '_js.charset="UTF-8";\n' +
  6735. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6736. "_js.onload = function(){\n" +
  6737. ' var a = document.getElementsByTagName("img")\n' +
  6738. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6739. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6740. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6741. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6742. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6743. "beforeUpload_shishi(file," +
  6744. "'" +
  6745. _userid +
  6746. "'" +
  6747. ", " +
  6748. "'" +
  6749. _cid +
  6750. "'" +
  6751. ", " +
  6752. "'" +
  6753. _stage +
  6754. "'" +
  6755. ", " +
  6756. "'" +
  6757. _task +
  6758. "'" +
  6759. ", " +
  6760. "'" +
  6761. _tool +
  6762. "'" +
  6763. ", " +
  6764. "'" +
  6765. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6766. "'" +
  6767. ", " +
  6768. "'" +
  6769. aTool +
  6770. "'" +
  6771. ", " +
  6772. "`" +
  6773. text +
  6774. "`" +
  6775. ")\n" +
  6776. " });\n" +
  6777. "}\n" +
  6778. "document.head.appendChild(_js);\n";
  6779. _iframe.contentWindow.document.head.appendChild(_ajs);
  6780. }
  6781. }
  6782. }
  6783. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6784. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6785. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6786. _userid = student.userid, //登录用户id
  6787. _username = student.student //用户名字
  6788. let _iframe;
  6789. let _cid = cid,
  6790. _stage = stage,
  6791. _task = task,
  6792. _tool = tool;
  6793. var _jie = $$("div", {
  6794. "style": {
  6795. "position": "absolute",
  6796. "bottom": "50px",
  6797. "right": "50px",
  6798. "zIndex": "9999",
  6799. "backgroundColor": "#2268bc",
  6800. "color": "#fff",
  6801. "padding": "12px 20px",
  6802. "cursor": "pointer",
  6803. "borderRadius": "4px",
  6804. },
  6805. "innerHTML": "提交作业"
  6806. })
  6807. let aTool = ''
  6808. let _loading = document.createElement('div')
  6809. _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;"
  6810. // _loading.id = "";
  6811. let _lchild = document.createElement('div')
  6812. let _limg = document.createElement('img')
  6813. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6814. _limg.style = "width: 26px;margin-right: 10px;"
  6815. _lchild.appendChild(_limg)
  6816. let _lspan = document.createElement('span')
  6817. _lspan.innerHTML = "上传中..."
  6818. _lchild.appendChild(_lspan)
  6819. _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%);"
  6820. _loading.appendChild(_lchild)
  6821. var _box = $$('div', {
  6822. "style": {
  6823. "position": "relative",
  6824. "width": "100%",
  6825. "height": "100%",
  6826. },
  6827. })
  6828. _box.appendChild(_loading)
  6829. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6830. switch (str) {
  6831. case "whiteboard":
  6832. aTool = 1;
  6833. _iframe = $$("iframe", {
  6834. "frameborder": "no",
  6835. "border": "0",
  6836. "scrolling ": "no",
  6837. "style": {
  6838. "cssText": "border:0;width:100%;height:100%"
  6839. },
  6840. "src": "https://beta.iwb.cocorobo.cn/"
  6841. })
  6842. _box.appendChild(_iframe);
  6843. _box.appendChild(_jie);
  6844. _formdiv = new U.UF.UI.form(
  6845. "电子白板-" + _username,
  6846. _box, {
  6847. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6848. "style": {
  6849. "width": "90%",
  6850. "height": "90%",
  6851. "overflow": 'hidden'
  6852. },
  6853. "onresize": function () { }
  6854. }, {
  6855. closecallback: function () { }
  6856. }, {
  6857. "style": {
  6858. "height": "36px"
  6859. }
  6860. }).form; //创建窗体
  6861. _taskbar = {
  6862. "id": str + _formdiv.id,
  6863. "style": {
  6864. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6865. },
  6866. "name": "电子白板",
  6867. "forms": _formdiv,
  6868. "click": function () {
  6869. U.MD.D.I.openApplication(str, obj, info);
  6870. }
  6871. }
  6872. break;
  6873. case "mind":
  6874. aTool = 3;
  6875. _iframe = $$("iframe", {
  6876. "frameborder": "no",
  6877. "border": "0",
  6878. "scrolling ": "no",
  6879. "style": {
  6880. "cssText": "border:0;width:100%;height:100%"
  6881. },
  6882. "src": "/kityminder-editor/dist/index.html"
  6883. })
  6884. _box.appendChild(_iframe);
  6885. _box.appendChild(_jie);
  6886. _formdiv = new U.UF.UI.form(
  6887. "思维导图-" + _username,
  6888. _box, { //"/jsmind/example/demo.html"
  6889. "id": "mind" + cid + stage + task + tool + _userid,
  6890. "style": {
  6891. "width": "90%",
  6892. "height": "90%",
  6893. "overflow": 'hidden'
  6894. },
  6895. "onresize": function () { }
  6896. }, {
  6897. closecallback: function () { }
  6898. }, {
  6899. "style": {
  6900. "height": "36px"
  6901. }
  6902. }).form; //创建窗体
  6903. _taskbar = {
  6904. "id": str + _formdiv.id,
  6905. "style": {
  6906. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6907. },
  6908. "name": "思维导图",
  6909. "forms": _formdiv,
  6910. "click": function () {
  6911. U.MD.D.I.openApplication(str, obj, info);
  6912. }
  6913. }
  6914. break;
  6915. case "MindMap":
  6916. aTool = 3;
  6917. _iframe = $$("iframe", {
  6918. "frameborder": "no",
  6919. "border": "0",
  6920. "scrolling ": "no",
  6921. "style": {
  6922. "cssText": "border:0;width:100%;height:100%"
  6923. },
  6924. "src": "//cloud.cocorobo.cn/mind/"
  6925. })
  6926. _box.appendChild(_iframe);
  6927. _box.appendChild(_jie);
  6928. _formdiv = new U.UF.UI.form(
  6929. "思维导图-" + _username,
  6930. _box, { //"/jsmind/example/demo.html"
  6931. "id": "mind" + cid + stage + task + tool + _userid,
  6932. "style": {
  6933. "width": "90%",
  6934. "height": "90%",
  6935. "overflow": 'hidden'
  6936. },
  6937. "onresize": function () { }
  6938. }, {
  6939. closecallback: function () { }
  6940. }, {
  6941. "style": {
  6942. "height": "36px"
  6943. }
  6944. }).form; //创建窗体
  6945. _taskbar = {
  6946. "id": str + _formdiv.id,
  6947. "style": {
  6948. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6949. },
  6950. "name": "思维导图",
  6951. "forms": _formdiv,
  6952. "click": function () {
  6953. U.MD.D.I.openApplication(str, obj, info);
  6954. }
  6955. }
  6956. break;
  6957. case "doc":
  6958. aTool = 6;
  6959. _iframe = $$("iframe", {
  6960. "frameborder": "no",
  6961. "border": "0",
  6962. "scrolling ": "no",
  6963. "style": {
  6964. "cssText": "border:0;width:100%;height:100%"
  6965. },
  6966. "src": "/Office/Word/WordEditArea.htm"
  6967. })
  6968. _box.appendChild(_iframe);
  6969. _box.appendChild(_jie);
  6970. _formdiv = new U.UF.UI.form(
  6971. "协同文档-" + _username,
  6972. _box, {
  6973. "id": "doc" + cid + stage + task + tool + _userid,
  6974. "style": {
  6975. "width": "90%",
  6976. "height": "90%",
  6977. "overflow": 'hidden'
  6978. },
  6979. "onresize": function () { }
  6980. }, {
  6981. closecallback: function () { }
  6982. }, {
  6983. "style": {
  6984. "height": "36px"
  6985. }
  6986. }).form; //创建窗体
  6987. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6988. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6989. })
  6990. _taskbar = {
  6991. "id": str + _formdiv.id,
  6992. "style": {
  6993. "backgroundImage": "url(/img/icon/doc.png)"
  6994. },
  6995. "name": "协同文档",
  6996. "forms": _formdiv,
  6997. "click": function () {
  6998. U.MD.D.I.openApplication(str, obj, info);
  6999. }
  7000. }
  7001. break;
  7002. case "mindNetwork": //好友打开
  7003. aTool = 7;
  7004. _iframe = $$("iframe", {
  7005. "webkitallowfullscreen": "",
  7006. "mozallowfullscreen": "",
  7007. "allowfullscreen": "",
  7008. "frameborder": "no",
  7009. "border": "0",
  7010. "scrolling ": "no",
  7011. "style": {
  7012. "cssText": "border:0; width:100%; height:100%;"
  7013. },
  7014. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7015. })
  7016. _box.appendChild(_iframe);
  7017. _box.appendChild(_jie);
  7018. _formdiv = new U.UF.UI.form(
  7019. "思维网格-" + _username,
  7020. _box, {
  7021. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7022. "style": {
  7023. "width": "90%",
  7024. "height": "90%",
  7025. "overflow": 'hidden'
  7026. },
  7027. "onresize": function () { }
  7028. }, {
  7029. closecallback: function () { }
  7030. }, {
  7031. "style": {
  7032. "height": "36px"
  7033. }
  7034. }).form; //创建窗体
  7035. _taskbar = {
  7036. "id": str + _formdiv.id,
  7037. "style": {
  7038. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7039. },
  7040. "name": "思维网格",
  7041. "forms": _formdiv,
  7042. "click": function () {
  7043. U.MD.D.I.openApplication(str, obj, info);
  7044. }
  7045. }
  7046. break;
  7047. case "courseDesign":
  7048. _iframe = $$("iframe", {
  7049. "webkitallowfullscreen": "",
  7050. "mozallowfullscreen": "",
  7051. "allowfullscreen": "",
  7052. "frameborder": "no",
  7053. "border": "0",
  7054. "scrolling ": "no",
  7055. "style": {
  7056. "cssText": "border:0; width:100%; height:100%;"
  7057. },
  7058. "src": "/course-design-vue"
  7059. })
  7060. _box.appendChild(_iframe);
  7061. _box.appendChild(_jie);
  7062. _formdiv = new U.UF.UI.form(
  7063. "项目设计-" + _username,
  7064. _box, {
  7065. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7066. "style": {
  7067. "width": "90%",
  7068. "height": "90%",
  7069. "overflow": 'hidden'
  7070. },
  7071. "onresize": function () { }
  7072. }, {
  7073. closecallback: function () { }
  7074. }, {
  7075. "style": {
  7076. "height": "36px"
  7077. }
  7078. }).form; //创建窗体
  7079. _taskbar = {
  7080. "id": str + _formdiv.id,
  7081. "style": {
  7082. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7083. },
  7084. "name": "项目设计",
  7085. "forms": _formdiv,
  7086. "click": function () {
  7087. U.MD.D.I.openApplication(str, obj, info);
  7088. }
  7089. }
  7090. break;
  7091. }
  7092. const script1 = document.createElement("script");
  7093. script1.type = "text/javascript";
  7094. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7095. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7096. const script2 = document.createElement("script");
  7097. script2.type = "text/javascript";
  7098. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7099. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7100. const script3 = document.createElement("script");
  7101. script3.type = "text/javascript";
  7102. script3.charset = "UTF-8";
  7103. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7104. const script4 = document.createElement("script");
  7105. script4.type = "text/javascript";
  7106. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7107. script4.src = window.origin + "/js/Common/jietu2E.js";
  7108. if (_iframe) {
  7109. if (str == 'doc') {
  7110. _iframe = _formdiv.querySelector('iframe')
  7111. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7112. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7113. _iframe.contentWindow.document.body.appendChild(script1);
  7114. _iframe.contentWindow.document.body.appendChild(script2);
  7115. // _iframe.contentWindow.document.body.appendChild(script3);
  7116. _iframe.contentWindow.document.body.appendChild(script4);
  7117. })
  7118. if (onloadListener) {
  7119. _iframe.contentDocument.location.reload()
  7120. } else {
  7121. _iframe.contentDocument.location.reload()
  7122. }
  7123. } else if (str == 'courseDesign') {
  7124. U.UF.DL.iframeLoad(_iframe, function () {
  7125. // _iframe.contentWindow.U.MD.O.W.load();
  7126. // _iframe.contentWindow.document.body.appendChild(script1);
  7127. _iframe.contentWindow.document.body.appendChild(script2);
  7128. _iframe.contentWindow.document.body.appendChild(script4);
  7129. })
  7130. } else if (str == 'mind') {
  7131. _iframe = _formdiv.querySelector('iframe')
  7132. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7133. //
  7134. _iframe.contentWindow.document.body.appendChild(script1);
  7135. _iframe.contentWindow.document.body.appendChild(script2);
  7136. _iframe.contentWindow.document.body.appendChild(script4);
  7137. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7138. })
  7139. if (onloadListener) {
  7140. _iframe.contentDocument.location.reload()
  7141. } else {
  7142. _iframe.contentDocument.location.reload()
  7143. }
  7144. } else if (str == 'whiteboard') {
  7145. _iframe = _formdiv.querySelector('iframe')
  7146. let onloadListener = _iframe.onload = () => {
  7147. _iframe.contentWindow.document.body.appendChild(script1);
  7148. _iframe.contentWindow.document.body.appendChild(script2);
  7149. _iframe.contentWindow.document.body.appendChild(script4);
  7150. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7151. };
  7152. if (onloadListener) {
  7153. _iframe.contentDocument.location.reload()
  7154. } else {
  7155. _iframe.contentDocument.location.reload()
  7156. }
  7157. } else {
  7158. _iframe.onload = () => {
  7159. _iframe.contentWindow.document.body.appendChild(script1);
  7160. _iframe.contentWindow.document.body.appendChild(script2);
  7161. // _iframe.contentWindow.document.body.appendChild(script3);
  7162. _iframe.contentWindow.document.body.appendChild(script4);
  7163. };
  7164. }
  7165. _jie.onclick = async () => {
  7166. let text = ''
  7167. if (aTool == 1) {
  7168. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7169. } else if (aTool == 6) {
  7170. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7171. } else if (aTool == 3) {
  7172. text = await U.MD.D.I.getEditorContent(_iframe);
  7173. }
  7174. _loading.style.display = 'flex'
  7175. console.log(_loading);
  7176. var _ajs = _iframe.contentWindow.document.createElement("script");
  7177. _ajs.type = "text/javascript";
  7178. _ajs.innerHTML =
  7179. // 'console.log(' + _loading + ');\n' +
  7180. 'var _js = document.createElement("script");\n' +
  7181. '_js.type="text/javascript";\n' +
  7182. '_js.charset="UTF-8";\n' +
  7183. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7184. "_js.onload = function(){\n" +
  7185. ' var a = document.getElementsByTagName("img")\n' +
  7186. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7187. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7188. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7189. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7190. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7191. "beforeUpload_shishi(file," +
  7192. "'" +
  7193. _userid +
  7194. "'" +
  7195. ", " +
  7196. "'" +
  7197. _cid +
  7198. "'" +
  7199. ", " +
  7200. "'" +
  7201. _stage +
  7202. "'" +
  7203. ", " +
  7204. "'" +
  7205. _task +
  7206. "'" +
  7207. ", " +
  7208. "'" +
  7209. _tool +
  7210. "'" +
  7211. ", " +
  7212. "'" +
  7213. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7214. "'" +
  7215. ", " +
  7216. "'" +
  7217. aTool +
  7218. "'" +
  7219. ", " +
  7220. "`" +
  7221. text +
  7222. "`" +
  7223. ")\n" +
  7224. " });\n" +
  7225. "}\n" +
  7226. "document.head.appendChild(_js);\n";
  7227. _iframe.contentWindow.document.head.appendChild(_ajs);
  7228. }
  7229. }
  7230. }
  7231. U.MD.D.I.getEditorContent = function (iframe) {
  7232. return new Promise((resolve, reject) => {
  7233. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7234. console.log(content);
  7235. resolve(content)
  7236. });
  7237. });
  7238. }
  7239. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7240. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7241. // if (res.value[0].length > 0) {
  7242. // // resolve(res.value[0][0].text);
  7243. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7244. // $(fileInput).val('');
  7245. // });
  7246. // }
  7247. // }, [], { "type": "GET", "withCredentials": true });
  7248. var xmlhttp;
  7249. var Mac, Sn, DeviceId
  7250. if (window.XMLHttpRequest) {
  7251. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7252. xmlhttp = new XMLHttpRequest();
  7253. } else {
  7254. // IE6, IE5 浏览器执行代码
  7255. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7256. }
  7257. xmlhttp.onreadystatechange = function () {
  7258. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7259. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7260. // resolve(res.value[0][0].text);
  7261. if (type == '2') {
  7262. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7263. } else if (type == '3') {
  7264. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7265. }
  7266. } else {
  7267. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7268. }
  7269. }
  7270. }
  7271. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7272. xmlhttp.send();
  7273. }
  7274. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7275. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7276. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7277. _userinfo = US.userInfo, //登录用户信息
  7278. _userid = US.userInfo.userid //登录用户id
  7279. let _iframe;
  7280. let _cid = cid,
  7281. _stage = stage,
  7282. _task = task,
  7283. _tool = tool;
  7284. var _jie = $$("div", {
  7285. "style": {
  7286. "position": "absolute",
  7287. "bottom": "50px",
  7288. "right": "50px",
  7289. "zIndex": "9999",
  7290. "backgroundColor": "#2268bc",
  7291. "color": "#fff",
  7292. "padding": "12px 20px",
  7293. "cursor": "pointer",
  7294. "borderRadius": "4px",
  7295. },
  7296. "innerHTML": "确认并提交"
  7297. })
  7298. let aTool = ''
  7299. let _loading = document.createElement('div')
  7300. _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;"
  7301. // _loading.id = "";
  7302. let _lchild = document.createElement('div')
  7303. let _limg = document.createElement('img')
  7304. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7305. _limg.style = "width: 26px;margin-right: 10px;"
  7306. _lchild.appendChild(_limg)
  7307. let _lspan = document.createElement('span')
  7308. _lspan.innerHTML = "上传中..."
  7309. _lchild.appendChild(_lspan)
  7310. _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%);"
  7311. _loading.appendChild(_lchild)
  7312. var _box = $$('div', {
  7313. "style": {
  7314. "position": "relative",
  7315. "width": "100%",
  7316. "height": "100%",
  7317. },
  7318. })
  7319. _box.appendChild(_loading)
  7320. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7321. switch (str) {
  7322. case "whiteboard":
  7323. aTool = 1;
  7324. _iframe = $$("iframe", {
  7325. "frameborder": "no",
  7326. "border": "0",
  7327. "scrolling ": "no",
  7328. "style": {
  7329. "cssText": "border:0;width:100%;height:100%"
  7330. },
  7331. "src": "https://beta.iwb.cocorobo.cn/"
  7332. })
  7333. _box.appendChild(_iframe);
  7334. _box.appendChild(_jie);
  7335. _formdiv = new U.UF.UI.form(
  7336. "电子白板",
  7337. _box, {
  7338. "id": "whiteboards" + cid + stage + task + tool,
  7339. "style": {
  7340. "width": "90%",
  7341. "height": "90%",
  7342. "overflow": 'hidden'
  7343. },
  7344. "onresize": function () { }
  7345. }, {
  7346. closecallback: function () { }
  7347. }, {
  7348. "style": {
  7349. "height": "36px"
  7350. }
  7351. }).form; //创建窗体
  7352. _taskbar = {
  7353. "id": str + _formdiv.id,
  7354. "style": {
  7355. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7356. },
  7357. "name": "电子白板",
  7358. "forms": _formdiv,
  7359. "click": function () {
  7360. U.MD.D.I.openApplication(str, obj, info);
  7361. }
  7362. }
  7363. break;
  7364. case "mind":
  7365. aTool = 3;
  7366. _iframe = $$("iframe", {
  7367. "frameborder": "no",
  7368. "border": "0",
  7369. "scrolling ": "no",
  7370. "style": {
  7371. "cssText": "border:0;width:100%;height:100%"
  7372. },
  7373. "src": "/kityminder-editor/dist/index.html"
  7374. });
  7375. _box.appendChild(_iframe);
  7376. _box.appendChild(_jie);
  7377. _formdiv = new U.UF.UI.form(
  7378. "思维导图",
  7379. _box, { //"/jsmind/example/demo.html"
  7380. "id": "minds" + cid + stage + task + tool,
  7381. "style": {
  7382. "width": "90%",
  7383. "height": "90%",
  7384. "overflow": 'hidden'
  7385. },
  7386. "onresize": function () { }
  7387. }, {
  7388. closecallback: function () { }
  7389. }, {
  7390. "style": {
  7391. "height": "36px"
  7392. }
  7393. }).form; //创建窗体
  7394. _taskbar = {
  7395. "id": str + _formdiv.id,
  7396. "style": {
  7397. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7398. },
  7399. "name": "思维导图",
  7400. "forms": _formdiv,
  7401. "click": function () {
  7402. U.MD.D.I.openApplication(str, obj, info);
  7403. }
  7404. }
  7405. break;
  7406. case "doc":
  7407. aTool = 6;
  7408. _iframe = $$("iframe", {
  7409. "frameborder": "no",
  7410. "border": "0",
  7411. "scrolling ": "no",
  7412. "style": {
  7413. "cssText": "border:0;width:100%;height:100%"
  7414. },
  7415. "src": "/Office/Word/WordEditArea.htm"
  7416. })
  7417. _box.appendChild(_iframe);
  7418. _box.appendChild(_jie);
  7419. _formdiv = new U.UF.UI.form(
  7420. "协同文档",
  7421. _box, {
  7422. "id": "docs" + cid + stage + task + tool,
  7423. "style": {
  7424. "width": "90%",
  7425. "height": "90%",
  7426. "overflow": 'hidden'
  7427. },
  7428. "onresize": function () { }
  7429. }, {
  7430. closecallback: function () { }
  7431. }, {
  7432. "style": {
  7433. "height": "36px"
  7434. }
  7435. }).form; //创建窗体
  7436. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7437. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7438. })
  7439. _taskbar = {
  7440. "id": str + _formdiv.id,
  7441. "style": {
  7442. "backgroundImage": "url(/img/icon/doc.png)"
  7443. },
  7444. "name": "协同文档",
  7445. "forms": _formdiv,
  7446. "click": function () {
  7447. U.MD.D.I.openApplication(str, obj, info);
  7448. }
  7449. }
  7450. break;
  7451. }
  7452. const script1 = document.createElement("script");
  7453. script1.type = "text/javascript";
  7454. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7455. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7456. const script2 = document.createElement("script");
  7457. script2.type = "text/javascript";
  7458. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7459. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7460. const script3 = document.createElement("script");
  7461. script3.type = "text/javascript";
  7462. script3.charset = "UTF-8";
  7463. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7464. const script4 = document.createElement("script");
  7465. script4.type = "text/javascript";
  7466. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7467. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7468. if (_iframe) {
  7469. if (str == 'doc') {
  7470. _iframe = _formdiv.querySelector('iframe')
  7471. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7472. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7473. _iframe.contentWindow.document.body.appendChild(script1);
  7474. _iframe.contentWindow.document.body.appendChild(script2);
  7475. // _iframe.contentWindow.document.body.appendChild(script3);
  7476. _iframe.contentWindow.document.body.appendChild(script4);
  7477. })
  7478. if (onloadListener) {
  7479. _iframe.contentDocument.location.reload()
  7480. } else {
  7481. _iframe.contentDocument.location.reload()
  7482. }
  7483. } else if (str == 'mind') {
  7484. _iframe = _formdiv.querySelector('iframe')
  7485. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7486. _iframe.contentWindow.document.body.appendChild(script1);
  7487. _iframe.contentWindow.document.body.appendChild(script2);
  7488. _iframe.contentWindow.document.body.appendChild(script4);
  7489. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7490. })
  7491. if (onloadListener) {
  7492. _iframe.contentDocument.location.reload()
  7493. } else {
  7494. _iframe.contentDocument.location.reload()
  7495. }
  7496. } else {
  7497. _iframe.onload = () => {
  7498. _iframe.contentWindow.document.body.appendChild(script1);
  7499. _iframe.contentWindow.document.body.appendChild(script2);
  7500. // _iframe.contentWindow.document.body.appendChild(script3);
  7501. _iframe.contentWindow.document.body.appendChild(script4);
  7502. };
  7503. }
  7504. _jie.onclick = async () => {
  7505. let text = ''
  7506. if (aTool == 6) {
  7507. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7508. } else if (aTool == 3) {
  7509. text = await U.MD.D.I.getEditorContent(_iframe);
  7510. }
  7511. _loading.style.display = 'flex'
  7512. console.log(_loading);
  7513. var _ajs = _iframe.contentWindow.document.createElement("script");
  7514. _ajs.type = "text/javascript";
  7515. _ajs.innerHTML =
  7516. // 'console.log(' + _loading + ');\n' +
  7517. 'var _js = document.createElement("script");\n' +
  7518. '_js.type="text/javascript";\n' +
  7519. '_js.charset="UTF-8";\n' +
  7520. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7521. "_js.onload = function(){\n" +
  7522. ' var a = document.getElementsByTagName("img")\n' +
  7523. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7524. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7525. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7526. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7527. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7528. "beforeUpload_shishi(file," +
  7529. "'" +
  7530. _userid +
  7531. "'" +
  7532. ", " +
  7533. "'" +
  7534. _cid +
  7535. "'" +
  7536. ", " +
  7537. "'" +
  7538. _stage +
  7539. "'" +
  7540. ", " +
  7541. "'" +
  7542. _task +
  7543. "'" +
  7544. ", " +
  7545. "'" +
  7546. _tool +
  7547. "'" +
  7548. ", " +
  7549. "'" +
  7550. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7551. "'" +
  7552. ", " +
  7553. "'" +
  7554. aTool +
  7555. "'" +
  7556. ", " +
  7557. "`" +
  7558. text +
  7559. "`" +
  7560. ")\n" +
  7561. " });\n" +
  7562. "}\n" +
  7563. "document.head.appendChild(_js);\n";
  7564. _iframe.contentWindow.document.head.appendChild(_ajs);
  7565. }
  7566. }
  7567. //U.MD.D.I.openClick(str);
  7568. //如果有任务栏信息
  7569. // if (_taskbar) {
  7570. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7571. // }
  7572. }
  7573. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7574. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7575. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7576. _userinfo = US.userInfo, //登录用户信息
  7577. _userid = US.userInfo.userid //登录用户id
  7578. let _iframe;
  7579. let _cid = cid,
  7580. _stage = stage,
  7581. _task = task,
  7582. _tool = tool;
  7583. var _jie = $$("div", {
  7584. "style": {
  7585. "position": "absolute",
  7586. "bottom": "50px",
  7587. "right": "50px",
  7588. "zIndex": "9999",
  7589. "backgroundColor": "#2268bc",
  7590. "color": "#fff",
  7591. "padding": "12px 20px",
  7592. "cursor": "pointer",
  7593. "borderRadius": "4px",
  7594. },
  7595. "innerHTML": "确认并提交"
  7596. })
  7597. let aTool = ''
  7598. let _loading = document.createElement('div')
  7599. _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;"
  7600. // _loading.id = "";
  7601. let _lchild = document.createElement('div')
  7602. let _limg = document.createElement('img')
  7603. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7604. _limg.style = "width: 26px;margin-right: 10px;"
  7605. _lchild.appendChild(_limg)
  7606. let _lspan = document.createElement('span')
  7607. _lspan.innerHTML = "上传中..."
  7608. _lchild.appendChild(_lspan)
  7609. _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%);"
  7610. _loading.appendChild(_lchild)
  7611. var _box = $$('div', {
  7612. "style": {
  7613. "position": "relative",
  7614. "width": "100%",
  7615. "height": "100%",
  7616. },
  7617. })
  7618. _box.appendChild(_loading)
  7619. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7620. switch (str) {
  7621. case "whiteboard":
  7622. aTool = 1;
  7623. _iframe = $$("iframe", {
  7624. "frameborder": "no",
  7625. "border": "0",
  7626. "scrolling ": "no",
  7627. "style": {
  7628. "cssText": "border:0;width:100%;height:100%"
  7629. },
  7630. "src": "https://beta.iwb.cocorobo.cn/"
  7631. })
  7632. _box.appendChild(_iframe);
  7633. _box.appendChild(_jie);
  7634. _formdiv = new U.UF.UI.form(
  7635. "电子白板",
  7636. _box, {
  7637. "id": "whiteboards" + cid + stage + task + tool,
  7638. "style": {
  7639. "width": "90%",
  7640. "height": "90%",
  7641. "overflow": 'hidden'
  7642. },
  7643. "onresize": function () { }
  7644. }, {
  7645. closecallback: function () { }
  7646. }, {
  7647. "style": {
  7648. "height": "36px"
  7649. }
  7650. }).form; //创建窗体
  7651. _taskbar = {
  7652. "id": str + _formdiv.id,
  7653. "style": {
  7654. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7655. },
  7656. "name": "电子白板",
  7657. "forms": _formdiv,
  7658. "click": function () {
  7659. U.MD.D.I.openApplication(str, obj, info);
  7660. }
  7661. }
  7662. break;
  7663. case "mind":
  7664. aTool = 3;
  7665. _iframe = $$("iframe", {
  7666. "frameborder": "no",
  7667. "border": "0",
  7668. "scrolling ": "no",
  7669. "style": {
  7670. "cssText": "border:0;width:100%;height:100%"
  7671. },
  7672. "src": "/kityminder-editor/dist/index.html"
  7673. });
  7674. _box.appendChild(_iframe);
  7675. _box.appendChild(_jie);
  7676. _formdiv = new U.UF.UI.form(
  7677. "思维导图",
  7678. _box, { //"/jsmind/example/demo.html"
  7679. "id": "minds" + cid + stage + task + tool,
  7680. "style": {
  7681. "width": "90%",
  7682. "height": "90%",
  7683. "overflow": 'hidden'
  7684. },
  7685. "onresize": function () { }
  7686. }, {
  7687. closecallback: function () { }
  7688. }, {
  7689. "style": {
  7690. "height": "36px"
  7691. }
  7692. }).form; //创建窗体
  7693. _taskbar = {
  7694. "id": str + _formdiv.id,
  7695. "style": {
  7696. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7697. },
  7698. "name": "思维导图",
  7699. "forms": _formdiv,
  7700. "click": function () {
  7701. U.MD.D.I.openApplication(str, obj, info);
  7702. }
  7703. }
  7704. break;
  7705. case "doc":
  7706. aTool = 6;
  7707. _iframe = $$("iframe", {
  7708. "frameborder": "no",
  7709. "border": "0",
  7710. "scrolling ": "no",
  7711. "style": {
  7712. "cssText": "border:0;width:100%;height:100%"
  7713. },
  7714. "src": "/Office/Word/WordEditArea.htm"
  7715. })
  7716. _box.appendChild(_iframe);
  7717. _box.appendChild(_jie);
  7718. _formdiv = new U.UF.UI.form(
  7719. "协同文档",
  7720. _box, {
  7721. "id": "docs" + cid + stage + task + tool,
  7722. "style": {
  7723. "width": "90%",
  7724. "height": "90%",
  7725. "overflow": 'hidden'
  7726. },
  7727. "onresize": function () { }
  7728. }, {
  7729. closecallback: function () { }
  7730. }, {
  7731. "style": {
  7732. "height": "36px"
  7733. }
  7734. }).form; //创建窗体
  7735. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7736. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7737. })
  7738. _taskbar = {
  7739. "id": str + _formdiv.id,
  7740. "style": {
  7741. "backgroundImage": "url(/img/icon/doc.png)"
  7742. },
  7743. "name": "协同文档",
  7744. "forms": _formdiv,
  7745. "click": function () {
  7746. U.MD.D.I.openApplication(str, obj, info);
  7747. }
  7748. }
  7749. break;
  7750. }
  7751. const script1 = document.createElement("script");
  7752. script1.type = "text/javascript";
  7753. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7754. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7755. const script2 = document.createElement("script");
  7756. script2.type = "text/javascript";
  7757. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7758. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7759. const script3 = document.createElement("script");
  7760. script3.type = "text/javascript";
  7761. script3.charset = "UTF-8";
  7762. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7763. const script4 = document.createElement("script");
  7764. script4.type = "text/javascript";
  7765. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7766. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7767. if (_iframe) {
  7768. if (str == 'doc') {
  7769. _iframe = _formdiv.querySelector('iframe')
  7770. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7771. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7772. _iframe.contentWindow.document.body.appendChild(script1);
  7773. _iframe.contentWindow.document.body.appendChild(script2);
  7774. // _iframe.contentWindow.document.body.appendChild(script3);
  7775. _iframe.contentWindow.document.body.appendChild(script4);
  7776. })
  7777. if (onloadListener) {
  7778. _iframe.contentDocument.location.reload()
  7779. } else {
  7780. _iframe.contentDocument.location.reload()
  7781. }
  7782. } else if (str == 'mind') {
  7783. _iframe = _formdiv.querySelector('iframe')
  7784. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7785. _iframe.contentWindow.document.body.appendChild(script1);
  7786. _iframe.contentWindow.document.body.appendChild(script2);
  7787. _iframe.contentWindow.document.body.appendChild(script4);
  7788. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7789. })
  7790. if (onloadListener) {
  7791. _iframe.contentDocument.location.reload()
  7792. } else {
  7793. _iframe.contentDocument.location.reload()
  7794. }
  7795. } else {
  7796. _iframe.onload = () => {
  7797. _iframe.contentWindow.document.body.appendChild(script1);
  7798. _iframe.contentWindow.document.body.appendChild(script2);
  7799. // _iframe.contentWindow.document.body.appendChild(script3);
  7800. _iframe.contentWindow.document.body.appendChild(script4);
  7801. };
  7802. }
  7803. _jie.onclick = async () => {
  7804. let text = ''
  7805. if (aTool == 6) {
  7806. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7807. } else if (aTool == 3) {
  7808. text = await U.MD.D.I.getEditorContent(_iframe);
  7809. }
  7810. _loading.style.display = 'flex'
  7811. console.log(_loading);
  7812. var _ajs = _iframe.contentWindow.document.createElement("script");
  7813. _ajs.type = "text/javascript";
  7814. _ajs.innerHTML =
  7815. // 'console.log(' + _loading + ');\n' +
  7816. 'var _js = document.createElement("script");\n' +
  7817. '_js.type="text/javascript";\n' +
  7818. '_js.charset="UTF-8";\n' +
  7819. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7820. "_js.onload = function(){\n" +
  7821. ' var a = document.getElementsByTagName("img")\n' +
  7822. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7823. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7824. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7825. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7826. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7827. "beforeUpload_shishi(file," +
  7828. "'" +
  7829. _userid +
  7830. "'" +
  7831. ", " +
  7832. "'" +
  7833. _cid +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _stage +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _task +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. _tool +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7850. "'" +
  7851. ", " +
  7852. "'" +
  7853. aTool +
  7854. "'" +
  7855. ", " +
  7856. "`" +
  7857. text +
  7858. "`" +
  7859. ")\n" +
  7860. " });\n" +
  7861. "}\n" +
  7862. "document.head.appendChild(_js);\n";
  7863. _iframe.contentWindow.document.head.appendChild(_ajs);
  7864. }
  7865. }
  7866. //U.MD.D.I.openClick(str);
  7867. //如果有任务栏信息
  7868. // if (_taskbar) {
  7869. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7870. // }
  7871. }
  7872. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7873. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7874. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7875. _userinfo = US.userInfo, //登录用户信息
  7876. _userid = US.userInfo.userid //登录用户id
  7877. let _iframe;
  7878. let _cid = cid,
  7879. _stage = stage,
  7880. _task = task,
  7881. _tool = tool;
  7882. var _jie = $$("div", {
  7883. "style": {
  7884. "position": "absolute",
  7885. "bottom": "50px",
  7886. "right": "50px",
  7887. "zIndex": "9999",
  7888. "backgroundColor": "#2268bc",
  7889. "color": "#fff",
  7890. "padding": "12px 20px",
  7891. "cursor": "pointer",
  7892. "borderRadius": "4px",
  7893. },
  7894. "innerHTML": "上传模板"
  7895. })
  7896. let aTool = ''
  7897. let _loading = document.createElement('div')
  7898. _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;"
  7899. // _loading.id = "";
  7900. let _lchild = document.createElement('div')
  7901. let _limg = document.createElement('img')
  7902. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7903. _limg.style = "width: 26px;margin-right: 10px;"
  7904. _lchild.appendChild(_limg)
  7905. let _lspan = document.createElement('span')
  7906. _lspan.innerHTML = "上传中..."
  7907. _lchild.appendChild(_lspan)
  7908. _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%);"
  7909. _loading.appendChild(_lchild)
  7910. var _box = $$('div', {
  7911. "style": {
  7912. "position": "relative",
  7913. "width": "100%",
  7914. "height": "100%",
  7915. },
  7916. })
  7917. _box.appendChild(_loading)
  7918. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7919. switch (str) {
  7920. case "whiteboard":
  7921. aTool = 1;
  7922. _iframe = $$("iframe", {
  7923. "frameborder": "no",
  7924. "border": "0",
  7925. "scrolling ": "no",
  7926. "style": {
  7927. "cssText": "border:0;width:100%;height:100%"
  7928. },
  7929. "src": "https://beta.iwb.cocorobo.cn/"
  7930. })
  7931. _box.appendChild(_iframe);
  7932. _box.appendChild(_jie);
  7933. _formdiv = new U.UF.UI.form(
  7934. "电子白板",
  7935. _box, {
  7936. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7937. "style": {
  7938. "width": "90%",
  7939. "height": "90%",
  7940. "overflow": 'hidden'
  7941. },
  7942. "onresize": function () { }
  7943. }, {
  7944. closecallback: function () { }
  7945. }, {
  7946. "style": {
  7947. "height": "36px"
  7948. }
  7949. }).form; //创建窗体
  7950. _taskbar = {
  7951. "id": str + _formdiv.id,
  7952. "style": {
  7953. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7954. },
  7955. "name": "电子白板",
  7956. "forms": _formdiv,
  7957. "click": function () {
  7958. U.MD.D.I.openApplication(str, obj, info);
  7959. }
  7960. }
  7961. break;
  7962. case "mind":
  7963. aTool = 3;
  7964. _iframe = $$("iframe", {
  7965. "frameborder": "no",
  7966. "border": "0",
  7967. "scrolling ": "no",
  7968. "style": {
  7969. "cssText": "border:0;width:100%;height:100%"
  7970. },
  7971. "src": "/kityminder-editor/dist/index.html"
  7972. });
  7973. _box.appendChild(_iframe);
  7974. _box.appendChild(_jie);
  7975. _formdiv = new U.UF.UI.form(
  7976. "思维导图",
  7977. _box, { //"/jsmind/example/demo.html"
  7978. "id": "minds_Yu" + cid + stage + task + tool,
  7979. "style": {
  7980. "width": "90%",
  7981. "height": "90%",
  7982. "overflow": 'hidden'
  7983. },
  7984. "onresize": function () { }
  7985. }, {
  7986. closecallback: function () { }
  7987. }, {
  7988. "style": {
  7989. "height": "36px"
  7990. }
  7991. }).form; //创建窗体
  7992. _taskbar = {
  7993. "id": str + _formdiv.id,
  7994. "style": {
  7995. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7996. },
  7997. "name": "思维导图",
  7998. "forms": _formdiv,
  7999. "click": function () {
  8000. U.MD.D.I.openApplication(str, obj, info);
  8001. }
  8002. }
  8003. break;
  8004. case "doc":
  8005. aTool = 6;
  8006. _iframe = $$("iframe", {
  8007. "frameborder": "no",
  8008. "border": "0",
  8009. "scrolling ": "no",
  8010. "style": {
  8011. "cssText": "border:0;width:100%;height:100%"
  8012. },
  8013. "src": "/Office/Word/WordEditArea.htm"
  8014. })
  8015. _box.appendChild(_iframe);
  8016. _box.appendChild(_jie);
  8017. _formdiv = new U.UF.UI.form(
  8018. "协同文档",
  8019. _box, {
  8020. "id": "docs_Yu" + cid + stage + task + tool,
  8021. "style": {
  8022. "width": "90%",
  8023. "height": "90%",
  8024. "overflow": 'hidden'
  8025. },
  8026. "onresize": function () { }
  8027. }, {
  8028. closecallback: function () { }
  8029. }, {
  8030. "style": {
  8031. "height": "36px"
  8032. }
  8033. }).form; //创建窗体
  8034. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8035. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8036. })
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/doc.png)"
  8041. },
  8042. "name": "协同文档",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "CocoPi":
  8050. aTool = 57;
  8051. _iframe = $$("iframe", {
  8052. "allowpaymentrequest": "allowpaymentrequest",
  8053. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8054. "webkitallowfullscreen": "",
  8055. "mozallowfullscreen": "",
  8056. "frameborder": "no",
  8057. "border": "0",
  8058. "scrolling ": "no",
  8059. "style": {
  8060. "cssText": "border:0;width:100%;height:100%"
  8061. },
  8062. "src": "https://pi.cocorobo.cn/"
  8063. })
  8064. _box.appendChild(_iframe);
  8065. _box.appendChild(_jie);
  8066. _formdiv = new U.UF.UI.form(
  8067. "CocoPi",
  8068. _box, {
  8069. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8070. "style": {
  8071. "width": "90%",
  8072. "height": "90%",
  8073. "overflow": 'hidden'
  8074. },
  8075. "onresize": function () { }
  8076. }, {
  8077. closecallback: function () { }
  8078. }, {
  8079. "style": {
  8080. "height": "36px"
  8081. }
  8082. }).form; //创建窗体
  8083. _taskbar = {
  8084. "id": str + _formdiv.id,
  8085. "style": {
  8086. "backgroundImage": "url(/img/icon/cocopi.png)"
  8087. },
  8088. "name": "CocoPi",
  8089. "forms": _formdiv,
  8090. "click": function () {
  8091. U.MD.D.I.openApplication(str, obj, info);
  8092. }
  8093. }
  8094. break;
  8095. }
  8096. if (_iframe) {
  8097. if (str == 'doc') {
  8098. _iframe = _formdiv.querySelector('iframe')
  8099. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8100. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8101. })
  8102. if (onloadListener) {
  8103. _iframe.contentDocument.location.reload()
  8104. } else {
  8105. _iframe.contentDocument.location.reload()
  8106. }
  8107. } else if (str == 'mind') {
  8108. _iframe = _formdiv.querySelector('iframe')
  8109. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8110. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8111. })
  8112. if (onloadListener) {
  8113. _iframe.contentDocument.location.reload()
  8114. } else {
  8115. _iframe.contentDocument.location.reload()
  8116. }
  8117. } else if (str == 'whiteboard') {
  8118. _iframe = _formdiv.querySelector('iframe')
  8119. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8120. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8121. })
  8122. if (onloadListener) {
  8123. _iframe.contentDocument.location.reload()
  8124. } else {
  8125. _iframe.contentDocument.location.reload()
  8126. }
  8127. } else if (str == 'CocoPi') {
  8128. _iframe = _formdiv.querySelector('iframe')
  8129. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8130. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8131. })
  8132. if (onloadListener) {
  8133. _iframe.contentDocument.location.reload()
  8134. } else {
  8135. _iframe.contentDocument.location.reload()
  8136. }
  8137. } else {
  8138. _iframe.onload = () => { };
  8139. }
  8140. _jie.onclick = async () => {
  8141. let text = ''
  8142. let type = '2'
  8143. if (aTool == 1) {
  8144. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8145. type = '3'
  8146. } else if (aTool == 6) {
  8147. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8148. type = '1'
  8149. } else if (aTool == 3) {
  8150. text = await U.MD.D.I.getEditorContent(_iframe);
  8151. type = '2'
  8152. } else if (aTool == 57) {
  8153. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8154. type = '4'
  8155. }
  8156. _loading.style.display = 'flex'
  8157. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8158. }
  8159. }
  8160. //U.MD.D.I.openClick(str);
  8161. //如果有任务栏信息
  8162. // if (_taskbar) {
  8163. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8164. // }
  8165. }
  8166. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8167. var xmlhttp;
  8168. var Mac, Sn, DeviceId
  8169. if (window.XMLHttpRequest) {
  8170. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8171. xmlhttp = new XMLHttpRequest();
  8172. } else {
  8173. // IE6, IE5 浏览器执行代码
  8174. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8175. }
  8176. xmlhttp.onreadystatechange = function () {
  8177. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8178. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8179. // resolve(res.value[0][0].text);
  8180. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8181. }
  8182. }
  8183. }
  8184. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8185. xmlhttp.send();
  8186. }
  8187. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8188. var xmlhttp;
  8189. var Mac, Sn, DeviceId
  8190. if (window.XMLHttpRequest) {
  8191. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8192. xmlhttp = new XMLHttpRequest();
  8193. } else {
  8194. // IE6, IE5 浏览器执行代码
  8195. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8196. }
  8197. xmlhttp.onreadystatechange = function () {
  8198. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8199. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8200. // resolve(res.value[0][0].text);
  8201. if (type == '2') {
  8202. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8203. } else if (type == '3') {
  8204. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8205. } else if (type == '4') {
  8206. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8207. }
  8208. } else {
  8209. if (type == '2') {
  8210. iframe.contentWindow.editor.minder.importData('json', '')
  8211. } else if (type == '3') {
  8212. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8213. } else if (type == '4') {
  8214. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8215. }
  8216. }
  8217. }
  8218. }
  8219. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8220. xmlhttp.send();
  8221. }
  8222. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8223. var xmlhttp;
  8224. var Mac, Sn, DeviceId
  8225. if (window.XMLHttpRequest) {
  8226. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8227. xmlhttp = new XMLHttpRequest();
  8228. } else {
  8229. // IE6, IE5 浏览器执行代码
  8230. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8231. }
  8232. xmlhttp.onreadystatechange = function () {
  8233. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8234. if (xmlhttp.response) {
  8235. // resolve(res.value[0][0].text);
  8236. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8237. // $(fileInput).val('');
  8238. // });
  8239. span.innerHTML = '上传成功'
  8240. setTimeout(() => {
  8241. loading.style.display = 'none'
  8242. }, 1000);
  8243. }
  8244. }
  8245. }
  8246. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8247. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8248. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8249. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8250. // 设置请求头,表示请求体的编码格式
  8251. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8252. // 设置请求体,使用url-encoded格式的数据
  8253. }
  8254. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8255. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8256. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8257. _userinfo = US.userInfo, //登录用户信息
  8258. _userid = US.userInfo.userid //登录用户id
  8259. let _iframe;
  8260. let _cid = cid,
  8261. _stage = stage,
  8262. _task = task,
  8263. _tool = tool;
  8264. var _jie = $$("div", {
  8265. "style": {
  8266. "position": "absolute",
  8267. "bottom": "50px",
  8268. "right": "50px",
  8269. "zIndex": "9999",
  8270. "backgroundColor": "#2268bc",
  8271. "color": "#fff",
  8272. "padding": "12px 20px",
  8273. "cursor": "pointer",
  8274. "borderRadius": "4px",
  8275. },
  8276. "innerHTML": "提交作业"
  8277. })
  8278. let aTool = ''
  8279. let _loading = document.createElement('div')
  8280. _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;"
  8281. // _loading.id = "";
  8282. let _lchild = document.createElement('div')
  8283. let _limg = document.createElement('img')
  8284. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8285. _limg.style = "width: 26px;margin-right: 10px;"
  8286. _lchild.appendChild(_limg)
  8287. let _lspan = document.createElement('span')
  8288. _lspan.innerHTML = "上传中..."
  8289. _lchild.appendChild(_lspan)
  8290. _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%);"
  8291. _loading.appendChild(_lchild)
  8292. var _box = $$('div', {
  8293. "style": {
  8294. "position": "relative",
  8295. "width": "100%",
  8296. "height": "100%",
  8297. },
  8298. })
  8299. _box.appendChild(_loading)
  8300. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8301. switch (str) {
  8302. case "CocoPi":
  8303. aTool = 57;
  8304. _iframe = $$("iframe", {
  8305. "allowpaymentrequest": "allowpaymentrequest",
  8306. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8307. "webkitallowfullscreen": "",
  8308. "mozallowfullscreen": "",
  8309. "frameborder": "no",
  8310. "border": "0",
  8311. "scrolling ": "no",
  8312. "style": {
  8313. "cssText": "border:0;width:100%;height:100%"
  8314. },
  8315. "src": "https://pi.cocorobo.cn/"
  8316. })
  8317. _box.appendChild(_iframe);
  8318. _box.appendChild(_jie);
  8319. _formdiv = new U.UF.UI.form(
  8320. "CocoPi",
  8321. _box, {
  8322. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8323. "style": {
  8324. "width": "90%",
  8325. "height": "90%",
  8326. "overflow": 'hidden'
  8327. },
  8328. "onresize": function () { }
  8329. }, {
  8330. closecallback: function () { }
  8331. }, {
  8332. "style": {
  8333. "height": "36px"
  8334. }
  8335. }).form; //创建窗体
  8336. _taskbar = {
  8337. "id": str + _formdiv.id,
  8338. "style": {
  8339. "backgroundImage": "url(/img/icon/cocopi.png)"
  8340. },
  8341. "name": "CocoPi",
  8342. "forms": _formdiv,
  8343. "click": function () {
  8344. U.MD.D.I.openApplication(str, obj, info);
  8345. }
  8346. }
  8347. break;
  8348. }
  8349. if (_iframe) {
  8350. if (str == 'CocoPi') {
  8351. _iframe = _formdiv.querySelector('iframe')
  8352. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8353. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8354. })
  8355. if (onloadListener) {
  8356. _iframe.contentDocument.location.reload()
  8357. } else {
  8358. _iframe.contentDocument.location.reload()
  8359. }
  8360. }
  8361. _jie.onclick = async () => {
  8362. let text = ''
  8363. if (aTool == 57) {
  8364. text = _iframe.contentWindow.getLoadXmlStr()
  8365. }
  8366. _loading.style.display = 'flex'
  8367. console.log(_loading);
  8368. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8369. _loading.style.display = 'none'
  8370. let _div = document.createElement('div')
  8371. _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;"
  8372. let _inner = document.createElement('div')
  8373. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8374. _inner.innerHTML = "上传成功"
  8375. _div.appendChild(_inner)
  8376. _iframe.contentWindow.window.document.body.appendChild(_div)
  8377. _div.onclick = () => {
  8378. _iframe.contentWindow.window.document.body.removeChild(_div)
  8379. }
  8380. setTimeout(() => {
  8381. _iframe.contentWindow.window.document.body.removeChild(_div)
  8382. }, 1000);
  8383. }, [], { "type": "POST", "withCredentials": true });
  8384. }
  8385. }
  8386. }
  8387. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8388. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8389. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8390. _userid = student.userid, //登录用户id
  8391. _username = student.student //用户名字
  8392. let _iframe;
  8393. let _cid = cid,
  8394. _stage = stage,
  8395. _task = task,
  8396. _tool = tool;
  8397. var _jie = $$("div", {
  8398. "style": {
  8399. "position": "absolute",
  8400. "bottom": "50px",
  8401. "right": "50px",
  8402. "zIndex": "9999",
  8403. "backgroundColor": "#2268bc",
  8404. "color": "#fff",
  8405. "padding": "12px 20px",
  8406. "cursor": "pointer",
  8407. "borderRadius": "4px",
  8408. },
  8409. "innerHTML": "提交作业"
  8410. })
  8411. let aTool = ''
  8412. let _loading = document.createElement('div')
  8413. _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;"
  8414. // _loading.id = "";
  8415. let _lchild = document.createElement('div')
  8416. let _limg = document.createElement('img')
  8417. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8418. _limg.style = "width: 26px;margin-right: 10px;"
  8419. _lchild.appendChild(_limg)
  8420. let _lspan = document.createElement('span')
  8421. _lspan.innerHTML = "上传中..."
  8422. _lchild.appendChild(_lspan)
  8423. _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%);"
  8424. _loading.appendChild(_lchild)
  8425. var _box = $$('div', {
  8426. "style": {
  8427. "position": "relative",
  8428. "width": "100%",
  8429. "height": "100%",
  8430. },
  8431. })
  8432. _box.appendChild(_loading)
  8433. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8434. switch (str) {
  8435. case "CocoPi":
  8436. aTool = 57;
  8437. _iframe = $$("iframe", {
  8438. "allowpaymentrequest": "allowpaymentrequest",
  8439. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8440. "webkitallowfullscreen": "",
  8441. "mozallowfullscreen": "",
  8442. "frameborder": "no",
  8443. "border": "0",
  8444. "scrolling ": "no",
  8445. "style": {
  8446. "cssText": "border:0;width:100%;height:100%"
  8447. },
  8448. "src": "https://pi.cocorobo.cn/"
  8449. })
  8450. _box.appendChild(_iframe);
  8451. _box.appendChild(_jie);
  8452. _formdiv = new U.UF.UI.form(
  8453. "CocoPi-" + _username,
  8454. _box, {
  8455. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8456. "style": {
  8457. "width": "90%",
  8458. "height": "90%",
  8459. "overflow": 'hidden'
  8460. },
  8461. "onresize": function () { }
  8462. }, {
  8463. closecallback: function () { }
  8464. }, {
  8465. "style": {
  8466. "height": "36px"
  8467. }
  8468. }).form; //创建窗体
  8469. _taskbar = {
  8470. "id": str + _formdiv.id,
  8471. "style": {
  8472. "backgroundImage": "url(/img/icon/cocopi.png)"
  8473. },
  8474. "name": "CocoPi",
  8475. "forms": _formdiv,
  8476. "click": function () {
  8477. U.MD.D.I.openApplication(str, obj, info);
  8478. }
  8479. }
  8480. break;
  8481. }
  8482. if (_iframe) {
  8483. if (str == 'CocoPi') {
  8484. _iframe = _formdiv.querySelector('iframe')
  8485. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8486. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8487. })
  8488. if (onloadListener) {
  8489. _iframe.contentDocument.location.reload()
  8490. } else {
  8491. _iframe.contentDocument.location.reload()
  8492. }
  8493. }
  8494. _jie.onclick = async () => {
  8495. let text = ''
  8496. if (aTool == 57) {
  8497. text = _iframe.contentWindow.getLoadXmlStr()
  8498. }
  8499. _loading.style.display = 'flex'
  8500. console.log(_loading);
  8501. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8502. _loading.style.display = 'none'
  8503. let _div = document.createElement('div')
  8504. _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;"
  8505. let _inner = document.createElement('div')
  8506. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8507. _inner.innerHTML = "上传成功"
  8508. _div.appendChild(_inner)
  8509. _iframe.contentWindow.window.document.body.appendChild(_div)
  8510. _div.onclick = () => {
  8511. _iframe.contentWindow.window.document.body.removeChild(_div)
  8512. }
  8513. setTimeout(() => {
  8514. _iframe.contentWindow.window.document.body.removeChild(_div)
  8515. }, 1000);
  8516. }, [], { "type": "POST", "withCredentials": true });
  8517. }
  8518. }
  8519. }
  8520. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8521. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8522. if (res.value[0].length > 0) {
  8523. if (atool == 57) {
  8524. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8525. }
  8526. } else {
  8527. if (atool == 57) {
  8528. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8529. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8530. }
  8531. }
  8532. }, [], { "type": "POST", "withCredentials": true });
  8533. }