DeskTop.js 554 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117
  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. //scnuai
  1233. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1234. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1235. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1239. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1240. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1241. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1242. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1243. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1246. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1247. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1249. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1250. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1251. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1252. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1253. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1254. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1255. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1256. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1257. ];
  1258. //scnuai
  1259. U.MD.D.I.scnuaiAdminDeskIcon = [
  1260. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1261. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1262. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1263. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1264. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1267. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1268. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1269. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1270. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1271. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1272. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1275. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1276. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1277. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1278. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1279. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1280. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1281. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1282. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1283. ];
  1284. //scnuai
  1285. U.MD.D.I.scnuaiStudentDeskIcon = [
  1286. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1287. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1288. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1289. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1290. ];
  1291. //#region 桌面初始化a
  1292. /**
  1293. * 初始化桌面的起始函数
  1294. *
  1295. */
  1296. U.MD.D.I.init = function () {
  1297. if ($("#U_MD_D_K")[0]) {
  1298. //初始化桌面图标
  1299. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1300. // var clickUrl = ':12588/requestIp.php';
  1301. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1302. // U.MD.D.I.Ip = data;
  1303. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1304. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1305. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1306. // })
  1307. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1308. // })
  1309. }
  1310. }
  1311. /**
  1312. * 模式切换
  1313. *
  1314. */
  1315. U.MD.D.I.ModeCheck = function (type) {
  1316. if (US.Config.type == type) {
  1317. return
  1318. }
  1319. US.Config.type = type
  1320. $('.U_PBL_Check .active')[0].className = ''
  1321. if (type == 1) {
  1322. $('.U_PBL_Check div')[0].className = 'active'
  1323. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1324. } else {
  1325. $('.U_PBL_Check div')[1].className = 'active'
  1326. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1327. }
  1328. //初始化桌面图标
  1329. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1330. if (type == 2) {
  1331. U.MD.D.I.openApplication("project")
  1332. }
  1333. }
  1334. /**
  1335. * 隐藏任务栏
  1336. *
  1337. * @param {element} 桌面元素
  1338. */
  1339. U.MD.D.I.hiddenTaskbar = function (el) {
  1340. //任务栏位置变小
  1341. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1342. //桌面的位置变大
  1343. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1344. }
  1345. /**
  1346. * 隐藏任务栏
  1347. *
  1348. * @param {element} 桌面元素
  1349. */
  1350. U.MD.D.I.hiddenTaskbarout = function (el) {
  1351. //任务栏位置变小
  1352. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1353. //任务栏位置变化
  1354. U.selectEl(el).css({ "bottom": "-60px" });
  1355. //桌面的位置变大
  1356. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1357. }
  1358. }
  1359. /**
  1360. * 初始化打印桌面图标
  1361. *
  1362. * @param {element} 桌面元素
  1363. */
  1364. U.MD.D.I.initDesktopIcons = function (el, type) {
  1365. var i, //用于循环
  1366. _content, //桌面图标元素
  1367. _iconcontent, //桌面图标元素
  1368. _frag = $$("frag"), //定义一个碎片元素
  1369. _type = US.userInfo.type,
  1370. _org = US.userInfo.org,
  1371. _oid = US.userInfo.organizeid,
  1372. _role = US.userInfo.role,
  1373. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1374. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1375. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1376. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1377. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1378. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1379. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1380. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1381. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1382. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1383. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1384. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1385. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1386. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1387. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1388. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1389. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1390. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1391. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1392. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1393. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1394. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1395. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1396. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1397. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1398. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1399. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1400. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1401. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1402. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1403. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1404. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1405. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1406. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1407. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1408. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1409. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1410. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1411. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1412. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1413. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1414. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1415. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1416. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1417. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1418. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1419. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1420. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1421. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1422. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1423. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1424. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1425. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1426. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1427. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1428. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1429. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1430. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1431. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1432. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1433. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1434. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1435. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1436. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1437. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1438. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1439. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1440. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1441. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1442. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1443. 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'];
  1444. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9'];
  1445. //清楚桌面图标
  1446. el.innerHTML = "";
  1447. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1448. _teacherDesktopIconInfo.push(
  1449. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1450. { "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)" } },
  1451. )
  1452. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1453. }
  1454. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1455. _teacherDesktopIconInfo.push(
  1456. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1457. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1458. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1459. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1460. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1461. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1462. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1463. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1464. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1467. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1468. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1469. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1471. )
  1472. }
  1473. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1474. _teacherDesktopIconInfo.push(
  1475. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1476. )
  1477. }
  1478. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1479. // _teacherDesktopIconInfo.push(
  1480. // )
  1481. // }
  1482. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1483. _teacherDesktopIconInfo.push(
  1484. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1485. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1486. )
  1487. }
  1488. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1489. _teacherDesktopIconInfo.push(
  1490. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1493. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1494. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1495. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1496. )
  1497. _studentDesktopIconInfo.push(
  1498. )
  1499. }
  1500. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1501. _teacherDesktopIconInfo.push(
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. )
  1504. _studentDesktopIconInfo.push(
  1505. )
  1506. }
  1507. //麒麟二中 和 民新小学
  1508. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1509. _teacherDesktopIconInfo.push(
  1510. )
  1511. }
  1512. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1513. _teacherDesktopIconInfo.push(
  1514. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1515. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1516. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1517. )
  1518. }
  1519. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1520. _teacherDesktopIconInfo.push(
  1521. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1522. )
  1523. }
  1524. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1525. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1526. _teacherDesktopIconInfo.push(
  1527. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1528. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1529. )
  1530. }
  1531. //麒麟二中
  1532. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1533. _studentDesktopIconInfo.push(
  1534. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1535. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1536. )
  1537. }
  1538. //万科双语
  1539. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1540. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1541. if (el.Name == '项目管理') {
  1542. el.Name = 'PBL项目'
  1543. }
  1544. return el
  1545. })
  1546. _studentDesktopIconInfo3.push(
  1547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. )
  1549. }
  1550. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1551. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1552. return el.Name != '魔盒识字' && el.Name != '24点'
  1553. })
  1554. }
  1555. 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) {
  1556. _studentDesktopIconInfo.push(
  1557. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1558. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1559. )
  1560. }
  1561. //循环创建桌面图标
  1562. if (type == 1) {
  1563. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1564. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1565. _content = $$("div", {
  1566. className: "U_MD_D_KO",
  1567. "onmousedown": U.UF.C.closure(function (obj) {
  1568. //防止拖动图标即打开了桌面应用
  1569. U.MD.D.click(this, obj);
  1570. }, [_studentDesktopIconInfo[i]]),
  1571. "onclick": U.UF.C.closure(function (obj) {
  1572. //防止拖动图标即打开了桌面应用
  1573. U.MD.D.click(this, obj);
  1574. }, [_studentDesktopIconInfo[i]])
  1575. }, _frag); //
  1576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1579. }
  1580. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1581. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1582. _content = $$("div", {
  1583. className: "U_MD_D_KO",
  1584. "onmousedown": U.UF.C.closure(function (obj) {
  1585. //防止拖动图标即打开了桌面应用
  1586. U.MD.D.click(this, obj);
  1587. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1588. "onclick": U.UF.C.closure(function (obj) {
  1589. //防止拖动图标即打开了桌面应用
  1590. U.MD.D.click(this, obj);
  1591. }, [_hkZJLSStudentDeskIconInfo[i]])
  1592. }, _frag); //
  1593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1596. } //
  1597. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1598. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1599. _content = $$("div", {
  1600. className: "U_MD_D_KO",
  1601. "onmousedown": U.UF.C.closure(function (obj) {
  1602. //防止拖动图标即打开了桌面应用
  1603. U.MD.D.click(this, obj);
  1604. }, [_ytyStudentDeskIconInfo[i]]),
  1605. "onclick": U.UF.C.closure(function (obj) {
  1606. //防止拖动图标即打开了桌面应用
  1607. U.MD.D.click(this, obj);
  1608. }, [_ytyStudentDeskIconInfo[i]])
  1609. }, _frag); //
  1610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1613. } //
  1614. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1615. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1616. _content = $$("div", {
  1617. className: "U_MD_D_KO",
  1618. "onmousedown": U.UF.C.closure(function (obj) {
  1619. //防止拖动图标即打开了桌面应用
  1620. U.MD.D.click(this, obj);
  1621. }, [_jccssylStudentDeskIconInfo[i]]),
  1622. "onclick": U.UF.C.closure(function (obj) {
  1623. //防止拖动图标即打开了桌面应用
  1624. U.MD.D.click(this, obj);
  1625. }, [_jccssylStudentDeskIconInfo[i]])
  1626. }, _frag); //
  1627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1630. }
  1631. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1632. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1633. _content = $$("div", {
  1634. className: "U_MD_D_KO",
  1635. "onmousedown": U.UF.C.closure(function (obj) {
  1636. //防止拖动图标即打开了桌面应用
  1637. U.MD.D.click(this, obj);
  1638. }, [_scnuaiStudentDeskIconInfo[i]]),
  1639. "onclick": U.UF.C.closure(function (obj) {
  1640. //防止拖动图标即打开了桌面应用
  1641. U.MD.D.click(this, obj);
  1642. }, [_scnuaiStudentDeskIconInfo[i]])
  1643. }, _frag); //
  1644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1647. }
  1648. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1649. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1650. _content = $$("div", {
  1651. className: "U_MD_D_KO",
  1652. "onmousedown": U.UF.C.closure(function (obj) {
  1653. //防止拖动图标即打开了桌面应用
  1654. U.MD.D.click(this, obj);
  1655. }, [_caleStudentDeskIconInfo[i]]),
  1656. "onclick": U.UF.C.closure(function (obj) {
  1657. //防止拖动图标即打开了桌面应用
  1658. U.MD.D.click(this, obj);
  1659. }, [_caleStudentDeskIconInfo[i]])
  1660. }, _frag); //
  1661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1664. }
  1665. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1666. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1667. _content = $$("div", {
  1668. className: "U_MD_D_KO",
  1669. "onmousedown": U.UF.C.closure(function (obj) {
  1670. //防止拖动图标即打开了桌面应用
  1671. U.MD.D.click(this, obj);
  1672. }, [_thuioeStudentDeskIconInfo[i]]),
  1673. "onclick": U.UF.C.closure(function (obj) {
  1674. //防止拖动图标即打开了桌面应用
  1675. U.MD.D.click(this, obj);
  1676. }, [_thuioeStudentDeskIconInfo[i]])
  1677. }, _frag); //
  1678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1681. }
  1682. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1683. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1684. _content = $$("div", {
  1685. className: "U_MD_D_KO",
  1686. "onmousedown": U.UF.C.closure(function (obj) {
  1687. //防止拖动图标即打开了桌面应用
  1688. U.MD.D.click(this, obj);
  1689. }, [_tpcStudentDeskIconInfo[i]]),
  1690. "onclick": U.UF.C.closure(function (obj) {
  1691. //防止拖动图标即打开了桌面应用
  1692. U.MD.D.click(this, obj);
  1693. }, [_tpcStudentDeskIconInfo[i]])
  1694. }, _frag); //
  1695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1698. } //
  1699. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1700. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1701. _content = $$("div", {
  1702. className: "U_MD_D_KO",
  1703. "onmousedown": U.UF.C.closure(function (obj) {
  1704. //防止拖动图标即打开了桌面应用
  1705. U.MD.D.click(this, obj);
  1706. }, [_chjyjStudentDeskIconInfo[i]]),
  1707. "onclick": U.UF.C.closure(function (obj) {
  1708. //防止拖动图标即打开了桌面应用
  1709. U.MD.D.click(this, obj);
  1710. }, [_chjyjStudentDeskIconInfo[i]])
  1711. }, _frag); //
  1712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1715. }
  1716. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1717. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1718. _content = $$("div", {
  1719. className: "U_MD_D_KO",
  1720. "onmousedown": U.UF.C.closure(function (obj) {
  1721. //防止拖动图标即打开了桌面应用
  1722. U.MD.D.click(this, obj);
  1723. }, [_szjkyStudentDeskIconInfo[i]]),
  1724. "onclick": U.UF.C.closure(function (obj) {
  1725. //防止拖动图标即打开了桌面应用
  1726. U.MD.D.click(this, obj);
  1727. }, [_szjkyStudentDeskIconInfo[i]])
  1728. }, _frag); //
  1729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1732. }
  1733. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1734. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1735. _content = $$("div", {
  1736. className: "U_MD_D_KO",
  1737. "onmousedown": U.UF.C.closure(function (obj) {
  1738. //防止拖动图标即打开了桌面应用
  1739. U.MD.D.click(this, obj);
  1740. }, [_dseiStudentDeskIconInfo[i]]),
  1741. "onclick": U.UF.C.closure(function (obj) {
  1742. //防止拖动图标即打开了桌面应用
  1743. U.MD.D.click(this, obj);
  1744. }, [_dseiStudentDeskIconInfo[i]])
  1745. }, _frag); //
  1746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1749. }
  1750. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1751. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1752. _content = $$("div", {
  1753. className: "U_MD_D_KO",
  1754. "onmousedown": U.UF.C.closure(function (obj) {
  1755. //防止拖动图标即打开了桌面应用
  1756. U.MD.D.click(this, obj);
  1757. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1758. "onclick": U.UF.C.closure(function (obj) {
  1759. //防止拖动图标即打开了桌面应用
  1760. U.MD.D.click(this, obj);
  1761. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1762. }, _frag); //
  1763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1766. }
  1767. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1768. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1769. _content = $$("div", {
  1770. className: "U_MD_D_KO",
  1771. "onmousedown": U.UF.C.closure(function (obj) {
  1772. //防止拖动图标即打开了桌面应用
  1773. U.MD.D.click(this, obj);
  1774. }, [_siesStudentDeskIconInfo[i]]),
  1775. "onclick": U.UF.C.closure(function (obj) {
  1776. //防止拖动图标即打开了桌面应用
  1777. U.MD.D.click(this, obj);
  1778. }, [_siesStudentDeskIconInfo[i]])
  1779. }, _frag); //
  1780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1783. }
  1784. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1785. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1786. _content = $$("div", {
  1787. className: "U_MD_D_KO",
  1788. "onmousedown": U.UF.C.closure(function (obj) {
  1789. //防止拖动图标即打开了桌面应用
  1790. U.MD.D.click(this, obj);
  1791. }, [_hkStudentDeskIconInfo[i]]),
  1792. "onclick": U.UF.C.closure(function (obj) {
  1793. //防止拖动图标即打开了桌面应用
  1794. U.MD.D.click(this, obj);
  1795. }, [_hkStudentDeskIconInfo[i]])
  1796. }, _frag); //
  1797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1800. }
  1801. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1802. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1803. _content = $$("div", {
  1804. className: "U_MD_D_KO",
  1805. "onmousedown": U.UF.C.closure(function (obj) {
  1806. //防止拖动图标即打开了桌面应用
  1807. U.MD.D.click(this, obj);
  1808. }, [_hkaceStudentDeskIconInfo[i]]),
  1809. "onclick": U.UF.C.closure(function (obj) {
  1810. //防止拖动图标即打开了桌面应用
  1811. U.MD.D.click(this, obj);
  1812. }, [_hkaceStudentDeskIconInfo[i]])
  1813. }, _frag); //
  1814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1817. }
  1818. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1819. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1820. _content = $$("div", {
  1821. className: "U_MD_D_KO",
  1822. "onmousedown": U.UF.C.closure(function (obj) {
  1823. //防止拖动图标即打开了桌面应用
  1824. U.MD.D.click(this, obj);
  1825. }, [_studentDesktopIconInfo[i]]),
  1826. "onclick": U.UF.C.closure(function (obj) {
  1827. //防止拖动图标即打开了桌面应用
  1828. U.MD.D.click(this, obj);
  1829. }, [_studentDesktopIconInfo[i]])
  1830. }, _frag); //
  1831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1834. }
  1835. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1836. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1837. _content = $$("div", {
  1838. className: "U_MD_D_KO",
  1839. "onmousedown": U.UF.C.closure(function (obj) {
  1840. //防止拖动图标即打开了桌面应用
  1841. U.MD.D.click(this, obj);
  1842. }, [_tcStudentDeskIconInfo[i]]),
  1843. "onclick": U.UF.C.closure(function (obj) {
  1844. //防止拖动图标即打开了桌面应用
  1845. U.MD.D.click(this, obj);
  1846. }, [_tcStudentDeskIconInfo[i]])
  1847. }, _frag); //
  1848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1851. }
  1852. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1853. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1854. _content = $$("div", {
  1855. className: "U_MD_D_KO",
  1856. "onmousedown": U.UF.C.closure(function (obj) {
  1857. //防止拖动图标即打开了桌面应用
  1858. U.MD.D.click(this, obj);
  1859. }, [_szscStudentDeskIconInfo[i]]),
  1860. "onclick": U.UF.C.closure(function (obj) {
  1861. //防止拖动图标即打开了桌面应用
  1862. U.MD.D.click(this, obj);
  1863. }, [_szscStudentDeskIconInfo[i]])
  1864. }, _frag); //
  1865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1868. }
  1869. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1870. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1871. _content = $$("div", {
  1872. className: "U_MD_D_KO",
  1873. "onmousedown": U.UF.C.closure(function (obj) {
  1874. //防止拖动图标即打开了桌面应用
  1875. U.MD.D.click(this, obj);
  1876. }, [_studentDesktopIconInfo3[i]]),
  1877. "onclick": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_studentDesktopIconInfo3[i]])
  1881. }, _frag); //
  1882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1885. }
  1886. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1887. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1888. _content = $$("div", {
  1889. className: "U_MD_D_KO",
  1890. "onmousedown": U.UF.C.closure(function (obj) {
  1891. //防止拖动图标即打开了桌面应用
  1892. U.MD.D.click(this, obj);
  1893. }, [_studentDesktopIconInfo2[i]]),
  1894. "onclick": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_studentDesktopIconInfo2[i]])
  1898. }, _frag); //
  1899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1902. }
  1903. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1904. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1905. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  1906. continue
  1907. }
  1908. _content = $$("div", {
  1909. className: "U_MD_D_KO",
  1910. "onmousedown": U.UF.C.closure(function (obj) {
  1911. //防止拖动图标即打开了桌面应用
  1912. U.MD.D.click(this, obj);
  1913. }, [_wanketeacherDesktopIconInfo[i]]),
  1914. "onclick": U.UF.C.closure(function (obj) {
  1915. //防止拖动图标即打开了桌面应用
  1916. U.MD.D.click(this, obj);
  1917. }, [_wanketeacherDesktopIconInfo[i]])
  1918. }, _frag); //
  1919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1922. }
  1923. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1924. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1925. _content = $$("div", {
  1926. className: "U_MD_D_KO",
  1927. "onmousedown": U.UF.C.closure(function (obj) {
  1928. //防止拖动图标即打开了桌面应用
  1929. U.MD.D.click(this, obj);
  1930. }, [_wankeAdminDesktopIconInfo[i]]),
  1931. "onclick": U.UF.C.closure(function (obj) {
  1932. //防止拖动图标即打开了桌面应用
  1933. U.MD.D.click(this, obj);
  1934. }, [_wankeAdminDesktopIconInfo[i]])
  1935. }, _frag); //
  1936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1939. }
  1940. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  1941. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  1942. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1943. continue
  1944. }
  1945. _content = $$("div", {
  1946. className: "U_MD_D_KO",
  1947. "onmousedown": U.UF.C.closure(function (obj) {
  1948. //防止拖动图标即打开了桌面应用
  1949. U.MD.D.click(this, obj);
  1950. }, [_scnuaiTeacherDeskIconInfo[i]]),
  1951. "onclick": U.UF.C.closure(function (obj) {
  1952. //防止拖动图标即打开了桌面应用
  1953. U.MD.D.click(this, obj);
  1954. }, [_scnuaiTeacherDeskIconInfo[i]])
  1955. }, _frag); //
  1956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  1958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  1959. }
  1960. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  1961. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  1962. _content = $$("div", {
  1963. className: "U_MD_D_KO",
  1964. "onmousedown": U.UF.C.closure(function (obj) {
  1965. //防止拖动图标即打开了桌面应用
  1966. U.MD.D.click(this, obj);
  1967. }, [_scnuaiAdminDeskIconInfo[i]]),
  1968. "onclick": U.UF.C.closure(function (obj) {
  1969. //防止拖动图标即打开了桌面应用
  1970. U.MD.D.click(this, obj);
  1971. }, [_scnuaiAdminDeskIconInfo[i]])
  1972. }, _frag); //
  1973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  1975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  1976. }
  1977. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1978. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1979. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  1980. continue
  1981. }
  1982. _content = $$("div", {
  1983. className: "U_MD_D_KO",
  1984. "onmousedown": U.UF.C.closure(function (obj) {
  1985. //防止拖动图标即打开了桌面应用
  1986. U.MD.D.click(this, obj);
  1987. }, [_jccssylTeacherDeskIconInfo[i]]),
  1988. "onclick": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_jccssylTeacherDeskIconInfo[i]])
  1992. }, _frag); //
  1993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1996. }
  1997. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1998. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1999. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2000. continue
  2001. }
  2002. _content = $$("div", {
  2003. className: "U_MD_D_KO",
  2004. "onmousedown": U.UF.C.closure(function (obj) {
  2005. //防止拖动图标即打开了桌面应用
  2006. U.MD.D.click(this, obj);
  2007. }, [_caleTeacherDeskIconInfo[i]]),
  2008. "onclick": U.UF.C.closure(function (obj) {
  2009. //防止拖动图标即打开了桌面应用
  2010. U.MD.D.click(this, obj);
  2011. }, [_caleTeacherDeskIconInfo[i]])
  2012. }, _frag); //
  2013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2016. }
  2017. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2018. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2019. _content = $$("div", {
  2020. className: "U_MD_D_KO",
  2021. "onmousedown": U.UF.C.closure(function (obj) {
  2022. //防止拖动图标即打开了桌面应用
  2023. U.MD.D.click(this, obj);
  2024. }, [_tpcOrganizerDeskIconInfo[i]]),
  2025. "onclick": U.UF.C.closure(function (obj) {
  2026. //防止拖动图标即打开了桌面应用
  2027. U.MD.D.click(this, obj);
  2028. }, [_tpcOrganizerDeskIconInfo[i]])
  2029. }, _frag); //
  2030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2033. }
  2034. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2035. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2036. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2037. continue
  2038. }
  2039. _content = $$("div", {
  2040. className: "U_MD_D_KO",
  2041. "onmousedown": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_tpcTeacherDeskIconInfo[i]]),
  2045. "onclick": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_tpcTeacherDeskIconInfo[i]])
  2049. }, _frag); //
  2050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2053. }
  2054. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2055. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2056. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2057. continue
  2058. }
  2059. _content = $$("div", {
  2060. className: "U_MD_D_KO",
  2061. "onmousedown": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_teacherDesktopIconInfo2[i]]),
  2065. "onclick": U.UF.C.closure(function (obj) {
  2066. //防止拖动图标即打开了桌面应用
  2067. U.MD.D.click(this, obj);
  2068. }, [_teacherDesktopIconInfo2[i]])
  2069. }, _frag); //
  2070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2073. }
  2074. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2075. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2076. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2077. continue
  2078. }
  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. }, [_thuioeTeacherDeskIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_thuioeTeacherDeskIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2095. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2096. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2097. continue
  2098. }
  2099. _content = $$("div", {
  2100. className: "U_MD_D_KO",
  2101. "onmousedown": U.UF.C.closure(function (obj) {
  2102. //防止拖动图标即打开了桌面应用
  2103. U.MD.D.click(this, obj);
  2104. }, [_lotechTeacherDeskIconInfo[i]]),
  2105. "onclick": U.UF.C.closure(function (obj) {
  2106. //防止拖动图标即打开了桌面应用
  2107. U.MD.D.click(this, obj);
  2108. }, [_lotechTeacherDeskIconInfo[i]])
  2109. }, _frag); //
  2110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2113. }//
  2114. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2115. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2116. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2117. continue
  2118. }
  2119. _content = $$("div", {
  2120. className: "U_MD_D_KO",
  2121. "onmousedown": U.UF.C.closure(function (obj) {
  2122. //防止拖动图标即打开了桌面应用
  2123. U.MD.D.click(this, obj);
  2124. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2125. "onclick": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2129. }, _frag); //
  2130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2133. }
  2134. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2135. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2136. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2137. continue
  2138. }
  2139. _content = $$("div", {
  2140. className: "U_MD_D_KO",
  2141. "onmousedown": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_siesTeacherDeskIconInfo[i]]),
  2145. "onclick": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_siesTeacherDeskIconInfo[i]])
  2149. }, _frag); //
  2150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2153. }
  2154. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2155. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2156. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2157. continue
  2158. }
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_longhuaTeacherDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_longhuaTeacherDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2173. }
  2174. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2175. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2176. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2177. continue
  2178. }
  2179. _content = $$("div", {
  2180. className: "U_MD_D_KO",
  2181. "onmousedown": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_ytyTeacherDeskIconInfo[i]]),
  2185. "onclick": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_ytyTeacherDeskIconInfo[i]])
  2189. }, _frag); //
  2190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2193. }
  2194. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2195. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2196. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2197. continue
  2198. }
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_yunhaiTeacherDeskIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2213. } //_hkStudentDeskIconInfo
  2214. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2215. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2216. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2217. continue
  2218. }
  2219. _content = $$("div", {
  2220. className: "U_MD_D_KO",
  2221. "onmousedown": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2225. "onclick": U.UF.C.closure(function (obj) {
  2226. //防止拖动图标即打开了桌面应用
  2227. U.MD.D.click(this, obj);
  2228. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2229. }, _frag); //
  2230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2233. }
  2234. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2235. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2236. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2237. continue
  2238. }
  2239. _content = $$("div", {
  2240. className: "U_MD_D_KO",
  2241. "onmousedown": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_hkTeacherDeskIconInfo[i]]),
  2245. "onclick": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_hkTeacherDeskIconInfo[i]])
  2249. }, _frag); //
  2250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2253. }
  2254. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2255. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2256. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2257. continue
  2258. }
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_hkaceTeacherDeskIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_hkaceTeacherDeskIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2275. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_gdjgAdminDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_gdjgAdminDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2292. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2293. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2294. continue
  2295. }
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_gdjgTeacherDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_gdjgTeacherDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2312. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2313. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2314. continue
  2315. }
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_szherTeacherDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_szherTeacherDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2330. }
  2331. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2332. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2333. _content = $$("div", {
  2334. className: "U_MD_D_KO",
  2335. "onmousedown": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_heyuannAdminDeskIconInfo[i]]),
  2339. "onclick": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_heyuannAdminDeskIconInfo[i]])
  2343. }, _frag); //
  2344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2347. }
  2348. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2349. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2350. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2351. continue
  2352. }
  2353. _content = $$("div", {
  2354. className: "U_MD_D_KO",
  2355. "onmousedown": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_heyuanTeacherDeskIconInfo[i]]),
  2359. "onclick": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_heyuanTeacherDeskIconInfo[i]])
  2363. }, _frag); //
  2364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2367. } //
  2368. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2369. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2370. _content = $$("div", {
  2371. className: "U_MD_D_KO",
  2372. "onmousedown": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_dseiAdminDeskIconInfo[i]]),
  2376. "onclick": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_dseiAdminDeskIconInfo[i]])
  2380. }, _frag); //
  2381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2384. }
  2385. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2386. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2387. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2388. continue
  2389. }
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_dseiTeacherDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_dseiTeacherDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2404. } //
  2405. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2406. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_chjyjAdminDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_chjyjAdminDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2421. }//
  2422. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2423. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2424. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2425. continue
  2426. }
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_chjyjTeacherDeskIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_chjyjTeacherDeskIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2443. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2444. _content = $$("div", {
  2445. className: "U_MD_D_KO",
  2446. "onmousedown": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_szjkyAdminDeskIconInfo[i]]),
  2450. "onclick": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_szjkyAdminDeskIconInfo[i]])
  2454. }, _frag); //
  2455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2458. }//
  2459. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2460. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2461. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2462. continue
  2463. }
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_szjkyTeacherDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_szjkyTeacherDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2480. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_futianAdminDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_futianAdminDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2497. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2498. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2499. continue
  2500. }
  2501. _content = $$("div", {
  2502. className: "U_MD_D_KO",
  2503. "onmousedown": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_futianTeacherDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_futianTeacherDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2517. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2518. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2519. continue
  2520. }
  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. }, [_MingdeTeacherDeskIcon[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_MingdeTeacherDeskIcon[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2535. }
  2536. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2537. for (i = 0; i < _lhsAdminDesktopIconInfo.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. }, [_lhsAdminDesktopIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_lhsAdminDesktopIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2554. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2555. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2556. continue
  2557. }
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_lhsteacherDesktopIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_lhsteacherDesktopIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2574. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2575. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2576. continue
  2577. }
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_zhoujiateacherDesktopIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2594. for (i = 0; i < _hanDeskIcon.length; i++) {
  2595. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2596. continue
  2597. }
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_hanDeskIcon[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_hanDeskIcon[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2612. }
  2613. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2614. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2615. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2616. continue
  2617. }
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_orgStemDeskIcon[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_orgStemDeskIcon[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2632. }
  2633. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2634. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2635. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2636. continue
  2637. }
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_szulsDeskIcon[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_szulsDeskIcon[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2652. }
  2653. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2654. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2655. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2656. continue
  2657. }
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_orgDesktopIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_orgDesktopIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2674. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2675. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2676. continue
  2677. }
  2678. _content = $$("div", {
  2679. className: "U_MD_D_KO",
  2680. "onmousedown": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_schoolDesktopIconInfo[i]]),
  2684. "onclick": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_schoolDesktopIconInfo[i]])
  2688. }, _frag); //
  2689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2692. }
  2693. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2694. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2695. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2696. continue
  2697. }
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_GMteacherDesktopIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_GMteacherDesktopIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2714. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2715. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2716. continue
  2717. }
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_SONGteacherDesktopIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_SONGteacherDesktopIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2734. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_GMstudentDesktopIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_GMstudentDesktopIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2751. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2752. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2753. continue
  2754. }
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_tcTeacherDeskIconInfo[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_tcTeacherDeskIconInfo[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2769. }
  2770. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2771. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2772. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2773. continue
  2774. }
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_tcOrganizerDeskIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_tcOrganizerDeskIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2791. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2792. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2793. continue
  2794. }
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_szscTeacherDeskIconInfo[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_szscTeacherDeskIconInfo[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2809. }
  2810. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2811. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2812. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2813. continue
  2814. }
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_szscOrganizerDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_szscOrganizerDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else {
  2831. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2832. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher'){
  2833. continue
  2834. }
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_teacherDesktopIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_teacherDesktopIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. }
  2851. } else {
  2852. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. style: { 'width': '124px', 'height': '145px' },
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_easyDesktopIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_easyDesktopIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2868. }
  2869. }
  2870. if (type == 1) {
  2871. //加载好后给图标定位
  2872. U.MD.D.iconPostion($(_frag).Child());
  2873. } else {
  2874. //加载好后给图标定位
  2875. U.MD.D.iconPostion2($(_frag).Child());
  2876. }
  2877. //把图标加载到页面
  2878. el.appendChild(_frag);
  2879. }
  2880. /**
  2881. * 显示任务栏
  2882. *
  2883. * @param {element} 桌面元素
  2884. */
  2885. U.MD.D.I.displayTaskbar = function (el) {
  2886. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2887. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2888. //任务栏位置变化
  2889. U.selectEl(el).css({ "bottom": "0px" });
  2890. //桌面位置变话
  2891. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2892. }
  2893. }
  2894. //#region 桌面图标拖动逻辑
  2895. /**
  2896. * 桌面排列图标
  2897. *
  2898. * @param {element} 桌面元素
  2899. * @param {object} 上下相距的距离
  2900. * @param {object} 左右相距的距离
  2901. * @return {object} 命名空间
  2902. */
  2903. U.MD.D.iconPostion = function (childs, top, left) {
  2904. var i; //用于循环处理
  2905. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2906. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2907. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2908. for (i = 0; i < childs.length; i++) {
  2909. //如果竖排top超过了范围处理
  2910. if (top + 95 > US.height - 10) {
  2911. //left超过了页面范围处理,则向上重叠打印处理
  2912. if ((left + 180) > US.width) {
  2913. top -= 110;
  2914. left -= 90;
  2915. }
  2916. //没有超过范围,那么left+90添加到下一个竖排打印
  2917. else {
  2918. left += 90;
  2919. top = 15;
  2920. };
  2921. }
  2922. //给图标的位置赋值
  2923. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2924. if (i < childs.length - 1) {
  2925. //页面图标每次向下加95
  2926. top += 95;
  2927. }
  2928. }
  2929. //返回最后调用的图标的位置
  2930. return [top, left];
  2931. }
  2932. /**
  2933. * 桌面排列图标
  2934. *
  2935. * @param {element} 桌面元素
  2936. * @param {object} 上下相距的距离
  2937. * @param {object} 左右相距的距离
  2938. * @return {object} 命名空间
  2939. */
  2940. U.MD.D.iconPostion2 = function (childs, top, left) {
  2941. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2942. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2943. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2944. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2945. for (i = 0; i < childs.length; i++) {
  2946. //如果竖排top超过了范围处理
  2947. if (left + 150 > US.width - 10) {
  2948. //left超过了页面范围处理,则向上重叠打印处理
  2949. if ((top + 180) > US.Height) {
  2950. top -= 150;
  2951. left -= 150;
  2952. }
  2953. //没有超过范围,那么left+90添加到下一个竖排打印
  2954. else {
  2955. top += 150;
  2956. left = ol;
  2957. };
  2958. }
  2959. //给图标的位置赋值
  2960. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2961. if (i < childs.length - 1) {
  2962. //页面图标每次向下加95
  2963. left += 150;
  2964. }
  2965. }
  2966. //返回最后调用的图标的位置
  2967. return [top, left];
  2968. }
  2969. /**
  2970. * 桌面点击事件逻辑
  2971. *
  2972. * @param {element} 桌面元素
  2973. * @param {object} 上下相距的距离
  2974. * @param {object} 左右相距的距离
  2975. * @return {object} 命名空间
  2976. */
  2977. U.MD.D.click = function (el, obj) {
  2978. var _buttonnumber = event.button; //点击的按钮的事件值
  2979. var _userinfo = US.userInfo;
  2980. U.UF.EV.stopBubble(); //阻止向上冒泡
  2981. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2982. if (_buttonnumber < 2) {
  2983. //如果是click事件的处理
  2984. if (event.type == "click") {
  2985. //如果元素在mousemove事件中没有移动则出发click事件
  2986. if (!U.MD.D.I.IsDrag) {
  2987. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2988. U.alert("请先登录您的账号!");
  2989. setTimeout(() => {
  2990. U.MD.U.L.login();
  2991. }, 2000);
  2992. } else {
  2993. //打开应用处理
  2994. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2995. }
  2996. }
  2997. }
  2998. //如果是mouse事件的处理
  2999. else {
  3000. if (US.Config.type == '1') {
  3001. //拖动处理,添加拖动和拖动结束事件
  3002. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3003. }
  3004. }
  3005. U.MD.D.I.IsDrag = false;
  3006. }
  3007. }
  3008. /**
  3009. * 拖动的处理
  3010. *
  3011. */
  3012. U.MD.D.iconMove = function () {
  3013. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3014. U.MD.D.I.IsDrag = true;
  3015. }
  3016. /**
  3017. * 拖动结束后,这里是定位处理,以网状的形式定位
  3018. *
  3019. * @param {element} 拖动的元素
  3020. * @return {object} 命名空间
  3021. */
  3022. U.MD.D.iconUp = function (el) {
  3023. var _top = 15,
  3024. _left = 20,
  3025. _margin,
  3026. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3027. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3028. if (_positioninfo["OT"] > 15) {
  3029. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3030. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3031. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3032. }
  3033. if (_positioninfo["OL"] > 20) {
  3034. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3035. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3036. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3037. }
  3038. //while循环判断么一个重叠的元素
  3039. do {
  3040. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3041. _top = _positioninfo[0] + 95; //得到定位后的top
  3042. _left = _positioninfo[1]; //得到定位后的left
  3043. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3044. }
  3045. /**
  3046. * 判断拖动后图标是否重叠
  3047. *
  3048. * @param {element} 拖动的元素
  3049. * @param {element} 桌面所有的元素
  3050. * @param {array} 拖动元素的位置
  3051. ----------[0] 上 top
  3052. ----------[1] 左 left
  3053. * @return {object} 命名空间
  3054. */
  3055. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3056. //循环所有的图标
  3057. for (var i = 0; i < childs.length; i++) {
  3058. //判断有没有和该图标诶子重叠的元素
  3059. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3060. return childs[i]; //如果有返回
  3061. }
  3062. }
  3063. }
  3064. //#endregion
  3065. //#endregion
  3066. //#region 桌面应用
  3067. /**
  3068. * 打开应用
  3069. *
  3070. * @param {string} 类型
  3071. -----------------Disk 网盘系统
  3072. -----------------PDisk 学习系统网盘
  3073. -----------------Poto 图片
  3074. -----------------Video 视频
  3075. -----------------Music 音乐
  3076. -----------------Word word
  3077. -----------------Excel excel
  3078. -----------------Txt 记事本
  3079. -----------------PB 学习系统
  3080. -----------------Blog 朋友圈系统
  3081. -----------------FTP ftp系统
  3082. -----------------Group 好友群
  3083. -----------------SY 首页系统
  3084. -----------------Set 个人设置
  3085. -----------------XSet 系统设置
  3086. -----------------App 我们所有的app
  3087. -----------------BC c.1473.cn 平台
  3088. -----------------CWeb d.1473.cn 变成平台
  3089. -----------------其他的外联系统 我们统一用iframe打开
  3090. * @param {array} 类型
  3091. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3092. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3093. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3094. 如果第一个参数为其他,则无第二个参数
  3095. * @returns {array}
  3096. */
  3097. window.addEventListener('message', function (e) { // 监听 message 事件
  3098. // alert(e.data.type);
  3099. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3100. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3101. //3是展示全部阶段 2学生 1老师 4专家
  3102. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3103. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3104. //3是展示全部阶段 2学生 1老师 4专家
  3105. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3106. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3107. //3是展示全部阶段 2学生 1老师 4专家
  3108. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3109. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3110. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3111. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3112. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3113. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3114. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3115. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3116. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3117. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3118. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3119. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3120. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3121. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3122. //3是展示全部阶段 2学生 1老师 4专家
  3123. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3124. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3125. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3126. U.MD.D.I.selectUser();
  3127. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3128. var _formel = document.getElementById("study");
  3129. U.UF.F.windowZooming(_formel);
  3130. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3131. var _formel = document.getElementById("studyDetail");
  3132. U.UF.F.windowZooming(_formel);
  3133. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3134. var _formel = document.getElementById("studyDetail");
  3135. U.UF.F.windowZooming(_formel);
  3136. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3137. var _formel = document.getElementById("studentStudy");
  3138. U.UF.F.windowZooming(_formel);
  3139. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3140. // var _formel = document.getElementById("study");
  3141. //如果最大化了,那么就把他缩小
  3142. // if (_formel.ismaximize) {
  3143. // return;
  3144. // }
  3145. // U.UF.F.windowZooming(_formel);
  3146. // U.UF.F.topWindow(_formel);
  3147. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3148. // var _formel = document.getElementById("studyDetail");
  3149. //如果最大化了,那么就把他缩小
  3150. // if (_formel.ismaximize) {
  3151. // return;
  3152. // }
  3153. // U.UF.F.windowZooming(_formel);
  3154. // U.UF.F.topWindow(_formel);
  3155. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3156. // var _formel = document.getElementById("studentStudy");
  3157. // if (_formel.ismaximize) {
  3158. // return;
  3159. // }
  3160. // U.UF.F.windowZooming(_formel);
  3161. // U.UF.F.topWindow(_formel);
  3162. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3163. var _formel = document.getElementById("study");
  3164. // if (_formel.ismaximize) {
  3165. // return;
  3166. // }
  3167. // U.UF.F.windowZooming(_formel);
  3168. U.UF.F.topWindow(_formel);
  3169. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3170. var _formel = document.getElementById("studentIndex");
  3171. U.UF.F.windowZooming(_formel);
  3172. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3173. var _formel = document.getElementById("studyDetailS");
  3174. U.UF.F.windowZooming(_formel);
  3175. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3176. var _formel = document.getElementById("studioIndex");
  3177. U.UF.F.windowZooming(_formel);
  3178. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3179. var _formel = document.getElementById("studyDetailStudio");
  3180. U.UF.F.windowZooming(_formel);
  3181. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3182. var _formel = document.getElementById("studyDetailStudio");
  3183. U.UF.F.windowZooming(_formel);
  3184. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3185. var _formel = document.getElementById("studyDetailNT");
  3186. U.UF.F.windowZooming(_formel);
  3187. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3188. var _formel = document.getElementById("studyDetailS");
  3189. U.UF.F.windowZooming(_formel);
  3190. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3191. var _formel = document.getElementById("studyDetailS");
  3192. U.UF.F.topWindow(_formel);
  3193. } else if (e.data.tools && e.data.tools == "1") {
  3194. // U.MD.D.I.openApplication("whiteboard")
  3195. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3196. } else if (e.data.tools && e.data.tools == "2") {
  3197. U.MD.D.I.openApplication("note")
  3198. } else if (e.data.tools && e.data.tools == "3") {
  3199. // U.MD.D.I.openApplication("mind")
  3200. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3201. } else if (e.data.tools && e.data.tools == "4") {
  3202. U.MD.D.I.openApplication("investigation")
  3203. } else if (e.data.tools && e.data.tools == "6") {
  3204. // U.MD.D.I.openApplication("doc")
  3205. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3206. } else if (e.data.tools && e.data.tools == "7") {
  3207. // U.MD.D.I.openApplication("mindNetwork")
  3208. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3209. } else if (e.data.tools && e.data.tools == "8") {
  3210. U.MD.D.I.openApplication("library")
  3211. } else if (e.data.tools && e.data.tools == "17") {
  3212. U.MD.D.I.openApplication("stuLibrary")
  3213. } else if (e.data.tools && e.data.tools == "18") {
  3214. U.MD.D.I.openApplication("train")
  3215. } else if (e.data.tools && e.data.tools == "21") {
  3216. U.MD.D.I.openApplication("program")
  3217. } else if (e.data.tools && e.data.tools == "22") {
  3218. U.MD.D.I.openApplication("AIprogram2")
  3219. } else if (e.data.tools && e.data.tools == "23") {
  3220. U.MD.D.I.openApplication("Pythonprogram")
  3221. } else if (e.data.tools && e.data.tools == "24") {
  3222. U.MD.D.I.openApplication("AIprogram")
  3223. } else if (e.data.tools && e.data.tools == "25") {
  3224. U.MD.D.I.openApplication("sys")
  3225. } else if (e.data.tools && e.data.tools == "26") {
  3226. // U.MD.D.I.openApplication("courseDesign")
  3227. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3228. } else if (e.data.tools && e.data.tools == "31") {
  3229. U.MD.D.I.openApplication("netWorkPanel")
  3230. } else if (e.data.tools && e.data.tools == "32") {
  3231. U.MD.D.I.openApplication("codeEdit")
  3232. } else if (e.data.tools && e.data.tools == "57") {
  3233. U.MD.D.I.openApplication("CocoPi")
  3234. } else if (e.data.tools && e.data.tools == "63") {
  3235. U.MD.D.I.openApplication("Wood")
  3236. } else if (e.data.tools && e.data.tools == "58") {
  3237. U.MD.D.I.openApplication("car")
  3238. } else if (e.data.tools && e.data.tools == "59") {
  3239. U.MD.D.I.openApplication("lineSearch")
  3240. } else if (e.data.tools && e.data.tools == "60") {
  3241. U.MD.D.I.openApplication("deepLearning")
  3242. } else if (e.data.tools && e.data.tools == "61") {
  3243. U.MD.D.I.openApplication("allHistory")
  3244. } else if (e.data.tools && e.data.tools == "28") {
  3245. U.MD.D.I.openApplication("translation")
  3246. } else if (e.data.tools && e.data.tools == "37") {
  3247. U.MD.D.I.openApplication("mohe")
  3248. } else if (e.data.tools && e.data.tools == "38") {
  3249. U.MD.D.I.openApplication("24game")
  3250. } else if (e.data.tools && e.data.tools == "39") {
  3251. U.MD.D.I.openApplication("GeoGebra")
  3252. } else if (e.data.tools && e.data.tools == "43") {
  3253. U.MD.D.I.openApplication("studentEvaluate")
  3254. } else if (e.data.tools && e.data.tools == "44") {
  3255. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3256. } else if (e.data.tools && e.data.tools == "46") {
  3257. U.MD.D.I.openApplication("project")
  3258. } else if (e.data.tools && e.data.tools == "71") {
  3259. U.MD.D.I.openApplication("aigptCourse")
  3260. } else if (e.data.tools && e.data.tools == "1s") {
  3261. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3262. } else if (e.data.tools && e.data.tools == "3s") {
  3263. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3264. } else if (e.data.tools && e.data.tools == "6s") {
  3265. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3266. } else if (e.data.tools && e.data.tools == "1studio") {
  3267. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3268. } else if (e.data.tools && e.data.tools == "3studio") {
  3269. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3270. } else if (e.data.tools && e.data.tools == "6studio") {
  3271. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3272. } else if (e.data.tools && e.data.tools == "3y") {
  3273. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3274. } else if (e.data.tools && e.data.tools == "1y") {
  3275. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3276. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3277. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3278. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3279. U.MD.D.I.openApplication("AIAnalyse")
  3280. } else if (e.data.tools && e.data.tools == "1teacher") {
  3281. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3282. } else if (e.data.tools && e.data.tools == "3teacher") {
  3283. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3284. } else if (e.data.tools && e.data.tools == "7teacher") {
  3285. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3286. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3287. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3288. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3289. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3290. } else if (e.data.tools && e.data.tools == "1E") {
  3291. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3292. } else if (e.data.tools && e.data.tools == "3E") {
  3293. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3294. } else if (e.data.tools && e.data.tools == "57y") {
  3295. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3296. } else if (e.data.tools && e.data.tools == "57u") {
  3297. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3298. } else if (e.data.tools && e.data.tools == "57teacher") {
  3299. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3300. } else if (e.data.tools && e.data.tools == "64") {
  3301. U.MD.D.I.openApplication("AIChat")
  3302. } else if (e.data.tools && e.data.tools == "66") {
  3303. U.MD.D.I.openApplication("formulaEdi")
  3304. } else if (e.data.tools && e.data.tools == "67") {
  3305. U.MD.D.I.openApplication("molStr")
  3306. } else if (e.data.tools && e.data.tools == "68") {
  3307. U.MD.D.I.openApplication("timeAxis")
  3308. } else if (e.data.tools && e.data.tools == "openCourse") {
  3309. let _data = {
  3310. typea: e.data.typea || '',
  3311. typeb: e.data.typeb || '',
  3312. typed: e.data.typed || '',
  3313. }
  3314. U.MD.D.I.openInApplication("index", _data)
  3315. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3316. let _data = {
  3317. classid: e.data.classid || '',
  3318. }
  3319. U.MD.D.I.openInApplication("dataClass", _data)
  3320. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3321. let _data = {
  3322. cid: e.data.cid || '',
  3323. gid: e.data.gid || '',
  3324. }
  3325. U.MD.D.I.openInApplication("opencCscl", _data)
  3326. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3327. U.MD.D.I.openApplication("dataBoardTest")
  3328. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3329. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3330. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3331. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3332. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3333. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3334. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3335. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3336. }else if (e.data.tools && e.data.tools == "loginSz") {
  3337. U.MD.D.I.openInApplication("loginSz")
  3338. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3339. if($('#classroom_observation_board')[0]){
  3340. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3341. }
  3342. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3343. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3344. if($('#classroom_observation_ob_comment')[0]){
  3345. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3346. }
  3347. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3348. }
  3349. });
  3350. U.MD.D.I.selectUser = function () {
  3351. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3352. if (res.value[0].length > 0) {
  3353. US.userInfo = res.value[0][0];
  3354. $(".userName")[0].innerHTML = US.userInfo.username;
  3355. }
  3356. }, [], { "type": "GET", "withCredentials": true });
  3357. }
  3358. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3359. var _userinfo = US.userInfo, //登录用户信息
  3360. _userid = US.userInfo.userid, //登录用户id
  3361. _oid = _userinfo.organizeid,
  3362. _type = US.userInfo.type,
  3363. _org = US.userInfo.org,
  3364. _role = US.userInfo.role,
  3365. _classId = US.userInfo.classid;
  3366. if (_type == 4) {
  3367. tType = 4
  3368. }
  3369. switch (str) {
  3370. case "studyDetailNT": //无终端模式
  3371. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3372. setTimeout(() => {
  3373. U.MD.U.L.login();
  3374. }, 2000);
  3375. } else {
  3376. _formdiv = new U.UF.UI.form(
  3377. "课程详情",
  3378. $$("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 }), {
  3379. "id": "studyDetailNT",
  3380. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3381. "onresize": function () { }
  3382. }, {
  3383. closecallback: function () { }
  3384. }, { "style": { "height": "36px" } }).form; //创建窗体
  3385. _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); } }
  3386. break;
  3387. }
  3388. case "studyDetail":
  3389. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3390. setTimeout(() => {
  3391. U.MD.U.L.login();
  3392. }, 2000);
  3393. } else {
  3394. _formdiv = new U.UF.UI.form(
  3395. "课程详情",
  3396. $$("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 }), {
  3397. "id": "studyDetail",
  3398. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3399. "onresize": function () { }
  3400. }, {
  3401. closecallback: function () { }
  3402. }, { "style": { "height": "36px" } }).form; //创建窗体
  3403. _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); } }
  3404. break;
  3405. }
  3406. case "studyDetailTrain":
  3407. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3408. setTimeout(() => {
  3409. U.MD.U.L.login();
  3410. }, 2000);
  3411. } else {
  3412. _formdiv = new U.UF.UI.form(
  3413. "培训详情",
  3414. $$("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 }), {
  3415. "id": "studyDetailTrain",
  3416. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3417. "onresize": function () { }
  3418. }, {
  3419. closecallback: function () { }
  3420. }, { "style": { "height": "36px" } }).form; //创建窗体
  3421. _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); } }
  3422. break;
  3423. }
  3424. case "studyDetailS":
  3425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3426. setTimeout(() => {
  3427. U.MD.U.L.login();
  3428. }, 2000);
  3429. } else {
  3430. _formdiv = new U.UF.UI.form(
  3431. "项目详情",
  3432. $$("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 }), {
  3433. "id": "studyDetailS",
  3434. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3435. "onresize": function () { }
  3436. }, {
  3437. closecallback: function () { }
  3438. }, { "style": { "height": "36px" } }).form; //创建窗体
  3439. _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); } }
  3440. break;
  3441. }
  3442. case "studyDetailStudio":
  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-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3451. "id": "studyDetailStudio",
  3452. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3453. "onresize": function () { }
  3454. }, {
  3455. closecallback: function () { }
  3456. }, { "style": { "height": "36px" } }).form; //创建窗体
  3457. _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); } }
  3458. break;
  3459. }
  3460. case "studyDetailS5":
  3461. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3462. setTimeout(() => {
  3463. U.MD.U.L.login();
  3464. }, 2000);
  3465. } else {
  3466. _formdiv = new U.UF.UI.form(
  3467. "项目详情",
  3468. $$("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 }), {
  3469. "id": "studyDetailS",
  3470. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3471. "onresize": function () { }
  3472. }, {
  3473. closecallback: function () { }
  3474. }, { "style": { "height": "36px" } }).form; //创建窗体
  3475. _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); } }
  3476. break;
  3477. }
  3478. case "studyDetailGM":
  3479. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3480. setTimeout(() => {
  3481. U.MD.U.L.login();
  3482. }, 2000);
  3483. } else {
  3484. _formdiv = new U.UF.UI.form(
  3485. "课程详情",
  3486. $$("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 }), {
  3487. "id": "studyDetail",
  3488. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3489. "onresize": function () { }
  3490. }, {
  3491. closecallback: function () { }
  3492. }, { "style": { "height": "36px" } }).form; //创建窗体
  3493. _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); } }
  3494. break;
  3495. }
  3496. case "hanUrl":
  3497. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3498. setTimeout(() => {
  3499. U.MD.U.L.login();
  3500. }, 2000);
  3501. } else {
  3502. _formdiv = new U.UF.UI.form(
  3503. "汉字宫",
  3504. $$("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" }), {
  3505. "id": "hanUrl",
  3506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3507. "onresize": function () { }
  3508. }, {
  3509. closecallback: function () { }
  3510. }, { "style": { "height": "36px" } }).form; //创建窗体
  3511. _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); } }
  3512. break;
  3513. }
  3514. case "index":
  3515. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3516. setTimeout(() => {
  3517. U.MD.U.L.login();
  3518. }, 2000);
  3519. } else {
  3520. _formdiv = new U.UF.UI.form(
  3521. "课程中心",
  3522. $$("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 }), {
  3523. "id": "study",
  3524. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3525. "onresize": function () { }
  3526. }, {
  3527. closecallback: function () { }
  3528. }, { "style": { "height": "36px" } }).form; //创建窗体
  3529. _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); } }
  3530. break;
  3531. }
  3532. case "dataClass":
  3533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3534. setTimeout(() => {
  3535. U.MD.U.L.login();
  3536. }, 2000);
  3537. } else {
  3538. _formdiv = new U.UF.UI.form(
  3539. "数据报告",
  3540. $$("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 }), {
  3541. "id": "dataClass",
  3542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3543. "onresize": function () { }
  3544. }, {
  3545. closecallback: function () { }
  3546. }, { "style": { "height": "36px" } }).form; //创建窗体
  3547. _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); } }
  3548. break;
  3549. }
  3550. case "opencCscl":
  3551. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3552. setTimeout(() => {
  3553. U.MD.U.L.login();
  3554. }, 2000);
  3555. } else {
  3556. _formdiv = new U.UF.UI.form(
  3557. "协同建构",
  3558. $$("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 }), {
  3559. "id": "futureClass",
  3560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3561. "onresize": function () { }
  3562. }, {
  3563. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3564. }, { "style": { "height": "36px" } }).form; //创建窗体
  3565. _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); } }
  3566. break;
  3567. }
  3568. case "openCourseUpdate":
  3569. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3570. setTimeout(() => {
  3571. U.MD.U.L.login();
  3572. }, 2000);
  3573. } else {
  3574. _formdiv = new U.UF.UI.form(
  3575. "课程管理",
  3576. $$("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 }), {
  3577. "id": "openCourseUpdate",
  3578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3579. "onresize": function () { }
  3580. }, {
  3581. closecallback: function () { }
  3582. }, { "style": { "height": "36px" } }).form; //创建窗体
  3583. break;
  3584. }
  3585. case "openNewCourseUpdate":
  3586. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3587. setTimeout(() => {
  3588. U.MD.U.L.login();
  3589. }, 2000);
  3590. } else {
  3591. _formdiv = new U.UF.UI.form(
  3592. "课程管理",
  3593. $$("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 }), {
  3594. "id": "openCourseUpdate",
  3595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3596. "onresize": function () { }
  3597. }, {
  3598. closecallback: function () { }
  3599. }, { "style": { "height": "36px" } }).form; //创建窗体
  3600. break;
  3601. }
  3602. case "openCourseEUpdate":
  3603. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3604. setTimeout(() => {
  3605. U.MD.U.L.login();
  3606. }, 2000);
  3607. } else {
  3608. _formdiv = new U.UF.UI.form(
  3609. "课程管理",
  3610. $$("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 }), {
  3611. "id": "openCourseUpdate",
  3612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3613. "onresize": function () { }
  3614. }, {
  3615. closecallback: function () { }
  3616. }, { "style": { "height": "36px" } }).form; //创建窗体
  3617. break;
  3618. }
  3619. case "openCourseNewUpdate":
  3620. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3621. setTimeout(() => {
  3622. U.MD.U.L.login();
  3623. }, 2000);
  3624. } else {
  3625. _formdiv = new U.UF.UI.form(
  3626. "课程管理",
  3627. $$("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 }), {
  3628. "id": "openCourseUpdate",
  3629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3630. "onresize": function () { }
  3631. }, {
  3632. closecallback: function () { }
  3633. }, { "style": { "height": "36px" } }).form; //创建窗体
  3634. break;
  3635. }
  3636. case "inviteLoginSz":
  3637. _formdiv = new U.UF.UI.form(
  3638. "随机码登录",
  3639. $$("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 }), {
  3640. "id": "loginSz",
  3641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3642. "onresize": function () { }
  3643. }, {
  3644. closecallback: function () { }
  3645. }, { "style": { "height": "36px" } }).form; //创建窗体
  3646. break;
  3647. case "loginSz":
  3648. _formdiv = new U.UF.UI.form(
  3649. "教师登录",
  3650. $$("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" }), {
  3651. "id": "loginSz",
  3652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3653. "onresize": function () { }
  3654. }, {
  3655. closecallback: function () { }
  3656. }, { "style": { "height": "36px" } }).form; //创建窗体
  3657. break;
  3658. case "teacher":
  3659. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3660. setTimeout(() => {
  3661. U.MD.U.L.login();
  3662. }, 2000);
  3663. } else {
  3664. _formdiv = new U.UF.UI.form(
  3665. "教师管理",
  3666. $$("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 }), {
  3667. "id": "teacher",
  3668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3669. "onresize": function () { }
  3670. }, {
  3671. closecallback: function () { }
  3672. }, { "style": { "height": "36px" } }).form; //创建窗体
  3673. break;
  3674. }
  3675. case "dataBoardSZArea":
  3676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3677. setTimeout(() => {
  3678. U.MD.U.L.login();
  3679. }, 2000);
  3680. } else {
  3681. _formdiv = new U.UF.UI.form(
  3682. "综合数据看板",
  3683. $$("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 }), {
  3684. "id": "dataBoardSZArea",
  3685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3686. "onresize": function () { }
  3687. }, {
  3688. closecallback: function () { }
  3689. }, { "style": { "height": "36px" } }).form; //创建窗体
  3690. break;
  3691. }
  3692. case "dataBoardSZCity":
  3693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3694. setTimeout(() => {
  3695. U.MD.U.L.login();
  3696. }, 2000);
  3697. } else {
  3698. _formdiv = new U.UF.UI.form(
  3699. "综合数据看板",
  3700. $$("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 }), {
  3701. "id": "dataBoardSZCity",
  3702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3703. "onresize": function () { }
  3704. }, {
  3705. closecallback: function () { }
  3706. }, { "style": { "height": "36px" } }).form; //创建窗体
  3707. break;
  3708. }
  3709. case "classroom_observation_board":
  3710. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3711. setTimeout(() => {
  3712. U.MD.U.L.login();
  3713. }, 2000);
  3714. } else {
  3715. _formdiv = new U.UF.UI.form(
  3716. "课堂观察",
  3717. $$("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 }), {
  3718. "id": "classroom_observation_board",
  3719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3720. "onresize": function () { }
  3721. }, {
  3722. closecallback: function () { }
  3723. }, { "style": { "height": "36px" } }).form; //创建窗体
  3724. break;
  3725. }
  3726. case "classroom_observation_ob_comment":
  3727. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3728. setTimeout(() => {
  3729. U.MD.U.L.login();
  3730. }, 2000);
  3731. } else {
  3732. _formdiv = new U.UF.UI.form(
  3733. "课堂审核",
  3734. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  3735. "id": "classroom_observation_ob_comment",
  3736. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3737. "onresize": function () { }
  3738. }, {
  3739. closecallback: function () { }
  3740. }, { "style": { "height": "36px" } }).form; //创建窗体
  3741. break;
  3742. }
  3743. }
  3744. }
  3745. U.MD.D.I.openApplication = function (str, obj, info) {
  3746. obj = obj || {};
  3747. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3748. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3749. _userinfo = US.userInfo, //登录用户信息
  3750. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3751. _oid = obj.organizeid || _userinfo.organizeid,
  3752. _type = US.userInfo.type,
  3753. _org = US.userInfo.org,
  3754. _role = US.userInfo.role,
  3755. _classId = US.userInfo.classid,
  3756. _TscreenType = 1
  3757. _screenType = 2,
  3758. _SscreenType = 3;
  3759. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3760. return;
  3761. }
  3762. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3763. switch (str) {
  3764. case "studnetProject": //好友打开
  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": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  3768. "id": "studnetProject",
  3769. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3775. break;
  3776. case "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  3780. "id": "studentEvaluate",
  3781. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3787. break;
  3788. case "my":
  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/#/data?userid=" + _userid + "&org=" + _org }), {
  3792. "id": "my",
  3793. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3799. break;
  3800. case "program":
  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": "https://x.cocorobo.cn" }), {
  3804. "id": "program",
  3805. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3811. break;
  3812. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  3816. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3823. break;
  3824. case "whiteboard":
  3825. _formdiv = new U.UF.UI.form(
  3826. "电子白板",
  3827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3828. "id": "whiteboard",
  3829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3830. "onresize": function () { }
  3831. }, {
  3832. closecallback: function () { }
  3833. }, { "style": { "height": "36px" } }).form; //创建窗体
  3834. _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); } }
  3835. break;
  3836. case "investigation":
  3837. _formdiv = new U.UF.UI.form(
  3838. "问卷调查",
  3839. $$("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 }), {
  3840. "id": "investigation",
  3841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3842. "onresize": function () { }
  3843. }, {
  3844. closecallback: function () { }
  3845. }, { "style": { "height": "36px" } }).form; //创建窗体
  3846. _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); } }
  3847. break;
  3848. case "note":
  3849. _formdiv = new U.UF.UI.form(
  3850. "便签分类",
  3851. $$("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 }), {
  3852. "id": "note",
  3853. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3854. "onresize": function () { }
  3855. }, {
  3856. closecallback: function () { }
  3857. }, { "style": { "height": "36px" } }).form; //创建窗体
  3858. _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); } }
  3859. break;
  3860. // case "score":
  3861. // _formdiv = new U.UF.UI.form(
  3862. // "量规评分",
  3863. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3864. // "id": "score",
  3865. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3866. // "onresize": function() {}
  3867. // }, {
  3868. // closecallback: function() {}
  3869. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3870. // _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); } }
  3871. // break;
  3872. case "mind":
  3873. _formdiv = new U.UF.UI.form(
  3874. "思维导图",
  3875. $$("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"
  3876. "id": "mind",
  3877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3878. "onresize": function () { }
  3879. }, {
  3880. closecallback: function () { }
  3881. }, { "style": { "height": "36px" } }).form; //创建窗体
  3882. _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); } }
  3883. break;
  3884. case "doc":
  3885. // U.MD.D.I.isRoom();
  3886. _formdiv = new U.UF.UI.form(
  3887. "协同文档",
  3888. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3889. "id": "doc",
  3890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3891. "onresize": function () { }
  3892. }, {
  3893. closecallback: function () { }
  3894. }, { "style": { "height": "36px" } }).form; //创建窗体
  3895. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3896. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3897. // })
  3898. _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); } }
  3899. break;
  3900. case "studentStudy":
  3901. _formdiv = new U.UF.UI.form(
  3902. "课程中心",
  3903. $$("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
  3904. "id": "studentStudy",
  3905. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3906. "onresize": function () { }
  3907. }, {
  3908. closecallback: function () { }
  3909. }, { "style": { "height": "36px" } }).form; //创建窗体
  3910. _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); } }
  3911. break;
  3912. case "train": //好友打开
  3913. _formdiv = new U.UF.UI.form(
  3914. "训练平台",
  3915. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3916. "id": "train",
  3917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3918. "onresize": function () { }
  3919. }, {
  3920. closecallback: function () { }
  3921. }, { "style": { "height": "36px" } }).form; //创建窗体
  3922. _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); } }
  3923. break;
  3924. case "mindNetwork": //好友打开
  3925. _formdiv = new U.UF.UI.form(
  3926. "思维网格",
  3927. $$("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 }), {
  3928. "id": "mindNetwork",
  3929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3930. "onresize": function () { }
  3931. }, {
  3932. closecallback: function () { }
  3933. }, { "style": { "height": "36px" } }).form; //创建窗体
  3934. _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); } }
  3935. break;
  3936. case "studentClassRoom": //好友打开
  3937. _formdiv = new U.UF.UI.form(
  3938. "实时课堂",
  3939. $$("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 }), {
  3940. "id": "studentClassRoom",
  3941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3942. "onresize": function () { }
  3943. }, {
  3944. closecallback: function () { }
  3945. }, { "style": { "height": "36px" } }).form; //创建窗体
  3946. _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); } }
  3947. setTimeout(() => {
  3948. U.UF.F.windowZooming(_formdiv)
  3949. }, 0);
  3950. break;
  3951. }
  3952. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3953. switch (str) {
  3954. case "studnetProject": //好友打开
  3955. _formdiv = new U.UF.UI.form(
  3956. "我的项目",
  3957. $$("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 }), {
  3958. "id": "studnetProject",
  3959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3960. "onresize": function () { }
  3961. }, {
  3962. closecallback: function () { }
  3963. }, { "style": { "height": "36px" } }).form; //创建窗体
  3964. _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); } }
  3965. break;
  3966. case "studentEvaluate": //好友打开
  3967. _formdiv = new U.UF.UI.form(
  3968. "我的评价",
  3969. $$("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 }), {
  3970. "id": "studentEvaluate",
  3971. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3972. "onresize": function () { }
  3973. }, {
  3974. closecallback: function () { }
  3975. }, { "style": { "height": "36px" } }).form; //创建窗体
  3976. _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); } }
  3977. break;
  3978. case "my":
  3979. _formdiv = new U.UF.UI.form(
  3980. "我的资料",
  3981. $$("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 }), {
  3982. "id": "my",
  3983. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3984. "onresize": function () { }
  3985. }, {
  3986. closecallback: function () { }
  3987. }, { "style": { "height": "36px" } }).form; //创建窗体
  3988. _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); } }
  3989. break;
  3990. case "program":
  3991. _formdiv = new U.UF.UI.form(
  3992. "编程平台",
  3993. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3994. "id": "program",
  3995. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3996. "onresize": function () { }
  3997. }, {
  3998. closecallback: function () { }
  3999. }, { "style": { "height": "36px" } }).form; //创建窗体
  4000. _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); } }
  4001. break;
  4002. case "library":
  4003. _formdiv = new U.UF.UI.form(
  4004. "素材库",
  4005. $$("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 }), {
  4006. "id": "library",
  4007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4008. "onresize": function () { }
  4009. }, {
  4010. closecallback: function () { }
  4011. }, { "style": { "height": "36px" } }).form; //创建窗体
  4012. _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); } }
  4013. break;
  4014. case "whiteboard":
  4015. _formdiv = new U.UF.UI.form(
  4016. "电子白板",
  4017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4018. "id": "whiteboard",
  4019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4020. "onresize": function () { }
  4021. }, {
  4022. closecallback: function () { }
  4023. }, { "style": { "height": "36px" } }).form; //创建窗体
  4024. _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); } }
  4025. break;
  4026. case "investigation":
  4027. _formdiv = new U.UF.UI.form(
  4028. "问卷调查",
  4029. $$("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 }), {
  4030. "id": "investigation",
  4031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4032. "onresize": function () { }
  4033. }, {
  4034. closecallback: function () { }
  4035. }, { "style": { "height": "36px" } }).form; //创建窗体
  4036. _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); } }
  4037. break;
  4038. case "note":
  4039. _formdiv = new U.UF.UI.form(
  4040. "便签分类",
  4041. $$("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 }), {
  4042. "id": "note",
  4043. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4044. "onresize": function () { }
  4045. }, {
  4046. closecallback: function () { }
  4047. }, { "style": { "height": "36px" } }).form; //创建窗体
  4048. _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); } }
  4049. break;
  4050. // case "score":
  4051. // _formdiv = new U.UF.UI.form(
  4052. // "量规评分",
  4053. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4054. // "id": "score",
  4055. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4056. // "onresize": function() {}
  4057. // }, {
  4058. // closecallback: function() {}
  4059. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4060. // _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); } }
  4061. // break;
  4062. case "mind":
  4063. _formdiv = new U.UF.UI.form(
  4064. "思维导图",
  4065. $$("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"
  4066. "id": "mind",
  4067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4068. "onresize": function () { }
  4069. }, {
  4070. closecallback: function () { }
  4071. }, { "style": { "height": "36px" } }).form; //创建窗体
  4072. _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); } }
  4073. break;
  4074. case "doc":
  4075. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  4079. "id": "doc",
  4080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. "onresize": function () { }
  4082. }, {
  4083. closecallback: function () { }
  4084. }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4086. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4087. })
  4088. _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); } }
  4089. break;
  4090. case "train": //好友打开
  4091. _formdiv = new U.UF.UI.form(
  4092. "训练平台",
  4093. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4094. "id": "train",
  4095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4096. "onresize": function () { }
  4097. }, {
  4098. closecallback: function () { }
  4099. }, { "style": { "height": "36px" } }).form; //创建窗体
  4100. _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); } }
  4101. break;
  4102. case "studentStudy":
  4103. _formdiv = new U.UF.UI.form(
  4104. "课程中心",
  4105. $$("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
  4106. "id": "studentStudy",
  4107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4108. "onresize": function () { }
  4109. }, {
  4110. closecallback: function () { }
  4111. }, { "style": { "height": "36px" } }).form; //创建窗体
  4112. _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); } }
  4113. break;
  4114. case "mindNetwork": //好友打开
  4115. _formdiv = new U.UF.UI.form(
  4116. "思维网格",
  4117. $$("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 }), {
  4118. "id": "mindNetwork",
  4119. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4120. "onresize": function () { }
  4121. }, {
  4122. closecallback: function () { }
  4123. }, { "style": { "height": "36px" } }).form; //创建窗体
  4124. _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); } }
  4125. break;
  4126. case "studentClassRoom": //好友打开
  4127. _formdiv = new U.UF.UI.form(
  4128. "实时课堂",
  4129. $$("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 }), {
  4130. "id": "studentClassRoom",
  4131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4132. "onresize": function () { }
  4133. }, {
  4134. closecallback: function () { }
  4135. }, { "style": { "height": "36px" } }).form; //创建窗体
  4136. _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); } }
  4137. setTimeout(() => {
  4138. U.UF.F.windowZooming(_formdiv)
  4139. }, 0);
  4140. break;
  4141. }
  4142. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4143. //选择应用处理
  4144. switch (str) {
  4145. case "project": //好友打开
  4146. _formdiv = new U.UF.UI.form(
  4147. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4148. $$("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 }), {
  4149. "id": "project",
  4150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4151. "onresize": function () { }
  4152. }, {
  4153. closecallback: function () { }
  4154. }, { "style": { "height": "36px" } }).form; //创建窗体
  4155. _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); } }
  4156. break;
  4157. case "student":
  4158. _formdiv = new U.UF.UI.form(
  4159. "学生管理",
  4160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  4161. "id": "student",
  4162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4163. "onresize": function () { }
  4164. }, {
  4165. closecallback: function () { }
  4166. }, { "style": { "height": "36px" } }).form; //创建窗体
  4167. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4168. break;
  4169. case "evaluate":
  4170. _formdiv = new U.UF.UI.form(
  4171. "学生评价",
  4172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4173. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4180. break;
  4181. case "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4185. "id": "sys",
  4186. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4192. break;
  4193. case "courseDesign":
  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": "/course-design-vue" }), {
  4197. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4204. break;
  4205. case "program":
  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": "https://x.cocorobo.cn" }), {
  4209. "id": "program",
  4210. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4216. break;
  4217. case "class":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4221. "id": "class",
  4222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4223. "onresize": function () { }
  4224. }, {
  4225. closecallback: function () { }
  4226. }, { "style": { "height": "36px" } }).form; //创建窗体
  4227. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4228. break;
  4229. case "Grade":
  4230. _formdiv = new U.UF.UI.form(
  4231. "年级管理",
  4232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4233. "id": "Grade",
  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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4240. break;
  4241. case "teacherOffice":
  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/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4245. "id": "teacherOffice",
  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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4252. break;
  4253. case "my":
  4254. _formdiv = new U.UF.UI.form(
  4255. "我的资料",
  4256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4257. "id": "my",
  4258. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4264. break;
  4265. case "notice":
  4266. _formdiv = new U.UF.UI.form(
  4267. "通知公告",
  4268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4269. "id": "notice",
  4270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4271. "onresize": function () { }
  4272. }, {
  4273. closecallback: function () { }
  4274. }, { "style": { "height": "36px" } }).form; //创建窗体
  4275. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4276. break;
  4277. case "library":
  4278. _formdiv = new U.UF.UI.form(
  4279. "素材库",
  4280. $$("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 }), {
  4281. "id": "library",
  4282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4283. "onresize": function () { }
  4284. }, {
  4285. closecallback: function () { }
  4286. }, { "style": { "height": "36px" } }).form; //创建窗体
  4287. _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); } }
  4288. break;
  4289. case "whiteboard":
  4290. _formdiv = new U.UF.UI.form(
  4291. "电子白板",
  4292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4293. "id": "whiteboard",
  4294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4295. "onresize": function () { }
  4296. }, {
  4297. closecallback: function () { }
  4298. }, { "style": { "height": "36px" } }).form; //创建窗体
  4299. _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); } }
  4300. break;
  4301. case "investigation":
  4302. _formdiv = new U.UF.UI.form(
  4303. "问卷调查",
  4304. $$("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 }), {
  4305. "id": "investigation",
  4306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4307. "onresize": function () { }
  4308. }, {
  4309. closecallback: function () { }
  4310. }, { "style": { "height": "36px" } }).form; //创建窗体
  4311. _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); } }
  4312. break;
  4313. case "note":
  4314. _formdiv = new U.UF.UI.form(
  4315. "便签分类",
  4316. $$("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 }), {
  4317. "id": "note",
  4318. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4319. "onresize": function () { }
  4320. }, {
  4321. closecallback: function () { }
  4322. }, { "style": { "height": "36px" } }).form; //创建窗体
  4323. _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); } }
  4324. break;
  4325. // case "score":
  4326. // _formdiv = new U.UF.UI.form(
  4327. // "量规评分",
  4328. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4329. // "id": "score",
  4330. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4331. // "onresize": function() {}
  4332. // }, {
  4333. // closecallback: function() {}
  4334. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4335. // _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); } }
  4336. // break;
  4337. case "mind":
  4338. _formdiv = new U.UF.UI.form(
  4339. "思维导图",
  4340. $$("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"
  4341. "id": "mind",
  4342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4343. "onresize": function () { }
  4344. }, {
  4345. closecallback: function () { }
  4346. }, { "style": { "height": "36px" } }).form; //创建窗体
  4347. _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); } }
  4348. break;
  4349. case "doc":
  4350. // U.MD.D.I.isRoom();
  4351. _formdiv = new U.UF.UI.form(
  4352. "协同文档",
  4353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4354. "id": "doc",
  4355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4356. "onresize": function () { }
  4357. }, {
  4358. closecallback: function () { }
  4359. }, { "style": { "height": "36px" } }).form; //创建窗体
  4360. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4361. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4362. })
  4363. _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); } }
  4364. break;
  4365. case "study":
  4366. _formdiv = new U.UF.UI.form(
  4367. "课程中心",
  4368. $$("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
  4369. "id": "study",
  4370. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4371. "onresize": function () { }
  4372. }, {
  4373. closecallback: function () { }
  4374. }, { "style": { "height": "36px" } }).form; //创建窗体
  4375. _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); } }
  4376. break;
  4377. case "mindNetwork": //好友打开
  4378. _formdiv = new U.UF.UI.form(
  4379. "思维网格",
  4380. $$("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 }), {
  4381. "id": "mindNetwork",
  4382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4383. "onresize": function () { }
  4384. }, {
  4385. closecallback: function () { }
  4386. }, { "style": { "height": "36px" } }).form; //创建窗体
  4387. _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); } }
  4388. break;
  4389. case "train": //好友打开
  4390. _formdiv = new U.UF.UI.form(
  4391. "训练平台",
  4392. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4393. "id": "mindNetwork",
  4394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4395. "onresize": function () { }
  4396. }, {
  4397. closecallback: function () { }
  4398. }, { "style": { "height": "36px" } }).form; //创建窗体
  4399. _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); } }
  4400. break;
  4401. case "teacherClassRoom": //好友打开
  4402. _formdiv = new U.UF.UI.form(
  4403. "实时课堂",
  4404. $$("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 }), {
  4405. "id": "teacherClassRoom",
  4406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4407. "onresize": function () { }
  4408. }, {
  4409. closecallback: function () { }
  4410. }, { "style": { "height": "36px" } }).form; //创建窗体
  4411. _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); } }
  4412. setTimeout(() => {
  4413. U.UF.F.windowZooming(_formdiv)
  4414. }, 0);
  4415. break;
  4416. }
  4417. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4418. switch (str) {
  4419. case "project": //好友打开
  4420. _formdiv = new U.UF.UI.form(
  4421. "课程管理",
  4422. $$("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 }), {
  4423. "id": "project",
  4424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4425. "onresize": function () { }
  4426. }, {
  4427. closecallback: function () { }
  4428. }, { "style": { "height": "36px" } }).form; //创建窗体
  4429. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4430. break;
  4431. case "evaluate":
  4432. _formdiv = new U.UF.UI.form(
  4433. "学生评价",
  4434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4435. "id": "evaluate",
  4436. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4437. "onresize": function () { }
  4438. }, {
  4439. closecallback: function () { }
  4440. }, { "style": { "height": "36px" } }).form; //创建窗体
  4441. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4442. break;
  4443. case "notice":
  4444. _formdiv = new U.UF.UI.form(
  4445. "通知公告",
  4446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4447. "id": "notice",
  4448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4449. "onresize": function () { }
  4450. }, {
  4451. closecallback: function () { }
  4452. }, { "style": { "height": "36px" } }).form; //创建窗体
  4453. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4454. break;
  4455. case "stuLibrary":
  4456. _formdiv = new U.UF.UI.form(
  4457. "学习资料",
  4458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4459. "id": "stuLibrary",
  4460. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4461. "onresize": function () { }
  4462. }, {
  4463. closecallback: function () { }
  4464. }, { "style": { "height": "36px" } }).form; //创建窗体
  4465. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4466. break;
  4467. case "program":
  4468. _formdiv = new U.UF.UI.form(
  4469. "编程平台",
  4470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4471. "id": "program",
  4472. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4473. "onresize": function () { }
  4474. }, {
  4475. closecallback: function () { }
  4476. }, { "style": { "height": "36px" } }).form; //创建窗体
  4477. _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); } }
  4478. break;
  4479. case "whiteboard":
  4480. _formdiv = new U.UF.UI.form(
  4481. "电子白板",
  4482. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4483. "id": "whiteboard",
  4484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4485. "onresize": function () { }
  4486. }, {
  4487. closecallback: function () { }
  4488. }, { "style": { "height": "36px" } }).form; //创建窗体
  4489. _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); } }
  4490. break;
  4491. case "investigation":
  4492. _formdiv = new U.UF.UI.form(
  4493. "问卷调查",
  4494. $$("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 }), {
  4495. "id": "investigation",
  4496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4497. "onresize": function () { }
  4498. }, {
  4499. closecallback: function () { }
  4500. }, { "style": { "height": "36px" } }).form; //创建窗体
  4501. _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); } }
  4502. break;
  4503. case "mind":
  4504. _formdiv = new U.UF.UI.form(
  4505. "思维导图",
  4506. $$("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"
  4507. "id": "mind",
  4508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4509. "onresize": function () { }
  4510. }, {
  4511. closecallback: function () { }
  4512. }, { "style": { "height": "36px" } }).form; //创建窗体
  4513. _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); } }
  4514. break;
  4515. case "doc":
  4516. // U.MD.D.I.isRoom();
  4517. _formdiv = new U.UF.UI.form(
  4518. "协同文档",
  4519. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4520. "id": "doc",
  4521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4522. "onresize": function () { }
  4523. }, {
  4524. closecallback: function () { }
  4525. }, { "style": { "height": "36px" } }).form; //创建窗体
  4526. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4527. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4528. })
  4529. _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); } }
  4530. break;
  4531. case "study":
  4532. _formdiv = new U.UF.UI.form(
  4533. "课程中心",
  4534. $$("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
  4535. "id": "study",
  4536. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4537. "onresize": function () { }
  4538. }, {
  4539. closecallback: function () { }
  4540. }, { "style": { "height": "36px" } }).form; //创建窗体
  4541. _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); } }
  4542. break;
  4543. case "mindNetwork": //好友打开
  4544. _formdiv = new U.UF.UI.form(
  4545. "思维网格",
  4546. $$("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 }), {
  4547. "id": "mindNetwork",
  4548. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4549. "onresize": function () { }
  4550. }, {
  4551. closecallback: function () { }
  4552. }, { "style": { "height": "36px" } }).form; //创建窗体
  4553. _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); } }
  4554. break;
  4555. case "train": //好友打开
  4556. _formdiv = new U.UF.UI.form(
  4557. "训练平台",
  4558. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4559. "id": "train",
  4560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4561. "onresize": function () { }
  4562. }, {
  4563. closecallback: function () { }
  4564. }, { "style": { "height": "36px" } }).form; //创建窗体
  4565. _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); } }
  4566. break;
  4567. case "sys":
  4568. _formdiv = new U.UF.UI.form(
  4569. "目标管理",
  4570. $$("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 }), {
  4571. "id": "sys",
  4572. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4573. "onresize": function () { }
  4574. }, {
  4575. closecallback: function () { }
  4576. }, { "style": { "height": "36px" } }).form; //创建窗体
  4577. _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); } }
  4578. break;
  4579. case "courseDesign":
  4580. _formdiv = new U.UF.UI.form(
  4581. "项目设计",
  4582. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4583. "id": "courseDesign",
  4584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4585. "onresize": function () { }
  4586. }, {
  4587. closecallback: function () { }
  4588. }, { "style": { "height": "36px" } }).form; //创建窗体
  4589. _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); } }
  4590. break;
  4591. }
  4592. } else if (!_type) {
  4593. switch (str) {
  4594. case "my":
  4595. _formdiv = new U.UF.UI.form(
  4596. "我的资料",
  4597. $$("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 }), {
  4598. "id": "my",
  4599. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4600. "onresize": function () { }
  4601. }, {
  4602. closecallback: function () { }
  4603. }, { "style": { "height": "36px" } }).form; //创建窗体
  4604. _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); } }
  4605. break;
  4606. }
  4607. }
  4608. switch (str) {
  4609. // AIprogram2 AI体验 aihub.cocorobo.cn
  4610. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4611. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4612. case "formulaEdi": //公式编辑
  4613. _formdiv = new U.UF.UI.form(
  4614. "公式编辑",
  4615. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4616. "id": "formulaEdi",
  4617. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4618. "onresize": function () { }
  4619. }, {
  4620. closecallback: function () { }
  4621. }, { "style": { "height": "36px" } }).form; //创建窗体
  4622. _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); } }
  4623. break;
  4624. case "molStr": //分子结构
  4625. _formdiv = new U.UF.UI.form(
  4626. "分子结构",
  4627. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4628. "id": "molStr",
  4629. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4630. "onresize": function () { }
  4631. }, {
  4632. closecallback: function () { }
  4633. }, { "style": { "height": "36px" } }).form; //创建窗体
  4634. _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); } }
  4635. break;
  4636. case "timeAxis": //时间轴
  4637. _formdiv = new U.UF.UI.form(
  4638. "时间轴",
  4639. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4640. "id": "timeAxis",
  4641. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4642. "onresize": function () { }
  4643. }, {
  4644. closecallback: function () { }
  4645. }, { "style": { "height": "36px" } }).form; //创建窗体
  4646. _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); } }
  4647. break;
  4648. case "AIprogram2": //AI体验
  4649. _formdiv = new U.UF.UI.form(
  4650. "AI体验",
  4651. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4652. "id": "AIprogram2",
  4653. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4654. "onresize": function () { }
  4655. }, {
  4656. closecallback: function () { }
  4657. }, { "style": { "height": "36px" } }).form; //创建窗体
  4658. _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); } }
  4659. break;
  4660. case "Pythonprogram": //python编程
  4661. _formdiv = new U.UF.UI.form(
  4662. "Python编程",
  4663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4664. "id": "Pythonprogram",
  4665. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4666. "onresize": function () { }
  4667. }, {
  4668. closecallback: function () { }
  4669. }, { "style": { "height": "36px" } }).form; //创建窗体
  4670. _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); } }
  4671. break;
  4672. case "AIprogram": //ai编程
  4673. _formdiv = new U.UF.UI.form(
  4674. "AI编程平台",
  4675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4676. "id": "AIprogram",
  4677. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. _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); } }
  4683. break;
  4684. case "CocoPi": //CocoPi
  4685. _formdiv = new U.UF.UI.form(
  4686. "CocoPi",
  4687. $$("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" }), {
  4688. "id": "CocoPi",
  4689. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4690. "onresize": function () { }
  4691. }, {
  4692. closecallback: function () { }
  4693. }, { "style": { "height": "36px" } }).form; //创建窗体
  4694. _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); } }
  4695. break;
  4696. case "Wood": //Wood
  4697. _formdiv = new U.UF.UI.form(
  4698. "海龟编程",
  4699. $$("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/" }), {
  4700. "id": "Wood",
  4701. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4702. "onresize": function () { }
  4703. }, {
  4704. closecallback: function () { }
  4705. }, { "style": { "height": "36px" } }).form; //创建窗体
  4706. _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); } }
  4707. break;
  4708. case "car": //模拟驾驶
  4709. _formdiv = new U.UF.UI.form(
  4710. "模拟驾驶",
  4711. $$("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/" }), {
  4712. "id": "car",
  4713. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. case "lineSearch": //路径搜索
  4721. _formdiv = new U.UF.UI.form(
  4722. "路径搜索",
  4723. $$("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/" }), {
  4724. "id": "lineSearch",
  4725. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4726. "onresize": function () { }
  4727. }, {
  4728. closecallback: function () { }
  4729. }, { "style": { "height": "36px" } }).form; //创建窗体
  4730. _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); } }
  4731. break;
  4732. case "deepLearning": //深度学习
  4733. _formdiv = new U.UF.UI.form(
  4734. "深度学习",
  4735. $$("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/#" }), {
  4736. "id": "deepLearning",
  4737. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4738. "onresize": function () { }
  4739. }, {
  4740. closecallback: function () { }
  4741. }, { "style": { "height": "36px" } }).form; //创建窗体
  4742. _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); } }
  4743. break;
  4744. case "allHistory": //深度学习
  4745. _formdiv = new U.UF.UI.form(
  4746. "全历史",
  4747. $$("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/" }), {
  4748. "id": "allHistory",
  4749. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. case "chatPDF": //ai编程
  4757. _formdiv = new U.UF.UI.form(
  4758. "chatPDF",
  4759. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4760. "id": "chatPDF",
  4761. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4762. "onresize": function () { }
  4763. }, {
  4764. closecallback: function () { }
  4765. }, { "style": { "height": "36px" } }).form; //创建窗体
  4766. _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); } }
  4767. break;
  4768. case "resources": //国家教育
  4769. _formdiv = new U.UF.UI.form(
  4770. "国家教育",
  4771. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4772. "id": "resources",
  4773. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4774. "onresize": function () { }
  4775. }, {
  4776. closecallback: function () { }
  4777. }, { "style": { "height": "36px" } }).form; //创建窗体
  4778. _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); } }
  4779. break;
  4780. case "codeEdit": //源码编辑
  4781. _formdiv = new U.UF.UI.form(
  4782. "源码编辑",
  4783. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4784. "id": "codeEdit",
  4785. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //创建窗体
  4790. _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); } }
  4791. break; //
  4792. case "MindMap": //MindMap
  4793. _formdiv = new U.UF.UI.form(
  4794. "MindMap",
  4795. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4796. "id": "MindMap",
  4797. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4798. "onresize": function () { }
  4799. }, {
  4800. closecallback: function () { }
  4801. }, { "style": { "height": "36px" } }).form; //创建窗体
  4802. _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); } }
  4803. break;
  4804. case "netWorkPanel": //netWorkPanel
  4805. _formdiv = new U.UF.UI.form(
  4806. "netWorkPanel",
  4807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4808. "id": "netWorkPanel",
  4809. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4810. "onresize": function () { }
  4811. }, {
  4812. closecallback: function () { }
  4813. }, { "style": { "height": "36px" } }).form; //创建窗体
  4814. _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); } }
  4815. break;
  4816. case "GeoGebra": //GeoGebra
  4817. _formdiv = new U.UF.UI.form(
  4818. "GeoGebra",
  4819. $$("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" }), {
  4820. "id": "GeoGebra",
  4821. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4822. "onresize": function () { }
  4823. }, {
  4824. closecallback: function () { }
  4825. }, { "style": { "height": "36px" } }).form; //创建窗体
  4826. _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); } }
  4827. break;
  4828. case "translation": //翻译
  4829. _formdiv = new U.UF.UI.form(
  4830. "翻译",
  4831. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4832. "id": "translation",
  4833. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4834. "onresize": function () { }
  4835. }, {
  4836. closecallback: function () { }
  4837. }, { "style": { "height": "36px" } }).form; //创建窗体
  4838. _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); } }
  4839. break;
  4840. case "mohe": //魔盒
  4841. _formdiv = new U.UF.UI.form(
  4842. "魔盒识字",
  4843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4844. "id": "mohe",
  4845. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4846. "onresize": function () { }
  4847. }, {
  4848. closecallback: function () { }
  4849. }, { "style": { "height": "36px" } }).form; //创建窗体
  4850. _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); } }
  4851. break;
  4852. case "24game": //24点
  4853. _formdiv = new U.UF.UI.form(
  4854. "24点",
  4855. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4856. "id": "24game",
  4857. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4858. "onresize": function () { }
  4859. }, {
  4860. closecallback: function () { }
  4861. }, { "style": { "height": "36px" } }).form; //创建窗体
  4862. _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); } }
  4863. break;
  4864. case "case":
  4865. _formdiv = new U.UF.UI.form(
  4866. "课程进展",
  4867. $$("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 }), {
  4868. "id": "case",
  4869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4870. "onresize": function () { }
  4871. }, {
  4872. closecallback: function () { }
  4873. }, { "style": { "height": "36px" } }).form; //创建窗体
  4874. _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); } }
  4875. break;
  4876. case "snf":
  4877. _formdiv = new U.UF.UI.form(
  4878. "赛诺梵",
  4879. $$("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" }), {
  4880. "id": "snf",
  4881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { }
  4885. }, { "style": { "height": "36px" } }).form; //创建窗体
  4886. _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); } }
  4887. break;
  4888. case "hanFamily":
  4889. _formdiv = new U.UF.UI.form(
  4890. "汉字家族",
  4891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4892. "id": "hanFamily",
  4893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4894. "onresize": function () { }
  4895. }, {
  4896. closecallback: function () { }
  4897. }, { "style": { "height": "36px" } }).form; //创建窗体
  4898. _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); } }
  4899. break;
  4900. case "hanClassics":
  4901. _formdiv = new U.UF.UI.form(
  4902. "国学经典",
  4903. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4904. "id": "hanClassics",
  4905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4906. "onresize": function () { }
  4907. }, {
  4908. closecallback: function () { }
  4909. }, { "style": { "height": "36px" } }).form; //创建窗体
  4910. _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); } }
  4911. break;
  4912. case "hanTraining":
  4913. _formdiv = new U.UF.UI.form(
  4914. "笔画训练",
  4915. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4916. "id": "hanTraining",
  4917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4918. "onresize": function () { }
  4919. }, {
  4920. closecallback: function () { }
  4921. }, { "style": { "height": "36px" } }).form; //创建窗体
  4922. _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); } }
  4923. break;
  4924. case "hanClass":
  4925. _formdiv = new U.UF.UI.form(
  4926. "书法课堂",
  4927. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4928. "id": "hanClass",
  4929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4930. "onresize": function () { }
  4931. }, {
  4932. closecallback: function () { }
  4933. }, { "style": { "height": "36px" } }).form; //创建窗体
  4934. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4935. break;
  4936. case "han":
  4937. _formdiv = new U.UF.UI.form(
  4938. "汉字宫",
  4939. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4940. "id": "han",
  4941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4942. "onresize": function () { }
  4943. }, {
  4944. closecallback: function () { }
  4945. }, { "style": { "height": "36px" } }).form; //创建窗体
  4946. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4947. break;
  4948. case "projectGM": //课程管理
  4949. _formdiv = new U.UF.UI.form(
  4950. "课程管理",
  4951. $$("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 }), {
  4952. "id": "projectGM",
  4953. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //创建窗体
  4958. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4959. break;
  4960. case "studyGM": //课程中心
  4961. _formdiv = new U.UF.UI.form(
  4962. "课程中心",
  4963. $$("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
  4964. "id": "study",
  4965. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4966. "onresize": function () { }
  4967. }, {
  4968. closecallback: function () { }
  4969. }, { "style": { "height": "36px" } }).form; //创建窗体
  4970. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4971. break;
  4972. // studentGM
  4973. case "studentGM": //学生管理
  4974. _formdiv = new U.UF.UI.form(
  4975. "学生管理",
  4976. $$("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 }), {
  4977. "id": "studentGM",
  4978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4979. "onresize": function () { }
  4980. }, {
  4981. closecallback: function () { }
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. _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); } }
  4984. break;
  4985. case "evaluateGM": //学生评价
  4986. _formdiv = new U.UF.UI.form(
  4987. "学生评价",
  4988. $$("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 }), {
  4989. "id": "evaluateGM",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _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); } }
  4996. break;
  4997. // classGM
  4998. case "classGM": //班级管理
  4999. _formdiv = new U.UF.UI.form(
  5000. "班级管理",
  5001. $$("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 }), {
  5002. "id": "classGM",
  5003. "style": { "width": "90%", "height": "90%", "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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5009. break;
  5010. // dataGM
  5011. case "dataGM":
  5012. _formdiv = new U.UF.UI.form(
  5013. "我的资料",
  5014. $$("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 }), {
  5015. "id": "dataGM",
  5016. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. _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); } }
  5022. break;
  5023. // caseGM
  5024. case "caseGM": //课程进展
  5025. _formdiv = new U.UF.UI.form(
  5026. "课程进展",
  5027. $$("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 }), {
  5028. "id": "caseGM",
  5029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _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); } }
  5035. break;
  5036. // meterialGM
  5037. case "meterialGM": //素材库
  5038. _formdiv = new U.UF.UI.form(
  5039. "素材库",
  5040. $$("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 }), {
  5041. "id": "meterialGM",
  5042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. _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); } }
  5048. break;
  5049. // evaluateSGM
  5050. case "evaluateSGM": //我的评价
  5051. _formdiv = new U.UF.UI.form(
  5052. "我的评价",
  5053. $$("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 }), {
  5054. "id": "evaluateSGM",
  5055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. _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); } }
  5061. break;
  5062. case "jupyter": //jupyter
  5063. _formdiv = new U.UF.UI.form(
  5064. "jupyter",
  5065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5066. "id": "jupyter",
  5067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. case "number": //数字实验室
  5075. _formdiv = new U.UF.UI.form(
  5076. "数字实验室",
  5077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5078. "id": "number",
  5079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5080. "onresize": function () { }
  5081. }, {
  5082. closecallback: function () { }
  5083. }, { "style": { "height": "36px" } }).form; //创建窗体
  5084. _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); } }
  5085. break;
  5086. case "studentCourse": //项目管理 学生
  5087. _formdiv = new U.UF.UI.form(
  5088. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5089. $$("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 }), {
  5090. "id": "studentCourse",
  5091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "studentCourseS": //项目管理 老师
  5099. _formdiv = new U.UF.UI.form(
  5100. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5101. $$("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 }), {
  5102. "id": "studentCourseS",
  5103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. case "studentIndex": //项目中心
  5111. _formdiv = new U.UF.UI.form(
  5112. "项目中心",
  5113. $$("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 }), {
  5114. "id": "studentIndex",
  5115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "CaseDesignS":
  5123. _formdiv = new U.UF.UI.form(
  5124. "项目进展",
  5125. $$("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 }), {
  5126. "id": "case",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "tcStudent": //腾讯学生管理
  5135. _formdiv = new U.UF.UI.form(
  5136. "学生管理",
  5137. $$("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 }), {
  5138. "id": "tcStudent",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "tcSchool": //腾讯学校管理
  5147. _formdiv = new U.UF.UI.form(
  5148. "学校管理",
  5149. $$("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 }), {
  5150. "id": "tcSchool",
  5151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "tcTeacher": //腾讯学校管理
  5159. _formdiv = new U.UF.UI.form(
  5160. "教师管理",
  5161. $$("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 }), {
  5162. "id": "tcTeacher",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "tcData": //腾讯我的资料
  5171. _formdiv = new U.UF.UI.form(
  5172. "我的资料",
  5173. $$("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 }), {
  5174. "id": "tcData",
  5175. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. case "tcNotice": //腾讯消息通知
  5183. _formdiv = new U.UF.UI.form(
  5184. "消息通知",
  5185. $$("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 }), {
  5186. "id": "tcNotice",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. break;
  5194. case "myReport": //好友打开
  5195. _formdiv = new U.UF.UI.form(
  5196. "我的评价",
  5197. $$("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 }), {
  5198. "id": "myReport",
  5199. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "learnAna": //好友打开
  5207. _formdiv = new U.UF.UI.form(
  5208. "学习分析",
  5209. $$("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 }), {
  5210. "id": "learnAna",
  5211. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. case "AIChat": //AI共创
  5219. _formdiv = new U.UF.UI.form(
  5220. "AI共创",
  5221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5222. "id": "AIChat",
  5223. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. istop: true,
  5227. closecallback: function () { $("#aichat_icon").remove(); },
  5228. narrowcallback: function () {
  5229. if (!$("#aichat_icon")[0]) {
  5230. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5231. }
  5232. },
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break;
  5236. case "ainew": //AI共创
  5237. _formdiv = new U.UF.UI.form(
  5238. "AI协同",
  5239. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5240. "id": "ainew",
  5241. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _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); } }
  5247. break;
  5248. case "gpt4": //gpt4
  5249. _formdiv = new U.UF.UI.form(
  5250. "AI助手",
  5251. $$("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 }), {
  5252. "id": "gpt4",
  5253. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _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); } }
  5259. break;
  5260. case "aigpt": //gpt4
  5261. _formdiv = new U.UF.UI.form(
  5262. "AI助手+",
  5263. $$("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 }), {
  5264. "id": "aigpt",
  5265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. break;
  5272. case "futureClass": //AI共创
  5273. _formdiv = new U.UF.UI.form(
  5274. "协同建构",
  5275. $$("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
  5276. "id": "synergyCourse",
  5277. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5278. "onresize": function () { }
  5279. }, {
  5280. closecallback: function () {
  5281. $("iframe", _formdiv)[0].contentWindow.loginout();
  5282. }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "aiagent": //ai agent
  5287. _formdiv = new U.UF.UI.form(
  5288. "AI Agent",
  5289. $$("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" }), {
  5290. "id": "AIAgent",
  5291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "dataBoard": //数据看板
  5299. _formdiv = new U.UF.UI.form(
  5300. "数据看板",
  5301. $$("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 }), {
  5302. "id": "dataBoard",
  5303. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. break;
  5310. case "dataBoardSies": //数据融合
  5311. _formdiv = new U.UF.UI.form(
  5312. "数据融合",
  5313. $$("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 }), {
  5314. "id": "dataBoardSies",
  5315. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5316. "onresize": function () { }
  5317. }, {
  5318. closecallback: function () { }
  5319. }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. _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); } }
  5321. break;
  5322. case "dataBoardNew": //数据看板
  5323. _formdiv = new U.UF.UI.form(
  5324. "综合看板",
  5325. $$("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 }), {
  5326. "id": "dataBoardNew",
  5327. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "dataBoardTest": //数据看板
  5335. _formdiv = new U.UF.UI.form(
  5336. "评测看板",
  5337. $$("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 }), {
  5338. "id": "dataBoardTest",
  5339. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _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); } }
  5345. break;
  5346. case "AIAnalyse": //AI共创
  5347. _formdiv = new U.UF.UI.form(
  5348. "AI分析",
  5349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5350. "id": "AIAnalyse",
  5351. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. case "studioCourse": //AI共创
  5359. _formdiv = new U.UF.UI.form(
  5360. "工作管理",
  5361. $$("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 }), {
  5362. "id": "studioCourse",
  5363. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. case "studioIndex": //AI共创
  5371. _formdiv = new U.UF.UI.form(
  5372. "工作中心",
  5373. $$("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 }), {
  5374. "id": "studioIndex",
  5375. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _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); } }
  5381. break;
  5382. case "source":
  5383. _formdiv = new U.UF.UI.form(
  5384. "教学资源",
  5385. $$("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 }), {
  5386. "id": "source",
  5387. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "testTeacher":
  5395. _formdiv = new U.UF.UI.form(
  5396. "教师管理",
  5397. $$("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 }), {
  5398. "id": "testTeacher",
  5399. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _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); } }
  5405. break;
  5406. case "testStudent":
  5407. _formdiv = new U.UF.UI.form(
  5408. "教师中心",
  5409. $$("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 }), {
  5410. "id": "testStudent",
  5411. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. _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); } }
  5417. break;
  5418. case "testTeacherSies":
  5419. _formdiv = new U.UF.UI.form(
  5420. "教师管理",
  5421. $$("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 }), {
  5422. "id": "testTeacherSies",
  5423. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5424. "onresize": function () { }
  5425. }, {
  5426. closecallback: function () { }
  5427. }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. _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); } }
  5429. break;
  5430. case "testStudentSies":
  5431. _formdiv = new U.UF.UI.form(
  5432. "教师中心",
  5433. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  5434. "id": "testStudentSies",
  5435. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5441. break;
  5442. case "ytpbl": //消息通知
  5443. _formdiv = new U.UF.UI.form(
  5444. "案例征集",
  5445. $$("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 }), {
  5446. "id": "ytpbl",
  5447. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. // 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");
  5454. break;
  5455. case "aiCourseResource": //人工智能窗体
  5456. _formdiv = new U.UF.UI.form(
  5457. false,
  5458. $$("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 }), {
  5459. "id": "aiCourseResource",
  5460. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5461. "onresize": function () { },
  5462. "isdrag": false,
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _taskbar = ''
  5467. break;
  5468. case "szdjgCocooroboX": //图形化编程
  5469. _formdiv = new U.UF.UI.form(
  5470. "图形化编程",
  5471. $$("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" }), {
  5472. "id": "szdjgCocooroboX",
  5473. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _taskbar = ''
  5479. break;
  5480. case "szdjgPython": //python编程
  5481. _formdiv = new U.UF.UI.form(
  5482. "Python编程",
  5483. $$("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" }), {
  5484. "id": "szdjgPython",
  5485. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5486. "onresize": function () { }
  5487. }, {
  5488. closecallback: function () { }
  5489. }, { "style": { "height": "36px" } }).form; //创建窗体
  5490. _taskbar = ''
  5491. break;
  5492. case "Record":
  5493. _formdiv = new U.UF.UI.form(
  5494. "观察记录",
  5495. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5496. "id": "Record",
  5497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5503. break;
  5504. case "aigptCourse":
  5505. _formdiv = new U.UF.UI.form(
  5506. "AI智能体",
  5507. $$("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' }), {
  5508. "id": "aigptCourse",
  5509. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5515. break;
  5516. case "classroomObservation":
  5517. _formdiv = new U.UF.UI.form(
  5518. "课堂观察",
  5519. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5520. "id": "classroomObservation",
  5521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5527. break;
  5528. case "pblCourse":
  5529. _formdiv = new U.UF.UI.form(
  5530. "学生PBL",
  5531. $$("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 }), {
  5532. "id": "pblCourse",
  5533. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5539. break;
  5540. }
  5541. //U.MD.D.I.openClick(str);
  5542. //如果有任务栏信息
  5543. if (_taskbar) {
  5544. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5545. }
  5546. }
  5547. // U.MD.D.I.openClick = function(str){
  5548. // var click = '';
  5549. // switch(str){
  5550. // case 'friend':
  5551. // click = '我的好友';
  5552. // break;
  5553. // case 'domain':
  5554. // click = '域名管理';
  5555. // break;
  5556. // case 'disk':
  5557. // click = '我的云盘';
  5558. // break;
  5559. // case 'word':
  5560. // click = 'Word';
  5561. // break;
  5562. // case 'excel':
  5563. // click = 'Execl';
  5564. // break;
  5565. // case 'txt':
  5566. // click = '文本文件';
  5567. // break;
  5568. // case 'lookupFriend':
  5569. // click = '查找好友';
  5570. // break;
  5571. // case 'ftp':
  5572. // click = 'FTP';
  5573. // break;
  5574. // case 'group':
  5575. // click = '群组';
  5576. // break;
  5577. // case 'set':
  5578. // click = '我的设置';
  5579. // break;
  5580. // case 'systemSet':
  5581. // click = '系统设置';
  5582. // break;
  5583. // case 'boomYun':
  5584. // click = '互联办公';
  5585. // break;
  5586. // case 'xz':
  5587. // click = '云端下载';
  5588. // break;
  5589. // case 'client':
  5590. // click = '有思浏览器';
  5591. // break;
  5592. // case 'backEndProgramming':
  5593. // click = '在线后台编程';
  5594. // break;
  5595. // case 'frontEndProgramming':
  5596. // click = '在线前端编程';
  5597. // break;
  5598. // default: break;
  5599. // }
  5600. // if(U.MD.D.I.Ip && click){
  5601. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5602. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5603. // })
  5604. // }
  5605. // }
  5606. /**
  5607. *函数作用:ajax简易函数,使用post格式
  5608. *@param url {data} 后台地址
  5609. *@param data {data} 参数json
  5610. *@param fn {data} 回调函数
  5611. *
  5612. */
  5613. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5614. // var xhr = new XMLHttpRequest();
  5615. // xhr.open("GET",url,true);
  5616. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5617. // xhr.onreadystatechange = function(){
  5618. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5619. // fn.call(this,xhr.responseText);
  5620. // }
  5621. // };
  5622. // xhr.send();
  5623. // }
  5624. /*判断是否是内网IP*/
  5625. // U.MD.D.I.isInnerIPFn = function(str){
  5626. // var curPageUrl = str;
  5627. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5628. // curPageUrl =curPageUrl.replace(reg1,'');
  5629. // // console.log('curPageUrl-1 '+curPageUrl);
  5630. // var reg2 = /\:+/g;//替换冒号为一点
  5631. // curPageUrl =curPageUrl.replace(reg2,'.');
  5632. // // console.log('curPageUrl-2 '+curPageUrl);
  5633. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5634. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5635. // if(curPageUrl[2] != '16'){
  5636. // return ipAddress;
  5637. // }else{
  5638. // return false;
  5639. // }
  5640. // }
  5641. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5642. // //compatibility for firefox and chrome
  5643. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5644. // var pc = new myPeerConnection({
  5645. // iceServers: []
  5646. // }),
  5647. // noop = function() {},
  5648. // localIPs = {},
  5649. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5650. // key;
  5651. // function iterateIP(ip) {
  5652. // if (!localIPs[ip]) onNewIP(ip);
  5653. // localIPs[ip] = true;
  5654. // }
  5655. // //create a bogus data channel
  5656. // pc.createDataChannel("");
  5657. // // create offer and set local description
  5658. // pc.createOffer().then(function(sdp) {
  5659. // sdp.sdp.split('\n').forEach(function(line) {
  5660. // if (line.indexOf('candidate') < 0) return;
  5661. // line.match(ipRegex).forEach(iterateIP);
  5662. // });
  5663. // pc.setLocalDescription(sdp, noop, noop);
  5664. // }).catch(function(reason) {
  5665. // // An error occurred, so handle the failure to connect
  5666. // });
  5667. // //sten for candidate events
  5668. // pc.onicecandidate = function(ice) {
  5669. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5670. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5671. // };
  5672. // }
  5673. // U.MD.D.I.getUserIpBool = function(callback){
  5674. // U.MD.D.I.getUserIP(function(ip){
  5675. // alert("Got IP! :" + ip);
  5676. // });
  5677. //}
  5678. //#endregion
  5679. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5680. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5681. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5682. _userinfo = US.userInfo, //登录用户信息
  5683. _userid = US.userInfo.userid //登录用户id
  5684. let _iframe;
  5685. let _cid = cid,
  5686. _stage = stage,
  5687. _task = task,
  5688. _tool = tool;
  5689. var _jie = $$("div", {
  5690. "style": {
  5691. "position": "absolute",
  5692. "bottom": "50px",
  5693. "right": "50px",
  5694. "zIndex": "9999",
  5695. "backgroundColor": "#2268bc",
  5696. "color": "#fff",
  5697. "padding": "12px 20px",
  5698. "cursor": "pointer",
  5699. "borderRadius": "4px",
  5700. },
  5701. "innerHTML": "提交作业"
  5702. })
  5703. let aTool = ''
  5704. let _loading = document.createElement('div')
  5705. _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;"
  5706. // _loading.id = "";
  5707. let _lchild = document.createElement('div')
  5708. let _limg = document.createElement('img')
  5709. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5710. _limg.style = "width: 26px;margin-right: 10px;"
  5711. _lchild.appendChild(_limg)
  5712. let _lspan = document.createElement('span')
  5713. _lspan.innerHTML = "上传中..."
  5714. _lchild.appendChild(_lspan)
  5715. _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%);"
  5716. _loading.appendChild(_lchild)
  5717. var _box = $$('div', {
  5718. "style": {
  5719. "position": "relative",
  5720. "width": "100%",
  5721. "height": "100%",
  5722. },
  5723. })
  5724. _box.appendChild(_loading)
  5725. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5726. switch (str) {
  5727. case "whiteboard":
  5728. aTool = 1;
  5729. _iframe = $$("iframe", {
  5730. "frameborder": "no",
  5731. "border": "0",
  5732. "scrolling ": "no",
  5733. "style": {
  5734. "cssText": "border:0;width:100%;height:100%"
  5735. },
  5736. "src": "https://beta.iwb.cocorobo.cn/"
  5737. })
  5738. _box.appendChild(_iframe);
  5739. _box.appendChild(_jie);
  5740. _formdiv = new U.UF.UI.form(
  5741. "电子白板",
  5742. _box, {
  5743. "id": "whiteboard" + cid + stage + task + tool,
  5744. "style": {
  5745. "width": "90%",
  5746. "height": "90%",
  5747. "overflow": 'hidden'
  5748. },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, {
  5753. "style": {
  5754. "height": "36px"
  5755. }
  5756. }).form; //创建窗体
  5757. _taskbar = {
  5758. "id": str + _formdiv.id,
  5759. "style": {
  5760. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5761. },
  5762. "name": "电子白板",
  5763. "forms": _formdiv,
  5764. "click": function () {
  5765. U.MD.D.I.openApplication(str, obj, info);
  5766. }
  5767. }
  5768. break;
  5769. case "mind":
  5770. aTool = 3;
  5771. _iframe = $$("iframe", {
  5772. "frameborder": "no",
  5773. "border": "0",
  5774. "scrolling ": "no",
  5775. "style": {
  5776. "cssText": "border:0;width:100%;height:100%"
  5777. },
  5778. "src": "/kityminder-editor/dist/index.html"
  5779. })
  5780. _box.appendChild(_iframe);
  5781. _box.appendChild(_jie);
  5782. _formdiv = new U.UF.UI.form(
  5783. "思维导图",
  5784. _box, { //"/jsmind/example/demo.html"
  5785. "id": "mind" + cid + stage + task + tool,
  5786. "style": {
  5787. "width": "90%",
  5788. "height": "90%",
  5789. "overflow": 'hidden'
  5790. },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, {
  5795. "style": {
  5796. "height": "36px"
  5797. }
  5798. }).form; //创建窗体
  5799. _taskbar = {
  5800. "id": str + _formdiv.id,
  5801. "style": {
  5802. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5803. },
  5804. "name": "思维导图",
  5805. "forms": _formdiv,
  5806. "click": function () {
  5807. U.MD.D.I.openApplication(str, obj, info);
  5808. }
  5809. }
  5810. break;
  5811. case "MindMap":
  5812. aTool = 3;
  5813. _iframe = $$("iframe", {
  5814. "frameborder": "no",
  5815. "border": "0",
  5816. "scrolling ": "no",
  5817. "style": {
  5818. "cssText": "border:0;width:100%;height:100%"
  5819. },
  5820. "src": "//cloud.cocorobo.cn/mind/"
  5821. })
  5822. _box.appendChild(_iframe);
  5823. _box.appendChild(_jie);
  5824. _formdiv = new U.UF.UI.form(
  5825. "思维导图",
  5826. _box, { //"/jsmind/example/demo.html"
  5827. "id": "mind" + cid + stage + task + tool,
  5828. "style": {
  5829. "width": "90%",
  5830. "height": "90%",
  5831. "overflow": 'hidden'
  5832. },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, {
  5837. "style": {
  5838. "height": "36px"
  5839. }
  5840. }).form; //创建窗体
  5841. _taskbar = {
  5842. "id": str + _formdiv.id,
  5843. "style": {
  5844. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5845. },
  5846. "name": "思维导图",
  5847. "forms": _formdiv,
  5848. "click": function () {
  5849. U.MD.D.I.openApplication(str, obj, info);
  5850. }
  5851. }
  5852. break;
  5853. case "doc":
  5854. aTool = 6;
  5855. _iframe = $$("iframe", {
  5856. "frameborder": "no",
  5857. "border": "0",
  5858. "scrolling ": "no",
  5859. "style": {
  5860. "cssText": "border:0;width:100%;height:100%"
  5861. },
  5862. "src": "/Office/Word/WordEditArea.htm"
  5863. })
  5864. _box.appendChild(_iframe);
  5865. _box.appendChild(_jie);
  5866. _formdiv = new U.UF.UI.form(
  5867. "协同文档",
  5868. _box, {
  5869. "id": "doc" + cid + stage + task + tool,
  5870. "style": {
  5871. "width": "90%",
  5872. "height": "90%",
  5873. "overflow": 'hidden'
  5874. },
  5875. "onresize": function () { }
  5876. }, {
  5877. closecallback: function () { }
  5878. }, {
  5879. "style": {
  5880. "height": "36px"
  5881. }
  5882. }).form; //创建窗体
  5883. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5884. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5885. })
  5886. _taskbar = {
  5887. "id": str + _formdiv.id,
  5888. "style": {
  5889. "backgroundImage": "url(/img/icon/doc.png)"
  5890. },
  5891. "name": "协同文档",
  5892. "forms": _formdiv,
  5893. "click": function () {
  5894. U.MD.D.I.openApplication(str, obj, info);
  5895. }
  5896. }
  5897. break;
  5898. case "mindNetwork": //好友打开
  5899. aTool = 7;
  5900. _iframe = $$("iframe", {
  5901. "webkitallowfullscreen": "",
  5902. "mozallowfullscreen": "",
  5903. "allowfullscreen": "",
  5904. "frameborder": "no",
  5905. "border": "0",
  5906. "scrolling ": "no",
  5907. "style": {
  5908. "cssText": "border:0; width:100%; height:100%;"
  5909. },
  5910. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5911. })
  5912. _box.appendChild(_iframe);
  5913. _box.appendChild(_jie);
  5914. _formdiv = new U.UF.UI.form(
  5915. "思维网格",
  5916. _box, {
  5917. "id": "mindNetwork" + cid + stage + task + tool,
  5918. "style": {
  5919. "width": "90%",
  5920. "height": "90%",
  5921. "overflow": 'hidden'
  5922. },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, {
  5927. "style": {
  5928. "height": "36px"
  5929. }
  5930. }).form; //创建窗体
  5931. _taskbar = {
  5932. "id": str + _formdiv.id,
  5933. "style": {
  5934. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5935. },
  5936. "name": "思维网格",
  5937. "forms": _formdiv,
  5938. "click": function () {
  5939. U.MD.D.I.openApplication(str, obj, info);
  5940. }
  5941. }
  5942. break;
  5943. case "courseDesign":
  5944. _iframe = $$("iframe", {
  5945. "webkitallowfullscreen": "",
  5946. "mozallowfullscreen": "",
  5947. "allowfullscreen": "",
  5948. "frameborder": "no",
  5949. "border": "0",
  5950. "scrolling ": "no",
  5951. "style": {
  5952. "cssText": "border:0; width:100%; height:100%;"
  5953. },
  5954. "src": "/course-design-vue"
  5955. })
  5956. _box.appendChild(_iframe);
  5957. _box.appendChild(_jie);
  5958. _formdiv = new U.UF.UI.form(
  5959. "项目设计",
  5960. _box, {
  5961. "id": "courseDesign" + cid + stage + task + tool,
  5962. "style": {
  5963. "width": "90%",
  5964. "height": "90%",
  5965. "overflow": 'hidden'
  5966. },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, {
  5971. "style": {
  5972. "height": "36px"
  5973. }
  5974. }).form; //创建窗体
  5975. _taskbar = {
  5976. "id": str + _formdiv.id,
  5977. "style": {
  5978. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5979. },
  5980. "name": "项目设计",
  5981. "forms": _formdiv,
  5982. "click": function () {
  5983. U.MD.D.I.openApplication(str, obj, info);
  5984. }
  5985. }
  5986. break;
  5987. }
  5988. const script1 = document.createElement("script");
  5989. script1.type = "text/javascript";
  5990. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5991. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5992. const script2 = document.createElement("script");
  5993. script2.type = "text/javascript";
  5994. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5995. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5996. const script3 = document.createElement("script");
  5997. script3.type = "text/javascript";
  5998. script3.charset = "UTF-8";
  5999. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6000. const script4 = document.createElement("script");
  6001. script4.type = "text/javascript";
  6002. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6003. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6004. if (_iframe) {
  6005. if (str == 'doc') {
  6006. _iframe = _formdiv.querySelector('iframe')
  6007. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6008. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6009. _iframe.contentWindow.document.body.appendChild(script1);
  6010. _iframe.contentWindow.document.body.appendChild(script2);
  6011. // _iframe.contentWindow.document.body.appendChild(script3);
  6012. _iframe.contentWindow.document.body.appendChild(script4);
  6013. })
  6014. if (onloadListener) {
  6015. _iframe.contentDocument.location.reload()
  6016. } else {
  6017. _iframe.contentDocument.location.reload()
  6018. }
  6019. } else if (str == 'courseDesign') {
  6020. U.UF.DL.iframeLoad(_iframe, function () {
  6021. // _iframe.contentWindow.U.MD.O.W.load();
  6022. // _iframe.contentWindow.document.body.appendChild(script1);
  6023. _iframe.contentWindow.document.body.appendChild(script2);
  6024. _iframe.contentWindow.document.body.appendChild(script4);
  6025. })
  6026. } else if (str == 'mind') {
  6027. _iframe = _formdiv.querySelector('iframe')
  6028. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6029. //
  6030. _iframe.contentWindow.document.body.appendChild(script1);
  6031. _iframe.contentWindow.document.body.appendChild(script2);
  6032. _iframe.contentWindow.document.body.appendChild(script4);
  6033. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6034. })
  6035. if (onloadListener) {
  6036. _iframe.contentDocument.location.reload()
  6037. } else {
  6038. _iframe.contentDocument.location.reload()
  6039. }
  6040. } else if (str == 'whiteboard') {
  6041. _iframe = _formdiv.querySelector('iframe')
  6042. let onloadListener = _iframe.onload = () => {
  6043. _iframe.contentWindow.document.body.appendChild(script1);
  6044. _iframe.contentWindow.document.body.appendChild(script2);
  6045. _iframe.contentWindow.document.body.appendChild(script4);
  6046. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6047. };
  6048. // if (onloadListener) {
  6049. // try {
  6050. // _iframe.src += "?cocorobo="+new Date().getTime()
  6051. // _iframe.contentWindow.document.location.reload()
  6052. // } catch (error) {
  6053. // }
  6054. // } else {
  6055. // _iframe.contentDocument.location.reload()
  6056. // }
  6057. } else {
  6058. _iframe.onload = () => {
  6059. _iframe.contentWindow.document.body.appendChild(script1);
  6060. _iframe.contentWindow.document.body.appendChild(script2);
  6061. // _iframe.contentWindow.document.body.appendChild(script3);
  6062. _iframe.contentWindow.document.body.appendChild(script4);
  6063. };
  6064. }
  6065. _jie.onclick = async () => {
  6066. let text = ''
  6067. if (aTool == 1) {
  6068. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6069. } else if (aTool == 6) {
  6070. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6071. } else if (aTool == 3) {
  6072. text = await U.MD.D.I.getEditorContent(_iframe);
  6073. }
  6074. _loading.style.display = 'flex'
  6075. console.log(_loading);
  6076. var _ajs = _iframe.contentWindow.document.createElement("script");
  6077. _ajs.type = "text/javascript";
  6078. _ajs.innerHTML =
  6079. // 'console.log(' + _loading + ');\n' +
  6080. 'var _js = document.createElement("script");\n' +
  6081. '_js.type="text/javascript";\n' +
  6082. '_js.charset="UTF-8";\n' +
  6083. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6084. "_js.onload = function(){\n" +
  6085. ' var a = document.getElementsByTagName("img")\n' +
  6086. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6087. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6088. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6089. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6090. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6091. "beforeUpload_shishi(file," +
  6092. "'" +
  6093. _userid +
  6094. "'" +
  6095. ", " +
  6096. "'" +
  6097. _cid +
  6098. "'" +
  6099. ", " +
  6100. "'" +
  6101. _stage +
  6102. "'" +
  6103. ", " +
  6104. "'" +
  6105. _task +
  6106. "'" +
  6107. ", " +
  6108. "'" +
  6109. _tool +
  6110. "'" +
  6111. ", " +
  6112. "'" +
  6113. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6114. "'" +
  6115. ", " +
  6116. "'" +
  6117. aTool +
  6118. "'" +
  6119. ", " +
  6120. "`" +
  6121. text +
  6122. "`" +
  6123. ")\n" +
  6124. " });\n" +
  6125. "}\n" +
  6126. "document.head.appendChild(_js);\n";
  6127. _iframe.contentWindow.document.head.appendChild(_ajs);
  6128. }
  6129. }
  6130. //U.MD.D.I.openClick(str);
  6131. //如果有任务栏信息
  6132. // if (_taskbar) {
  6133. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6134. // }
  6135. }
  6136. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6137. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6138. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6139. _userinfo = US.userInfo, //登录用户信息
  6140. _userid = US.userInfo.userid //登录用户id
  6141. let _iframe;
  6142. let _cid = cid,
  6143. _stage = stage,
  6144. _task = task,
  6145. _tool = tool;
  6146. var _jie = $$("div", {
  6147. "style": {
  6148. "position": "absolute",
  6149. "bottom": "50px",
  6150. "right": "50px",
  6151. "zIndex": "9999",
  6152. "backgroundColor": "#2268bc",
  6153. "color": "#fff",
  6154. "padding": "12px 20px",
  6155. "cursor": "pointer",
  6156. "borderRadius": "4px",
  6157. },
  6158. "innerHTML": "提交作业"
  6159. })
  6160. let aTool = ''
  6161. let _loading = document.createElement('div')
  6162. _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;"
  6163. // _loading.id = "";
  6164. let _lchild = document.createElement('div')
  6165. let _limg = document.createElement('img')
  6166. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6167. _limg.style = "width: 26px;margin-right: 10px;"
  6168. _lchild.appendChild(_limg)
  6169. let _lspan = document.createElement('span')
  6170. _lspan.innerHTML = "上传中..."
  6171. _lchild.appendChild(_lspan)
  6172. _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%);"
  6173. _loading.appendChild(_lchild)
  6174. let _box = $$('div', {
  6175. "style": {
  6176. "position": "relative",
  6177. "width": "100%",
  6178. "height": "100%",
  6179. },
  6180. })
  6181. _box.appendChild(_loading)
  6182. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6183. switch (str) {
  6184. case "whiteboard":
  6185. aTool = 1;
  6186. _iframe = $$("iframe", {
  6187. "frameborder": "no",
  6188. "border": "0",
  6189. "scrolling ": "no",
  6190. "style": {
  6191. "cssText": "border:0;width:100%;height:100%"
  6192. },
  6193. "src": "https://beta.iwb.cocorobo.cn/"
  6194. })
  6195. _box.appendChild(_iframe);
  6196. _box.appendChild(_jie);
  6197. _formdiv = new U.UF.UI.form(
  6198. "电子白板",
  6199. _box, {
  6200. "id": "whiteboard" + cid + stage + task + tool,
  6201. "style": {
  6202. "width": "90%",
  6203. "height": "90%",
  6204. "overflow": 'hidden'
  6205. },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, {
  6210. "style": {
  6211. "height": "36px"
  6212. }
  6213. }).form; //创建窗体
  6214. _taskbar = {
  6215. "id": str + _formdiv.id,
  6216. "style": {
  6217. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6218. },
  6219. "name": "电子白板",
  6220. "forms": _formdiv,
  6221. "click": function () {
  6222. U.MD.D.I.openApplication(str, obj, info);
  6223. }
  6224. }
  6225. break;
  6226. case "mind":
  6227. aTool = 3;
  6228. _iframe = $$("iframe", {
  6229. "frameborder": "no",
  6230. "border": "0",
  6231. "scrolling ": "no",
  6232. "style": {
  6233. "cssText": "border:0;width:100%;height:100%"
  6234. },
  6235. "src": "/kityminder-editor/dist/index.html"
  6236. })
  6237. _box.appendChild(_iframe);
  6238. _box.appendChild(_jie);
  6239. _formdiv = new U.UF.UI.form(
  6240. "思维导图",
  6241. _box, { //"/jsmind/example/demo.html"
  6242. "id": "mind" + cid + stage + task + tool,
  6243. "style": {
  6244. "width": "90%",
  6245. "height": "90%",
  6246. "overflow": 'hidden'
  6247. },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, {
  6252. "style": {
  6253. "height": "36px"
  6254. }
  6255. }).form; //创建窗体
  6256. _taskbar = {
  6257. "id": str + _formdiv.id,
  6258. "style": {
  6259. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6260. },
  6261. "name": "思维导图",
  6262. "forms": _formdiv,
  6263. "click": function () {
  6264. U.MD.D.I.openApplication(str, obj, info);
  6265. }
  6266. }
  6267. break;
  6268. case "MindMap":
  6269. aTool = 3;
  6270. _iframe = $$("iframe", {
  6271. "frameborder": "no",
  6272. "border": "0",
  6273. "scrolling ": "no",
  6274. "style": {
  6275. "cssText": "border:0;width:100%;height:100%"
  6276. },
  6277. "src": "//cloud.cocorobo.cn/mind/"
  6278. })
  6279. _box.appendChild(_iframe);
  6280. _box.appendChild(_jie);
  6281. _formdiv = new U.UF.UI.form(
  6282. "思维导图",
  6283. _box, { //"/jsmind/example/demo.html"
  6284. "id": "mind" + cid + stage + task + tool,
  6285. "style": {
  6286. "width": "90%",
  6287. "height": "90%",
  6288. "overflow": 'hidden'
  6289. },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, {
  6294. "style": {
  6295. "height": "36px"
  6296. }
  6297. }).form; //创建窗体
  6298. _taskbar = {
  6299. "id": str + _formdiv.id,
  6300. "style": {
  6301. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6302. },
  6303. "name": "思维导图",
  6304. "forms": _formdiv,
  6305. "click": function () {
  6306. U.MD.D.I.openApplication(str, obj, info);
  6307. }
  6308. }
  6309. break;
  6310. case "doc":
  6311. aTool = 6;
  6312. _iframe = $$("iframe", {
  6313. "frameborder": "no",
  6314. "border": "0",
  6315. "scrolling ": "no",
  6316. "style": {
  6317. "cssText": "border:0;width:100%;height:100%"
  6318. },
  6319. "src": "/Office/Word/WordEditArea.htm"
  6320. })
  6321. _box.appendChild(_iframe);
  6322. _box.appendChild(_jie);
  6323. _formdiv = new U.UF.UI.form(
  6324. "协同文档",
  6325. _box, {
  6326. "id": "doc" + cid + stage + task + tool,
  6327. "style": {
  6328. "width": "90%",
  6329. "height": "90%",
  6330. "overflow": 'hidden'
  6331. },
  6332. "onresize": function () { }
  6333. }, {
  6334. closecallback: function () { }
  6335. }, {
  6336. "style": {
  6337. "height": "36px"
  6338. }
  6339. }).form; //创建窗体
  6340. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6341. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6342. })
  6343. _taskbar = {
  6344. "id": str + _formdiv.id,
  6345. "style": {
  6346. "backgroundImage": "url(/img/icon/doc.png)"
  6347. },
  6348. "name": "协同文档",
  6349. "forms": _formdiv,
  6350. "click": function () {
  6351. U.MD.D.I.openApplication(str, obj, info);
  6352. }
  6353. }
  6354. break;
  6355. case "mindNetwork": //好友打开
  6356. aTool = 7;
  6357. _iframe = $$("iframe", {
  6358. "webkitallowfullscreen": "",
  6359. "mozallowfullscreen": "",
  6360. "allowfullscreen": "",
  6361. "frameborder": "no",
  6362. "border": "0",
  6363. "scrolling ": "no",
  6364. "style": {
  6365. "cssText": "border:0; width:100%; height:100%;"
  6366. },
  6367. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6368. })
  6369. _box.appendChild(_iframe);
  6370. _box.appendChild(_jie);
  6371. _formdiv = new U.UF.UI.form(
  6372. "思维网格",
  6373. _box, {
  6374. "id": "mindNetwork" + cid + stage + task + tool,
  6375. "style": {
  6376. "width": "90%",
  6377. "height": "90%",
  6378. "overflow": 'hidden'
  6379. },
  6380. "onresize": function () { }
  6381. }, {
  6382. closecallback: function () { }
  6383. }, {
  6384. "style": {
  6385. "height": "36px"
  6386. }
  6387. }).form; //创建窗体
  6388. _taskbar = {
  6389. "id": str + _formdiv.id,
  6390. "style": {
  6391. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6392. },
  6393. "name": "思维网格",
  6394. "forms": _formdiv,
  6395. "click": function () {
  6396. U.MD.D.I.openApplication(str, obj, info);
  6397. }
  6398. }
  6399. break;
  6400. case "courseDesign":
  6401. _iframe = $$("iframe", {
  6402. "webkitallowfullscreen": "",
  6403. "mozallowfullscreen": "",
  6404. "allowfullscreen": "",
  6405. "frameborder": "no",
  6406. "border": "0",
  6407. "scrolling ": "no",
  6408. "style": {
  6409. "cssText": "border:0; width:100%; height:100%;"
  6410. },
  6411. "src": "/course-design-vue"
  6412. })
  6413. _box.appendChild(_iframe);
  6414. _box.appendChild(_jie);
  6415. _formdiv = new U.UF.UI.form(
  6416. "项目设计",
  6417. _box, {
  6418. "id": "courseDesign" + cid + stage + task + tool,
  6419. "style": {
  6420. "width": "90%",
  6421. "height": "90%",
  6422. "overflow": 'hidden'
  6423. },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, {
  6428. "style": {
  6429. "height": "36px"
  6430. }
  6431. }).form; //创建窗体
  6432. _taskbar = {
  6433. "id": str + _formdiv.id,
  6434. "style": {
  6435. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6436. },
  6437. "name": "项目设计",
  6438. "forms": _formdiv,
  6439. "click": function () {
  6440. U.MD.D.I.openApplication(str, obj, info);
  6441. }
  6442. }
  6443. break;
  6444. }
  6445. const script1 = document.createElement("script");
  6446. script1.type = "text/javascript";
  6447. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6448. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6449. const script2 = document.createElement("script");
  6450. script2.type = "text/javascript";
  6451. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6452. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6453. const script3 = document.createElement("script");
  6454. script3.type = "text/javascript";
  6455. script3.charset = "UTF-8";
  6456. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6457. const script4 = document.createElement("script");
  6458. script4.type = "text/javascript";
  6459. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6460. script4.src = window.origin + "/js/Common/jietu2E.js";
  6461. if (_iframe) {
  6462. if (str == 'doc') {
  6463. _iframe = _formdiv.querySelector('iframe')
  6464. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6465. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6466. _iframe.contentWindow.document.body.appendChild(script1);
  6467. _iframe.contentWindow.document.body.appendChild(script2);
  6468. // _iframe.contentWindow.document.body.appendChild(script3);
  6469. _iframe.contentWindow.document.body.appendChild(script4);
  6470. })
  6471. if (onloadListener) {
  6472. _iframe.contentDocument.location.reload()
  6473. } else {
  6474. _iframe.contentDocument.location.reload()
  6475. }
  6476. } else if (str == 'courseDesign') {
  6477. U.UF.DL.iframeLoad(_iframe, function () {
  6478. // _iframe.contentWindow.U.MD.O.W.load();
  6479. // _iframe.contentWindow.document.body.appendChild(script1);
  6480. _iframe.contentWindow.document.body.appendChild(script2);
  6481. _iframe.contentWindow.document.body.appendChild(script4);
  6482. })
  6483. } else if (str == 'mind') {
  6484. _iframe = _formdiv.querySelector('iframe')
  6485. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6486. //
  6487. _iframe.contentWindow.document.body.appendChild(script1);
  6488. _iframe.contentWindow.document.body.appendChild(script2);
  6489. _iframe.contentWindow.document.body.appendChild(script4);
  6490. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6491. })
  6492. if (onloadListener) {
  6493. _iframe.contentDocument.location.reload()
  6494. } else {
  6495. _iframe.contentDocument.location.reload()
  6496. }
  6497. } else if (str == 'whiteboard') {
  6498. _iframe = _formdiv.querySelector('iframe')
  6499. let onloadListener = _iframe.onload = () => {
  6500. _iframe.contentWindow.document.body.appendChild(script1);
  6501. _iframe.contentWindow.document.body.appendChild(script2);
  6502. _iframe.contentWindow.document.body.appendChild(script4);
  6503. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6504. };
  6505. // if (onloadListener) {
  6506. // try {
  6507. // _iframe.src += "?cocorobo="+new Date().getTime()
  6508. // _iframe.contentWindow.document.location.reload()
  6509. // } catch (error) {
  6510. // }
  6511. // } else {
  6512. // _iframe.contentDocument.location.reload()
  6513. // }
  6514. } else {
  6515. _iframe.onload = () => {
  6516. _iframe.contentWindow.document.body.appendChild(script1);
  6517. _iframe.contentWindow.document.body.appendChild(script2);
  6518. // _iframe.contentWindow.document.body.appendChild(script3);
  6519. _iframe.contentWindow.document.body.appendChild(script4);
  6520. };
  6521. }
  6522. _jie.onclick = async () => {
  6523. let text = ''
  6524. if (aTool == 1) {
  6525. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6526. } else if (aTool == 6) {
  6527. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6528. } else if (aTool == 3) {
  6529. text = await U.MD.D.I.getEditorContent(_iframe);
  6530. }
  6531. _loading.style.display = 'flex'
  6532. console.log(_loading);
  6533. var _ajs = _iframe.contentWindow.document.createElement("script");
  6534. _ajs.type = "text/javascript";
  6535. _ajs.innerHTML =
  6536. // 'console.log(' + _loading + ');\n' +
  6537. 'var _js = document.createElement("script");\n' +
  6538. '_js.type="text/javascript";\n' +
  6539. '_js.charset="UTF-8";\n' +
  6540. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6541. "_js.onload = function(){\n" +
  6542. ' var a = document.getElementsByTagName("img")\n' +
  6543. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6544. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6545. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6546. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6547. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6548. "beforeUpload_shishi(file," +
  6549. "'" +
  6550. _userid +
  6551. "'" +
  6552. ", " +
  6553. "'" +
  6554. _cid +
  6555. "'" +
  6556. ", " +
  6557. "'" +
  6558. _stage +
  6559. "'" +
  6560. ", " +
  6561. "'" +
  6562. _task +
  6563. "'" +
  6564. ", " +
  6565. "'" +
  6566. _tool +
  6567. "'" +
  6568. ", " +
  6569. "'" +
  6570. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6571. "'" +
  6572. ", " +
  6573. "'" +
  6574. aTool +
  6575. "'" +
  6576. ", " +
  6577. "`" +
  6578. text +
  6579. "`" +
  6580. ")\n" +
  6581. " });\n" +
  6582. "}\n" +
  6583. "document.head.appendChild(_js);\n";
  6584. _iframe.contentWindow.document.head.appendChild(_ajs);
  6585. }
  6586. }
  6587. //U.MD.D.I.openClick(str);
  6588. //如果有任务栏信息
  6589. // if (_taskbar) {
  6590. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6591. // }
  6592. }
  6593. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6594. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6595. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6596. _userid = student.userid, //登录用户id
  6597. _username = student.student //用户名字
  6598. let _iframe;
  6599. let _cid = cid,
  6600. _stage = stage,
  6601. _task = task,
  6602. _tool = tool;
  6603. var _jie = $$("div", {
  6604. "style": {
  6605. "position": "absolute",
  6606. "bottom": "50px",
  6607. "right": "50px",
  6608. "zIndex": "9999",
  6609. "backgroundColor": "#2268bc",
  6610. "color": "#fff",
  6611. "padding": "12px 20px",
  6612. "cursor": "pointer",
  6613. "borderRadius": "4px",
  6614. },
  6615. "innerHTML": "提交作业"
  6616. })
  6617. let aTool = ''
  6618. let _loading = document.createElement('div')
  6619. _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;"
  6620. // _loading.id = "";
  6621. let _lchild = document.createElement('div')
  6622. let _limg = document.createElement('img')
  6623. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6624. _limg.style = "width: 26px;margin-right: 10px;"
  6625. _lchild.appendChild(_limg)
  6626. let _lspan = document.createElement('span')
  6627. _lspan.innerHTML = "上传中..."
  6628. _lchild.appendChild(_lspan)
  6629. _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%);"
  6630. _loading.appendChild(_lchild)
  6631. var _box = $$('div', {
  6632. "style": {
  6633. "position": "relative",
  6634. "width": "100%",
  6635. "height": "100%",
  6636. },
  6637. })
  6638. _box.appendChild(_loading)
  6639. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6640. switch (str) {
  6641. case "whiteboard":
  6642. aTool = 1;
  6643. _iframe = $$("iframe", {
  6644. "frameborder": "no",
  6645. "border": "0",
  6646. "scrolling ": "no",
  6647. "style": {
  6648. "cssText": "border:0;width:100%;height:100%"
  6649. },
  6650. "src": "https://beta.iwb.cocorobo.cn/"
  6651. })
  6652. _box.appendChild(_iframe);
  6653. _box.appendChild(_jie);
  6654. _formdiv = new U.UF.UI.form(
  6655. "电子白板-" + _username,
  6656. _box, {
  6657. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6658. "style": {
  6659. "width": "90%",
  6660. "height": "90%",
  6661. "overflow": 'hidden'
  6662. },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, {
  6667. "style": {
  6668. "height": "36px"
  6669. }
  6670. }).form; //创建窗体
  6671. _taskbar = {
  6672. "id": str + _formdiv.id,
  6673. "style": {
  6674. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6675. },
  6676. "name": "电子白板",
  6677. "forms": _formdiv,
  6678. "click": function () {
  6679. U.MD.D.I.openApplication(str, obj, info);
  6680. }
  6681. }
  6682. break;
  6683. case "mind":
  6684. aTool = 3;
  6685. _iframe = $$("iframe", {
  6686. "frameborder": "no",
  6687. "border": "0",
  6688. "scrolling ": "no",
  6689. "style": {
  6690. "cssText": "border:0;width:100%;height:100%"
  6691. },
  6692. "src": "/kityminder-editor/dist/index.html"
  6693. })
  6694. _box.appendChild(_iframe);
  6695. _box.appendChild(_jie);
  6696. _formdiv = new U.UF.UI.form(
  6697. "思维导图-" + _username,
  6698. _box, { //"/jsmind/example/demo.html"
  6699. "id": "mind" + cid + stage + task + tool + _userid,
  6700. "style": {
  6701. "width": "90%",
  6702. "height": "90%",
  6703. "overflow": 'hidden'
  6704. },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, {
  6709. "style": {
  6710. "height": "36px"
  6711. }
  6712. }).form; //创建窗体
  6713. _taskbar = {
  6714. "id": str + _formdiv.id,
  6715. "style": {
  6716. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6717. },
  6718. "name": "思维导图",
  6719. "forms": _formdiv,
  6720. "click": function () {
  6721. U.MD.D.I.openApplication(str, obj, info);
  6722. }
  6723. }
  6724. break;
  6725. case "MindMap":
  6726. aTool = 3;
  6727. _iframe = $$("iframe", {
  6728. "frameborder": "no",
  6729. "border": "0",
  6730. "scrolling ": "no",
  6731. "style": {
  6732. "cssText": "border:0;width:100%;height:100%"
  6733. },
  6734. "src": "//cloud.cocorobo.cn/mind/"
  6735. })
  6736. _box.appendChild(_iframe);
  6737. _box.appendChild(_jie);
  6738. _formdiv = new U.UF.UI.form(
  6739. "思维导图-" + _username,
  6740. _box, { //"/jsmind/example/demo.html"
  6741. "id": "mind" + cid + stage + task + tool + _userid,
  6742. "style": {
  6743. "width": "90%",
  6744. "height": "90%",
  6745. "overflow": 'hidden'
  6746. },
  6747. "onresize": function () { }
  6748. }, {
  6749. closecallback: function () { }
  6750. }, {
  6751. "style": {
  6752. "height": "36px"
  6753. }
  6754. }).form; //创建窗体
  6755. _taskbar = {
  6756. "id": str + _formdiv.id,
  6757. "style": {
  6758. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6759. },
  6760. "name": "思维导图",
  6761. "forms": _formdiv,
  6762. "click": function () {
  6763. U.MD.D.I.openApplication(str, obj, info);
  6764. }
  6765. }
  6766. break;
  6767. case "doc":
  6768. aTool = 6;
  6769. _iframe = $$("iframe", {
  6770. "frameborder": "no",
  6771. "border": "0",
  6772. "scrolling ": "no",
  6773. "style": {
  6774. "cssText": "border:0;width:100%;height:100%"
  6775. },
  6776. "src": "/Office/Word/WordEditArea.htm"
  6777. })
  6778. _box.appendChild(_iframe);
  6779. _box.appendChild(_jie);
  6780. _formdiv = new U.UF.UI.form(
  6781. "协同文档-" + _username,
  6782. _box, {
  6783. "id": "doc" + cid + stage + task + tool + _userid,
  6784. "style": {
  6785. "width": "90%",
  6786. "height": "90%",
  6787. "overflow": 'hidden'
  6788. },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, {
  6793. "style": {
  6794. "height": "36px"
  6795. }
  6796. }).form; //创建窗体
  6797. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6798. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6799. })
  6800. _taskbar = {
  6801. "id": str + _formdiv.id,
  6802. "style": {
  6803. "backgroundImage": "url(/img/icon/doc.png)"
  6804. },
  6805. "name": "协同文档",
  6806. "forms": _formdiv,
  6807. "click": function () {
  6808. U.MD.D.I.openApplication(str, obj, info);
  6809. }
  6810. }
  6811. break;
  6812. case "mindNetwork": //好友打开
  6813. aTool = 7;
  6814. _iframe = $$("iframe", {
  6815. "webkitallowfullscreen": "",
  6816. "mozallowfullscreen": "",
  6817. "allowfullscreen": "",
  6818. "frameborder": "no",
  6819. "border": "0",
  6820. "scrolling ": "no",
  6821. "style": {
  6822. "cssText": "border:0; width:100%; height:100%;"
  6823. },
  6824. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6825. })
  6826. _box.appendChild(_iframe);
  6827. _box.appendChild(_jie);
  6828. _formdiv = new U.UF.UI.form(
  6829. "思维网格-" + _username,
  6830. _box, {
  6831. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6832. "style": {
  6833. "width": "90%",
  6834. "height": "90%",
  6835. "overflow": 'hidden'
  6836. },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, {
  6841. "style": {
  6842. "height": "36px"
  6843. }
  6844. }).form; //创建窗体
  6845. _taskbar = {
  6846. "id": str + _formdiv.id,
  6847. "style": {
  6848. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6849. },
  6850. "name": "思维网格",
  6851. "forms": _formdiv,
  6852. "click": function () {
  6853. U.MD.D.I.openApplication(str, obj, info);
  6854. }
  6855. }
  6856. break;
  6857. case "courseDesign":
  6858. _iframe = $$("iframe", {
  6859. "webkitallowfullscreen": "",
  6860. "mozallowfullscreen": "",
  6861. "allowfullscreen": "",
  6862. "frameborder": "no",
  6863. "border": "0",
  6864. "scrolling ": "no",
  6865. "style": {
  6866. "cssText": "border:0; width:100%; height:100%;"
  6867. },
  6868. "src": "/course-design-vue"
  6869. })
  6870. _box.appendChild(_iframe);
  6871. _box.appendChild(_jie);
  6872. _formdiv = new U.UF.UI.form(
  6873. "项目设计-" + _username,
  6874. _box, {
  6875. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6876. "style": {
  6877. "width": "90%",
  6878. "height": "90%",
  6879. "overflow": 'hidden'
  6880. },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, {
  6885. "style": {
  6886. "height": "36px"
  6887. }
  6888. }).form; //创建窗体
  6889. _taskbar = {
  6890. "id": str + _formdiv.id,
  6891. "style": {
  6892. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6893. },
  6894. "name": "项目设计",
  6895. "forms": _formdiv,
  6896. "click": function () {
  6897. U.MD.D.I.openApplication(str, obj, info);
  6898. }
  6899. }
  6900. break;
  6901. }
  6902. const script1 = document.createElement("script");
  6903. script1.type = "text/javascript";
  6904. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6905. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6906. const script2 = document.createElement("script");
  6907. script2.type = "text/javascript";
  6908. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6909. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6910. const script3 = document.createElement("script");
  6911. script3.type = "text/javascript";
  6912. script3.charset = "UTF-8";
  6913. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6914. const script4 = document.createElement("script");
  6915. script4.type = "text/javascript";
  6916. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6917. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6918. if (_iframe) {
  6919. if (str == 'doc') {
  6920. _iframe = _formdiv.querySelector('iframe')
  6921. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6922. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6923. _iframe.contentWindow.document.body.appendChild(script1);
  6924. _iframe.contentWindow.document.body.appendChild(script2);
  6925. // _iframe.contentWindow.document.body.appendChild(script3);
  6926. _iframe.contentWindow.document.body.appendChild(script4);
  6927. })
  6928. if (onloadListener) {
  6929. _iframe.contentDocument.location.reload()
  6930. } else {
  6931. _iframe.contentDocument.location.reload()
  6932. }
  6933. } else if (str == 'courseDesign') {
  6934. U.UF.DL.iframeLoad(_iframe, function () {
  6935. // _iframe.contentWindow.U.MD.O.W.load();
  6936. // _iframe.contentWindow.document.body.appendChild(script1);
  6937. _iframe.contentWindow.document.body.appendChild(script2);
  6938. _iframe.contentWindow.document.body.appendChild(script4);
  6939. })
  6940. } else if (str == 'mind') {
  6941. _iframe = _formdiv.querySelector('iframe')
  6942. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6943. //
  6944. _iframe.contentWindow.document.body.appendChild(script1);
  6945. _iframe.contentWindow.document.body.appendChild(script2);
  6946. _iframe.contentWindow.document.body.appendChild(script4);
  6947. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6948. })
  6949. if (onloadListener) {
  6950. _iframe.contentDocument.location.reload()
  6951. } else {
  6952. _iframe.contentDocument.location.reload()
  6953. }
  6954. } else if (str == 'whiteboard') {
  6955. _iframe = _formdiv.querySelector('iframe')
  6956. let onloadListener = _iframe.onload = () => {
  6957. _iframe.contentWindow.document.body.appendChild(script1);
  6958. _iframe.contentWindow.document.body.appendChild(script2);
  6959. _iframe.contentWindow.document.body.appendChild(script4);
  6960. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6961. };
  6962. // if (onloadListener) {
  6963. // try {
  6964. // _iframe.src += "?cocorobo="+new Date().getTime()
  6965. // _iframe.contentWindow.document.location.reload()
  6966. // } catch (error) {
  6967. // }
  6968. // } else {
  6969. // _iframe.contentDocument.location.reload()
  6970. // }
  6971. } else {
  6972. _iframe.onload = () => {
  6973. _iframe.contentWindow.document.body.appendChild(script1);
  6974. _iframe.contentWindow.document.body.appendChild(script2);
  6975. // _iframe.contentWindow.document.body.appendChild(script3);
  6976. _iframe.contentWindow.document.body.appendChild(script4);
  6977. };
  6978. }
  6979. _jie.onclick = async () => {
  6980. let text = ''
  6981. if (aTool == 1) {
  6982. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6983. } else if (aTool == 6) {
  6984. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6985. } else if (aTool == 3) {
  6986. text = await U.MD.D.I.getEditorContent(_iframe);
  6987. }
  6988. _loading.style.display = 'flex'
  6989. console.log(_loading);
  6990. var _ajs = _iframe.contentWindow.document.createElement("script");
  6991. _ajs.type = "text/javascript";
  6992. _ajs.innerHTML =
  6993. // 'console.log(' + _loading + ');\n' +
  6994. 'var _js = document.createElement("script");\n' +
  6995. '_js.type="text/javascript";\n' +
  6996. '_js.charset="UTF-8";\n' +
  6997. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6998. "_js.onload = function(){\n" +
  6999. ' var a = document.getElementsByTagName("img")\n' +
  7000. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7001. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7002. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7003. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7004. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7005. "beforeUpload_shishi(file," +
  7006. "'" +
  7007. _userid +
  7008. "'" +
  7009. ", " +
  7010. "'" +
  7011. _cid +
  7012. "'" +
  7013. ", " +
  7014. "'" +
  7015. _stage +
  7016. "'" +
  7017. ", " +
  7018. "'" +
  7019. _task +
  7020. "'" +
  7021. ", " +
  7022. "'" +
  7023. _tool +
  7024. "'" +
  7025. ", " +
  7026. "'" +
  7027. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7028. "'" +
  7029. ", " +
  7030. "'" +
  7031. aTool +
  7032. "'" +
  7033. ", " +
  7034. "`" +
  7035. text +
  7036. "`" +
  7037. ")\n" +
  7038. " });\n" +
  7039. "}\n" +
  7040. "document.head.appendChild(_js);\n";
  7041. _iframe.contentWindow.document.head.appendChild(_ajs);
  7042. }
  7043. }
  7044. }
  7045. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7046. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7047. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7048. _userid = student.userid, //登录用户id
  7049. _username = student.student //用户名字
  7050. let _iframe;
  7051. let _cid = cid,
  7052. _stage = stage,
  7053. _task = task,
  7054. _tool = tool;
  7055. var _jie = $$("div", {
  7056. "style": {
  7057. "position": "absolute",
  7058. "bottom": "50px",
  7059. "right": "50px",
  7060. "zIndex": "9999",
  7061. "backgroundColor": "#2268bc",
  7062. "color": "#fff",
  7063. "padding": "12px 20px",
  7064. "cursor": "pointer",
  7065. "borderRadius": "4px",
  7066. },
  7067. "innerHTML": "提交作业"
  7068. })
  7069. let aTool = ''
  7070. let _loading = document.createElement('div')
  7071. _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;"
  7072. // _loading.id = "";
  7073. let _lchild = document.createElement('div')
  7074. let _limg = document.createElement('img')
  7075. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7076. _limg.style = "width: 26px;margin-right: 10px;"
  7077. _lchild.appendChild(_limg)
  7078. let _lspan = document.createElement('span')
  7079. _lspan.innerHTML = "上传中..."
  7080. _lchild.appendChild(_lspan)
  7081. _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%);"
  7082. _loading.appendChild(_lchild)
  7083. var _box = $$('div', {
  7084. "style": {
  7085. "position": "relative",
  7086. "width": "100%",
  7087. "height": "100%",
  7088. },
  7089. })
  7090. _box.appendChild(_loading)
  7091. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7092. switch (str) {
  7093. case "whiteboard":
  7094. aTool = 1;
  7095. _iframe = $$("iframe", {
  7096. "frameborder": "no",
  7097. "border": "0",
  7098. "scrolling ": "no",
  7099. "style": {
  7100. "cssText": "border:0;width:100%;height:100%"
  7101. },
  7102. "src": "https://beta.iwb.cocorobo.cn/"
  7103. })
  7104. _box.appendChild(_iframe);
  7105. _box.appendChild(_jie);
  7106. _formdiv = new U.UF.UI.form(
  7107. "电子白板-" + _username,
  7108. _box, {
  7109. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7110. "style": {
  7111. "width": "90%",
  7112. "height": "90%",
  7113. "overflow": 'hidden'
  7114. },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, {
  7119. "style": {
  7120. "height": "36px"
  7121. }
  7122. }).form; //创建窗体
  7123. _taskbar = {
  7124. "id": str + _formdiv.id,
  7125. "style": {
  7126. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7127. },
  7128. "name": "电子白板",
  7129. "forms": _formdiv,
  7130. "click": function () {
  7131. U.MD.D.I.openApplication(str, obj, info);
  7132. }
  7133. }
  7134. break;
  7135. case "mind":
  7136. aTool = 3;
  7137. _iframe = $$("iframe", {
  7138. "frameborder": "no",
  7139. "border": "0",
  7140. "scrolling ": "no",
  7141. "style": {
  7142. "cssText": "border:0;width:100%;height:100%"
  7143. },
  7144. "src": "/kityminder-editor/dist/index.html"
  7145. })
  7146. _box.appendChild(_iframe);
  7147. _box.appendChild(_jie);
  7148. _formdiv = new U.UF.UI.form(
  7149. "思维导图-" + _username,
  7150. _box, { //"/jsmind/example/demo.html"
  7151. "id": "mind" + cid + stage + task + tool + _userid,
  7152. "style": {
  7153. "width": "90%",
  7154. "height": "90%",
  7155. "overflow": 'hidden'
  7156. },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, {
  7161. "style": {
  7162. "height": "36px"
  7163. }
  7164. }).form; //创建窗体
  7165. _taskbar = {
  7166. "id": str + _formdiv.id,
  7167. "style": {
  7168. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7169. },
  7170. "name": "思维导图",
  7171. "forms": _formdiv,
  7172. "click": function () {
  7173. U.MD.D.I.openApplication(str, obj, info);
  7174. }
  7175. }
  7176. break;
  7177. case "MindMap":
  7178. aTool = 3;
  7179. _iframe = $$("iframe", {
  7180. "frameborder": "no",
  7181. "border": "0",
  7182. "scrolling ": "no",
  7183. "style": {
  7184. "cssText": "border:0;width:100%;height:100%"
  7185. },
  7186. "src": "//cloud.cocorobo.cn/mind/"
  7187. })
  7188. _box.appendChild(_iframe);
  7189. _box.appendChild(_jie);
  7190. _formdiv = new U.UF.UI.form(
  7191. "思维导图-" + _username,
  7192. _box, { //"/jsmind/example/demo.html"
  7193. "id": "mind" + cid + stage + task + tool + _userid,
  7194. "style": {
  7195. "width": "90%",
  7196. "height": "90%",
  7197. "overflow": 'hidden'
  7198. },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, {
  7203. "style": {
  7204. "height": "36px"
  7205. }
  7206. }).form; //创建窗体
  7207. _taskbar = {
  7208. "id": str + _formdiv.id,
  7209. "style": {
  7210. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7211. },
  7212. "name": "思维导图",
  7213. "forms": _formdiv,
  7214. "click": function () {
  7215. U.MD.D.I.openApplication(str, obj, info);
  7216. }
  7217. }
  7218. break;
  7219. case "doc":
  7220. aTool = 6;
  7221. _iframe = $$("iframe", {
  7222. "frameborder": "no",
  7223. "border": "0",
  7224. "scrolling ": "no",
  7225. "style": {
  7226. "cssText": "border:0;width:100%;height:100%"
  7227. },
  7228. "src": "/Office/Word/WordEditArea.htm"
  7229. })
  7230. _box.appendChild(_iframe);
  7231. _box.appendChild(_jie);
  7232. _formdiv = new U.UF.UI.form(
  7233. "协同文档-" + _username,
  7234. _box, {
  7235. "id": "doc" + cid + stage + task + tool + _userid,
  7236. "style": {
  7237. "width": "90%",
  7238. "height": "90%",
  7239. "overflow": 'hidden'
  7240. },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, {
  7245. "style": {
  7246. "height": "36px"
  7247. }
  7248. }).form; //创建窗体
  7249. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7250. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7251. })
  7252. _taskbar = {
  7253. "id": str + _formdiv.id,
  7254. "style": {
  7255. "backgroundImage": "url(/img/icon/doc.png)"
  7256. },
  7257. "name": "协同文档",
  7258. "forms": _formdiv,
  7259. "click": function () {
  7260. U.MD.D.I.openApplication(str, obj, info);
  7261. }
  7262. }
  7263. break;
  7264. case "mindNetwork": //好友打开
  7265. aTool = 7;
  7266. _iframe = $$("iframe", {
  7267. "webkitallowfullscreen": "",
  7268. "mozallowfullscreen": "",
  7269. "allowfullscreen": "",
  7270. "frameborder": "no",
  7271. "border": "0",
  7272. "scrolling ": "no",
  7273. "style": {
  7274. "cssText": "border:0; width:100%; height:100%;"
  7275. },
  7276. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7277. })
  7278. _box.appendChild(_iframe);
  7279. _box.appendChild(_jie);
  7280. _formdiv = new U.UF.UI.form(
  7281. "思维网格-" + _username,
  7282. _box, {
  7283. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7284. "style": {
  7285. "width": "90%",
  7286. "height": "90%",
  7287. "overflow": 'hidden'
  7288. },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, {
  7293. "style": {
  7294. "height": "36px"
  7295. }
  7296. }).form; //创建窗体
  7297. _taskbar = {
  7298. "id": str + _formdiv.id,
  7299. "style": {
  7300. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7301. },
  7302. "name": "思维网格",
  7303. "forms": _formdiv,
  7304. "click": function () {
  7305. U.MD.D.I.openApplication(str, obj, info);
  7306. }
  7307. }
  7308. break;
  7309. case "courseDesign":
  7310. _iframe = $$("iframe", {
  7311. "webkitallowfullscreen": "",
  7312. "mozallowfullscreen": "",
  7313. "allowfullscreen": "",
  7314. "frameborder": "no",
  7315. "border": "0",
  7316. "scrolling ": "no",
  7317. "style": {
  7318. "cssText": "border:0; width:100%; height:100%;"
  7319. },
  7320. "src": "/course-design-vue"
  7321. })
  7322. _box.appendChild(_iframe);
  7323. _box.appendChild(_jie);
  7324. _formdiv = new U.UF.UI.form(
  7325. "项目设计-" + _username,
  7326. _box, {
  7327. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7328. "style": {
  7329. "width": "90%",
  7330. "height": "90%",
  7331. "overflow": 'hidden'
  7332. },
  7333. "onresize": function () { }
  7334. }, {
  7335. closecallback: function () { }
  7336. }, {
  7337. "style": {
  7338. "height": "36px"
  7339. }
  7340. }).form; //创建窗体
  7341. _taskbar = {
  7342. "id": str + _formdiv.id,
  7343. "style": {
  7344. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7345. },
  7346. "name": "项目设计",
  7347. "forms": _formdiv,
  7348. "click": function () {
  7349. U.MD.D.I.openApplication(str, obj, info);
  7350. }
  7351. }
  7352. break;
  7353. }
  7354. const script1 = document.createElement("script");
  7355. script1.type = "text/javascript";
  7356. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7357. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7358. const script2 = document.createElement("script");
  7359. script2.type = "text/javascript";
  7360. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7361. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7362. const script3 = document.createElement("script");
  7363. script3.type = "text/javascript";
  7364. script3.charset = "UTF-8";
  7365. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7366. const script4 = document.createElement("script");
  7367. script4.type = "text/javascript";
  7368. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7369. script4.src = window.origin + "/js/Common/jietu2E.js";
  7370. if (_iframe) {
  7371. if (str == 'doc') {
  7372. _iframe = _formdiv.querySelector('iframe')
  7373. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7374. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7375. _iframe.contentWindow.document.body.appendChild(script1);
  7376. _iframe.contentWindow.document.body.appendChild(script2);
  7377. // _iframe.contentWindow.document.body.appendChild(script3);
  7378. _iframe.contentWindow.document.body.appendChild(script4);
  7379. })
  7380. if (onloadListener) {
  7381. _iframe.contentDocument.location.reload()
  7382. } else {
  7383. _iframe.contentDocument.location.reload()
  7384. }
  7385. } else if (str == 'courseDesign') {
  7386. U.UF.DL.iframeLoad(_iframe, function () {
  7387. // _iframe.contentWindow.U.MD.O.W.load();
  7388. // _iframe.contentWindow.document.body.appendChild(script1);
  7389. _iframe.contentWindow.document.body.appendChild(script2);
  7390. _iframe.contentWindow.document.body.appendChild(script4);
  7391. })
  7392. } else if (str == 'mind') {
  7393. _iframe = _formdiv.querySelector('iframe')
  7394. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7395. //
  7396. _iframe.contentWindow.document.body.appendChild(script1);
  7397. _iframe.contentWindow.document.body.appendChild(script2);
  7398. _iframe.contentWindow.document.body.appendChild(script4);
  7399. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7400. })
  7401. if (onloadListener) {
  7402. _iframe.contentDocument.location.reload()
  7403. } else {
  7404. _iframe.contentDocument.location.reload()
  7405. }
  7406. } else if (str == 'whiteboard') {
  7407. _iframe = _formdiv.querySelector('iframe')
  7408. let onloadListener = _iframe.onload = () => {
  7409. _iframe.contentWindow.document.body.appendChild(script1);
  7410. _iframe.contentWindow.document.body.appendChild(script2);
  7411. _iframe.contentWindow.document.body.appendChild(script4);
  7412. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7413. };
  7414. // if (onloadListener) {
  7415. // try {
  7416. // _iframe.src += "?cocorobo="+new Date().getTime()
  7417. // _iframe.contentWindow.document.location.reload()
  7418. // } catch (error) {
  7419. // }
  7420. // } else {
  7421. // _iframe.contentDocument.location.reload()
  7422. // }
  7423. } else {
  7424. _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. // _iframe.contentWindow.document.body.appendChild(script3);
  7428. _iframe.contentWindow.document.body.appendChild(script4);
  7429. };
  7430. }
  7431. _jie.onclick = async () => {
  7432. let text = ''
  7433. if (aTool == 1) {
  7434. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7435. } else if (aTool == 6) {
  7436. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7437. } else if (aTool == 3) {
  7438. text = await U.MD.D.I.getEditorContent(_iframe);
  7439. }
  7440. _loading.style.display = 'flex'
  7441. console.log(_loading);
  7442. var _ajs = _iframe.contentWindow.document.createElement("script");
  7443. _ajs.type = "text/javascript";
  7444. _ajs.innerHTML =
  7445. // 'console.log(' + _loading + ');\n' +
  7446. 'var _js = document.createElement("script");\n' +
  7447. '_js.type="text/javascript";\n' +
  7448. '_js.charset="UTF-8";\n' +
  7449. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7450. "_js.onload = function(){\n" +
  7451. ' var a = document.getElementsByTagName("img")\n' +
  7452. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7453. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7454. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7455. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7456. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7457. "beforeUpload_shishi(file," +
  7458. "'" +
  7459. _userid +
  7460. "'" +
  7461. ", " +
  7462. "'" +
  7463. _cid +
  7464. "'" +
  7465. ", " +
  7466. "'" +
  7467. _stage +
  7468. "'" +
  7469. ", " +
  7470. "'" +
  7471. _task +
  7472. "'" +
  7473. ", " +
  7474. "'" +
  7475. _tool +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. aTool +
  7484. "'" +
  7485. ", " +
  7486. "`" +
  7487. text +
  7488. "`" +
  7489. ")\n" +
  7490. " });\n" +
  7491. "}\n" +
  7492. "document.head.appendChild(_js);\n";
  7493. _iframe.contentWindow.document.head.appendChild(_ajs);
  7494. }
  7495. }
  7496. }
  7497. U.MD.D.I.getEditorContent = function (iframe) {
  7498. return new Promise((resolve, reject) => {
  7499. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7500. console.log(content);
  7501. resolve(content)
  7502. });
  7503. });
  7504. }
  7505. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7506. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7507. // if (res.value[0].length > 0) {
  7508. // // resolve(res.value[0][0].text);
  7509. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7510. // $(fileInput).val('');
  7511. // });
  7512. // }
  7513. // }, [], { "type": "GET", "withCredentials": true });
  7514. var xmlhttp;
  7515. var Mac, Sn, DeviceId
  7516. if (window.XMLHttpRequest) {
  7517. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7518. xmlhttp = new XMLHttpRequest();
  7519. } else {
  7520. // IE6, IE5 浏览器执行代码
  7521. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7522. }
  7523. xmlhttp.onreadystatechange = function () {
  7524. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7525. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7526. // resolve(res.value[0][0].text);
  7527. if (type == '2') {
  7528. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7529. } else if (type == '3') {
  7530. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7531. }
  7532. } else {
  7533. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7534. }
  7535. }
  7536. }
  7537. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7538. xmlhttp.send();
  7539. }
  7540. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7541. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7542. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7543. _userinfo = US.userInfo, //登录用户信息
  7544. _userid = US.userInfo.userid //登录用户id
  7545. let _iframe;
  7546. let _cid = cid,
  7547. _stage = stage,
  7548. _task = task,
  7549. _tool = tool;
  7550. var _jie = $$("div", {
  7551. "style": {
  7552. "position": "absolute",
  7553. "bottom": "50px",
  7554. "right": "50px",
  7555. "zIndex": "9999",
  7556. "backgroundColor": "#2268bc",
  7557. "color": "#fff",
  7558. "padding": "12px 20px",
  7559. "cursor": "pointer",
  7560. "borderRadius": "4px",
  7561. },
  7562. "innerHTML": "确认并提交"
  7563. })
  7564. let aTool = ''
  7565. let _loading = document.createElement('div')
  7566. _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;"
  7567. // _loading.id = "";
  7568. let _lchild = document.createElement('div')
  7569. let _limg = document.createElement('img')
  7570. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7571. _limg.style = "width: 26px;margin-right: 10px;"
  7572. _lchild.appendChild(_limg)
  7573. let _lspan = document.createElement('span')
  7574. _lspan.innerHTML = "上传中..."
  7575. _lchild.appendChild(_lspan)
  7576. _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%);"
  7577. _loading.appendChild(_lchild)
  7578. var _box = $$('div', {
  7579. "style": {
  7580. "position": "relative",
  7581. "width": "100%",
  7582. "height": "100%",
  7583. },
  7584. })
  7585. _box.appendChild(_loading)
  7586. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7587. switch (str) {
  7588. case "whiteboard":
  7589. aTool = 1;
  7590. _iframe = $$("iframe", {
  7591. "frameborder": "no",
  7592. "border": "0",
  7593. "scrolling ": "no",
  7594. "style": {
  7595. "cssText": "border:0;width:100%;height:100%"
  7596. },
  7597. "src": "https://beta.iwb.cocorobo.cn/"
  7598. })
  7599. _box.appendChild(_iframe);
  7600. _box.appendChild(_jie);
  7601. _formdiv = new U.UF.UI.form(
  7602. "电子白板",
  7603. _box, {
  7604. "id": "whiteboards" + cid + stage + task + tool,
  7605. "style": {
  7606. "width": "90%",
  7607. "height": "90%",
  7608. "overflow": 'hidden'
  7609. },
  7610. "onresize": function () { }
  7611. }, {
  7612. closecallback: function () { }
  7613. }, {
  7614. "style": {
  7615. "height": "36px"
  7616. }
  7617. }).form; //创建窗体
  7618. _taskbar = {
  7619. "id": str + _formdiv.id,
  7620. "style": {
  7621. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7622. },
  7623. "name": "电子白板",
  7624. "forms": _formdiv,
  7625. "click": function () {
  7626. U.MD.D.I.openApplication(str, obj, info);
  7627. }
  7628. }
  7629. break;
  7630. case "mind":
  7631. aTool = 3;
  7632. _iframe = $$("iframe", {
  7633. "frameborder": "no",
  7634. "border": "0",
  7635. "scrolling ": "no",
  7636. "style": {
  7637. "cssText": "border:0;width:100%;height:100%"
  7638. },
  7639. "src": "/kityminder-editor/dist/index.html"
  7640. });
  7641. _box.appendChild(_iframe);
  7642. _box.appendChild(_jie);
  7643. _formdiv = new U.UF.UI.form(
  7644. "思维导图",
  7645. _box, { //"/jsmind/example/demo.html"
  7646. "id": "minds" + cid + stage + task + tool,
  7647. "style": {
  7648. "width": "90%",
  7649. "height": "90%",
  7650. "overflow": 'hidden'
  7651. },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, {
  7656. "style": {
  7657. "height": "36px"
  7658. }
  7659. }).form; //创建窗体
  7660. _taskbar = {
  7661. "id": str + _formdiv.id,
  7662. "style": {
  7663. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7664. },
  7665. "name": "思维导图",
  7666. "forms": _formdiv,
  7667. "click": function () {
  7668. U.MD.D.I.openApplication(str, obj, info);
  7669. }
  7670. }
  7671. break;
  7672. case "doc":
  7673. aTool = 6;
  7674. _iframe = $$("iframe", {
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0;width:100%;height:100%"
  7680. },
  7681. "src": "/Office/Word/WordEditArea.htm"
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "协同文档",
  7687. _box, {
  7688. "id": "docs" + cid + stage + task + tool,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7703. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7704. })
  7705. _taskbar = {
  7706. "id": str + _formdiv.id,
  7707. "style": {
  7708. "backgroundImage": "url(/img/icon/doc.png)"
  7709. },
  7710. "name": "协同文档",
  7711. "forms": _formdiv,
  7712. "click": function () {
  7713. U.MD.D.I.openApplication(str, obj, info);
  7714. }
  7715. }
  7716. break;
  7717. }
  7718. const script1 = document.createElement("script");
  7719. script1.type = "text/javascript";
  7720. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7721. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7722. const script2 = document.createElement("script");
  7723. script2.type = "text/javascript";
  7724. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7725. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7726. const script3 = document.createElement("script");
  7727. script3.type = "text/javascript";
  7728. script3.charset = "UTF-8";
  7729. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7730. const script4 = document.createElement("script");
  7731. script4.type = "text/javascript";
  7732. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7733. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7734. if (_iframe) {
  7735. if (str == 'doc') {
  7736. _iframe = _formdiv.querySelector('iframe')
  7737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7738. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7739. _iframe.contentWindow.document.body.appendChild(script1);
  7740. _iframe.contentWindow.document.body.appendChild(script2);
  7741. // _iframe.contentWindow.document.body.appendChild(script3);
  7742. _iframe.contentWindow.document.body.appendChild(script4);
  7743. })
  7744. if (onloadListener) {
  7745. _iframe.contentDocument.location.reload()
  7746. } else {
  7747. _iframe.contentDocument.location.reload()
  7748. }
  7749. } else if (str == 'mind') {
  7750. _iframe = _formdiv.querySelector('iframe')
  7751. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7752. _iframe.contentWindow.document.body.appendChild(script1);
  7753. _iframe.contentWindow.document.body.appendChild(script2);
  7754. _iframe.contentWindow.document.body.appendChild(script4);
  7755. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7756. })
  7757. if (onloadListener) {
  7758. _iframe.contentDocument.location.reload()
  7759. } else {
  7760. _iframe.contentDocument.location.reload()
  7761. }
  7762. } else {
  7763. _iframe.onload = () => {
  7764. _iframe.contentWindow.document.body.appendChild(script1);
  7765. _iframe.contentWindow.document.body.appendChild(script2);
  7766. // _iframe.contentWindow.document.body.appendChild(script3);
  7767. _iframe.contentWindow.document.body.appendChild(script4);
  7768. };
  7769. }
  7770. _jie.onclick = async () => {
  7771. let text = ''
  7772. if (aTool == 6) {
  7773. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7774. } else if (aTool == 3) {
  7775. text = await U.MD.D.I.getEditorContent(_iframe);
  7776. }
  7777. _loading.style.display = 'flex'
  7778. console.log(_loading);
  7779. var _ajs = _iframe.contentWindow.document.createElement("script");
  7780. _ajs.type = "text/javascript";
  7781. _ajs.innerHTML =
  7782. // 'console.log(' + _loading + ');\n' +
  7783. 'var _js = document.createElement("script");\n' +
  7784. '_js.type="text/javascript";\n' +
  7785. '_js.charset="UTF-8";\n' +
  7786. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7787. "_js.onload = function(){\n" +
  7788. ' var a = document.getElementsByTagName("img")\n' +
  7789. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7790. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7791. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7792. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7793. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7794. "beforeUpload_shishi(file," +
  7795. "'" +
  7796. _userid +
  7797. "'" +
  7798. ", " +
  7799. "'" +
  7800. _cid +
  7801. "'" +
  7802. ", " +
  7803. "'" +
  7804. _stage +
  7805. "'" +
  7806. ", " +
  7807. "'" +
  7808. _task +
  7809. "'" +
  7810. ", " +
  7811. "'" +
  7812. _tool +
  7813. "'" +
  7814. ", " +
  7815. "'" +
  7816. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7817. "'" +
  7818. ", " +
  7819. "'" +
  7820. aTool +
  7821. "'" +
  7822. ", " +
  7823. "`" +
  7824. text +
  7825. "`" +
  7826. ")\n" +
  7827. " });\n" +
  7828. "}\n" +
  7829. "document.head.appendChild(_js);\n";
  7830. _iframe.contentWindow.document.head.appendChild(_ajs);
  7831. }
  7832. }
  7833. //U.MD.D.I.openClick(str);
  7834. //如果有任务栏信息
  7835. // if (_taskbar) {
  7836. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7837. // }
  7838. }
  7839. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7840. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7841. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7842. _userinfo = US.userInfo, //登录用户信息
  7843. _userid = US.userInfo.userid //登录用户id
  7844. let _iframe;
  7845. let _cid = cid,
  7846. _stage = stage,
  7847. _task = task,
  7848. _tool = tool;
  7849. var _jie = $$("div", {
  7850. "style": {
  7851. "position": "absolute",
  7852. "bottom": "50px",
  7853. "right": "50px",
  7854. "zIndex": "9999",
  7855. "backgroundColor": "#2268bc",
  7856. "color": "#fff",
  7857. "padding": "12px 20px",
  7858. "cursor": "pointer",
  7859. "borderRadius": "4px",
  7860. },
  7861. "innerHTML": "确认并提交"
  7862. })
  7863. let aTool = ''
  7864. let _loading = document.createElement('div')
  7865. _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;"
  7866. // _loading.id = "";
  7867. let _lchild = document.createElement('div')
  7868. let _limg = document.createElement('img')
  7869. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7870. _limg.style = "width: 26px;margin-right: 10px;"
  7871. _lchild.appendChild(_limg)
  7872. let _lspan = document.createElement('span')
  7873. _lspan.innerHTML = "上传中..."
  7874. _lchild.appendChild(_lspan)
  7875. _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%);"
  7876. _loading.appendChild(_lchild)
  7877. var _box = $$('div', {
  7878. "style": {
  7879. "position": "relative",
  7880. "width": "100%",
  7881. "height": "100%",
  7882. },
  7883. })
  7884. _box.appendChild(_loading)
  7885. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7886. switch (str) {
  7887. case "whiteboard":
  7888. aTool = 1;
  7889. _iframe = $$("iframe", {
  7890. "frameborder": "no",
  7891. "border": "0",
  7892. "scrolling ": "no",
  7893. "style": {
  7894. "cssText": "border:0;width:100%;height:100%"
  7895. },
  7896. "src": "https://beta.iwb.cocorobo.cn/"
  7897. })
  7898. _box.appendChild(_iframe);
  7899. _box.appendChild(_jie);
  7900. _formdiv = new U.UF.UI.form(
  7901. "电子白板",
  7902. _box, {
  7903. "id": "whiteboards" + cid + stage + task + tool,
  7904. "style": {
  7905. "width": "90%",
  7906. "height": "90%",
  7907. "overflow": 'hidden'
  7908. },
  7909. "onresize": function () { }
  7910. }, {
  7911. closecallback: function () { }
  7912. }, {
  7913. "style": {
  7914. "height": "36px"
  7915. }
  7916. }).form; //创建窗体
  7917. _taskbar = {
  7918. "id": str + _formdiv.id,
  7919. "style": {
  7920. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7921. },
  7922. "name": "电子白板",
  7923. "forms": _formdiv,
  7924. "click": function () {
  7925. U.MD.D.I.openApplication(str, obj, info);
  7926. }
  7927. }
  7928. break;
  7929. case "mind":
  7930. aTool = 3;
  7931. _iframe = $$("iframe", {
  7932. "frameborder": "no",
  7933. "border": "0",
  7934. "scrolling ": "no",
  7935. "style": {
  7936. "cssText": "border:0;width:100%;height:100%"
  7937. },
  7938. "src": "/kityminder-editor/dist/index.html"
  7939. });
  7940. _box.appendChild(_iframe);
  7941. _box.appendChild(_jie);
  7942. _formdiv = new U.UF.UI.form(
  7943. "思维导图",
  7944. _box, { //"/jsmind/example/demo.html"
  7945. "id": "minds" + cid + stage + task + tool,
  7946. "style": {
  7947. "width": "90%",
  7948. "height": "90%",
  7949. "overflow": 'hidden'
  7950. },
  7951. "onresize": function () { }
  7952. }, {
  7953. closecallback: function () { }
  7954. }, {
  7955. "style": {
  7956. "height": "36px"
  7957. }
  7958. }).form; //创建窗体
  7959. _taskbar = {
  7960. "id": str + _formdiv.id,
  7961. "style": {
  7962. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7963. },
  7964. "name": "思维导图",
  7965. "forms": _formdiv,
  7966. "click": function () {
  7967. U.MD.D.I.openApplication(str, obj, info);
  7968. }
  7969. }
  7970. break;
  7971. case "doc":
  7972. aTool = 6;
  7973. _iframe = $$("iframe", {
  7974. "frameborder": "no",
  7975. "border": "0",
  7976. "scrolling ": "no",
  7977. "style": {
  7978. "cssText": "border:0;width:100%;height:100%"
  7979. },
  7980. "src": "/Office/Word/WordEditArea.htm"
  7981. })
  7982. _box.appendChild(_iframe);
  7983. _box.appendChild(_jie);
  7984. _formdiv = new U.UF.UI.form(
  7985. "协同文档",
  7986. _box, {
  7987. "id": "docs" + cid + stage + task + tool,
  7988. "style": {
  7989. "width": "90%",
  7990. "height": "90%",
  7991. "overflow": 'hidden'
  7992. },
  7993. "onresize": function () { }
  7994. }, {
  7995. closecallback: function () { }
  7996. }, {
  7997. "style": {
  7998. "height": "36px"
  7999. }
  8000. }).form; //创建窗体
  8001. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8002. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8003. })
  8004. _taskbar = {
  8005. "id": str + _formdiv.id,
  8006. "style": {
  8007. "backgroundImage": "url(/img/icon/doc.png)"
  8008. },
  8009. "name": "协同文档",
  8010. "forms": _formdiv,
  8011. "click": function () {
  8012. U.MD.D.I.openApplication(str, obj, info);
  8013. }
  8014. }
  8015. break;
  8016. }
  8017. const script1 = document.createElement("script");
  8018. script1.type = "text/javascript";
  8019. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8020. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8021. const script2 = document.createElement("script");
  8022. script2.type = "text/javascript";
  8023. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8024. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8025. const script3 = document.createElement("script");
  8026. script3.type = "text/javascript";
  8027. script3.charset = "UTF-8";
  8028. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8029. const script4 = document.createElement("script");
  8030. script4.type = "text/javascript";
  8031. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8032. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8033. if (_iframe) {
  8034. if (str == 'doc') {
  8035. _iframe = _formdiv.querySelector('iframe')
  8036. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8037. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8038. _iframe.contentWindow.document.body.appendChild(script1);
  8039. _iframe.contentWindow.document.body.appendChild(script2);
  8040. // _iframe.contentWindow.document.body.appendChild(script3);
  8041. _iframe.contentWindow.document.body.appendChild(script4);
  8042. })
  8043. if (onloadListener) {
  8044. _iframe.contentDocument.location.reload()
  8045. } else {
  8046. _iframe.contentDocument.location.reload()
  8047. }
  8048. } else if (str == 'mind') {
  8049. _iframe = _formdiv.querySelector('iframe')
  8050. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8051. _iframe.contentWindow.document.body.appendChild(script1);
  8052. _iframe.contentWindow.document.body.appendChild(script2);
  8053. _iframe.contentWindow.document.body.appendChild(script4);
  8054. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8055. })
  8056. if (onloadListener) {
  8057. _iframe.contentDocument.location.reload()
  8058. } else {
  8059. _iframe.contentDocument.location.reload()
  8060. }
  8061. } else {
  8062. _iframe.onload = () => {
  8063. _iframe.contentWindow.document.body.appendChild(script1);
  8064. _iframe.contentWindow.document.body.appendChild(script2);
  8065. // _iframe.contentWindow.document.body.appendChild(script3);
  8066. _iframe.contentWindow.document.body.appendChild(script4);
  8067. };
  8068. }
  8069. _jie.onclick = async () => {
  8070. let text = ''
  8071. if (aTool == 6) {
  8072. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8073. } else if (aTool == 3) {
  8074. text = await U.MD.D.I.getEditorContent(_iframe);
  8075. }
  8076. _loading.style.display = 'flex'
  8077. console.log(_loading);
  8078. var _ajs = _iframe.contentWindow.document.createElement("script");
  8079. _ajs.type = "text/javascript";
  8080. _ajs.innerHTML =
  8081. // 'console.log(' + _loading + ');\n' +
  8082. 'var _js = document.createElement("script");\n' +
  8083. '_js.type="text/javascript";\n' +
  8084. '_js.charset="UTF-8";\n' +
  8085. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8086. "_js.onload = function(){\n" +
  8087. ' var a = document.getElementsByTagName("img")\n' +
  8088. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8089. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8090. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8091. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8092. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8093. "beforeUpload_shishi(file," +
  8094. "'" +
  8095. _userid +
  8096. "'" +
  8097. ", " +
  8098. "'" +
  8099. _cid +
  8100. "'" +
  8101. ", " +
  8102. "'" +
  8103. _stage +
  8104. "'" +
  8105. ", " +
  8106. "'" +
  8107. _task +
  8108. "'" +
  8109. ", " +
  8110. "'" +
  8111. _tool +
  8112. "'" +
  8113. ", " +
  8114. "'" +
  8115. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8116. "'" +
  8117. ", " +
  8118. "'" +
  8119. aTool +
  8120. "'" +
  8121. ", " +
  8122. "`" +
  8123. text +
  8124. "`" +
  8125. ")\n" +
  8126. " });\n" +
  8127. "}\n" +
  8128. "document.head.appendChild(_js);\n";
  8129. _iframe.contentWindow.document.head.appendChild(_ajs);
  8130. }
  8131. }
  8132. //U.MD.D.I.openClick(str);
  8133. //如果有任务栏信息
  8134. // if (_taskbar) {
  8135. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8136. // }
  8137. }
  8138. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8139. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8140. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8141. _userinfo = US.userInfo, //登录用户信息
  8142. _userid = US.userInfo.userid //登录用户id
  8143. let _iframe;
  8144. let _cid = cid,
  8145. _stage = stage,
  8146. _task = task,
  8147. _tool = tool;
  8148. var _jie = $$("div", {
  8149. "style": {
  8150. "position": "absolute",
  8151. "bottom": "50px",
  8152. "right": "50px",
  8153. "zIndex": "9999",
  8154. "backgroundColor": "#2268bc",
  8155. "color": "#fff",
  8156. "padding": "12px 20px",
  8157. "cursor": "pointer",
  8158. "borderRadius": "4px",
  8159. },
  8160. "innerHTML": "上传模板"
  8161. })
  8162. let aTool = ''
  8163. let _loading = document.createElement('div')
  8164. _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;"
  8165. // _loading.id = "";
  8166. let _lchild = document.createElement('div')
  8167. let _limg = document.createElement('img')
  8168. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8169. _limg.style = "width: 26px;margin-right: 10px;"
  8170. _lchild.appendChild(_limg)
  8171. let _lspan = document.createElement('span')
  8172. _lspan.innerHTML = "上传中..."
  8173. _lchild.appendChild(_lspan)
  8174. _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%);"
  8175. _loading.appendChild(_lchild)
  8176. var _box = $$('div', {
  8177. "style": {
  8178. "position": "relative",
  8179. "width": "100%",
  8180. "height": "100%",
  8181. },
  8182. })
  8183. _box.appendChild(_loading)
  8184. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8185. switch (str) {
  8186. case "whiteboard":
  8187. aTool = 1;
  8188. _iframe = $$("iframe", {
  8189. "frameborder": "no",
  8190. "border": "0",
  8191. "scrolling ": "no",
  8192. "style": {
  8193. "cssText": "border:0;width:100%;height:100%"
  8194. },
  8195. "src": "https://beta.iwb.cocorobo.cn/"
  8196. })
  8197. _box.appendChild(_iframe);
  8198. _box.appendChild(_jie);
  8199. _formdiv = new U.UF.UI.form(
  8200. "电子白板",
  8201. _box, {
  8202. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8203. "style": {
  8204. "width": "90%",
  8205. "height": "90%",
  8206. "overflow": 'hidden'
  8207. },
  8208. "onresize": function () { }
  8209. }, {
  8210. closecallback: function () { }
  8211. }, {
  8212. "style": {
  8213. "height": "36px"
  8214. }
  8215. }).form; //创建窗体
  8216. _taskbar = {
  8217. "id": str + _formdiv.id,
  8218. "style": {
  8219. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8220. },
  8221. "name": "电子白板",
  8222. "forms": _formdiv,
  8223. "click": function () {
  8224. U.MD.D.I.openApplication(str, obj, info);
  8225. }
  8226. }
  8227. break;
  8228. case "mind":
  8229. aTool = 3;
  8230. _iframe = $$("iframe", {
  8231. "frameborder": "no",
  8232. "border": "0",
  8233. "scrolling ": "no",
  8234. "style": {
  8235. "cssText": "border:0;width:100%;height:100%"
  8236. },
  8237. "src": "/kityminder-editor/dist/index.html"
  8238. });
  8239. _box.appendChild(_iframe);
  8240. _box.appendChild(_jie);
  8241. _formdiv = new U.UF.UI.form(
  8242. "思维导图",
  8243. _box, { //"/jsmind/example/demo.html"
  8244. "id": "minds_Yu" + cid + stage + task + tool,
  8245. "style": {
  8246. "width": "90%",
  8247. "height": "90%",
  8248. "overflow": 'hidden'
  8249. },
  8250. "onresize": function () { }
  8251. }, {
  8252. closecallback: function () { }
  8253. }, {
  8254. "style": {
  8255. "height": "36px"
  8256. }
  8257. }).form; //创建窗体
  8258. _taskbar = {
  8259. "id": str + _formdiv.id,
  8260. "style": {
  8261. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8262. },
  8263. "name": "思维导图",
  8264. "forms": _formdiv,
  8265. "click": function () {
  8266. U.MD.D.I.openApplication(str, obj, info);
  8267. }
  8268. }
  8269. break;
  8270. case "doc":
  8271. aTool = 6;
  8272. _iframe = $$("iframe", {
  8273. "frameborder": "no",
  8274. "border": "0",
  8275. "scrolling ": "no",
  8276. "style": {
  8277. "cssText": "border:0;width:100%;height:100%"
  8278. },
  8279. "src": "/Office/Word/WordEditArea.htm"
  8280. })
  8281. _box.appendChild(_iframe);
  8282. _box.appendChild(_jie);
  8283. _formdiv = new U.UF.UI.form(
  8284. "协同文档",
  8285. _box, {
  8286. "id": "docs_Yu" + cid + stage + task + tool,
  8287. "style": {
  8288. "width": "90%",
  8289. "height": "90%",
  8290. "overflow": 'hidden'
  8291. },
  8292. "onresize": function () { }
  8293. }, {
  8294. closecallback: function () { }
  8295. }, {
  8296. "style": {
  8297. "height": "36px"
  8298. }
  8299. }).form; //创建窗体
  8300. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8301. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8302. })
  8303. _taskbar = {
  8304. "id": str + _formdiv.id,
  8305. "style": {
  8306. "backgroundImage": "url(/img/icon/doc.png)"
  8307. },
  8308. "name": "协同文档",
  8309. "forms": _formdiv,
  8310. "click": function () {
  8311. U.MD.D.I.openApplication(str, obj, info);
  8312. }
  8313. }
  8314. break;
  8315. case "CocoPi":
  8316. aTool = 57;
  8317. _iframe = $$("iframe", {
  8318. "allowpaymentrequest": "allowpaymentrequest",
  8319. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8320. "webkitallowfullscreen": "",
  8321. "mozallowfullscreen": "",
  8322. "frameborder": "no",
  8323. "border": "0",
  8324. "scrolling ": "no",
  8325. "style": {
  8326. "cssText": "border:0;width:100%;height:100%"
  8327. },
  8328. "src": "https://pi.cocorobo.cn/"
  8329. })
  8330. _box.appendChild(_iframe);
  8331. _box.appendChild(_jie);
  8332. _formdiv = new U.UF.UI.form(
  8333. "CocoPi",
  8334. _box, {
  8335. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8336. "style": {
  8337. "width": "90%",
  8338. "height": "90%",
  8339. "overflow": 'hidden'
  8340. },
  8341. "onresize": function () { }
  8342. }, {
  8343. closecallback: function () { }
  8344. }, {
  8345. "style": {
  8346. "height": "36px"
  8347. }
  8348. }).form; //创建窗体
  8349. _taskbar = {
  8350. "id": str + _formdiv.id,
  8351. "style": {
  8352. "backgroundImage": "url(/img/icon/cocopi.png)"
  8353. },
  8354. "name": "CocoPi",
  8355. "forms": _formdiv,
  8356. "click": function () {
  8357. U.MD.D.I.openApplication(str, obj, info);
  8358. }
  8359. }
  8360. break;
  8361. }
  8362. if (_iframe) {
  8363. if (str == 'doc') {
  8364. _iframe = _formdiv.querySelector('iframe')
  8365. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8366. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8367. })
  8368. if (onloadListener) {
  8369. _iframe.contentDocument.location.reload()
  8370. } else {
  8371. _iframe.contentDocument.location.reload()
  8372. }
  8373. } else if (str == 'mind') {
  8374. _iframe = _formdiv.querySelector('iframe')
  8375. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8376. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8377. })
  8378. if (onloadListener) {
  8379. _iframe.contentDocument.location.reload()
  8380. } else {
  8381. _iframe.contentDocument.location.reload()
  8382. }
  8383. } else if (str == 'whiteboard') {
  8384. _iframe = _formdiv.querySelector('iframe')
  8385. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8386. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8387. })
  8388. // if (onloadListener) {
  8389. // try {
  8390. // _iframe.src += "?cocorobo="+new Date().getTime()
  8391. // _iframe.contentWindow.document.location.reload()
  8392. // } catch (error) {
  8393. // }
  8394. // } else {
  8395. // _iframe.contentDocument.location.reload()
  8396. // }
  8397. } else if (str == 'CocoPi') {
  8398. _iframe = _formdiv.querySelector('iframe')
  8399. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8400. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8401. })
  8402. if (onloadListener) {
  8403. _iframe.contentDocument.location.reload()
  8404. } else {
  8405. _iframe.contentDocument.location.reload()
  8406. }
  8407. } else {
  8408. _iframe.onload = () => { };
  8409. }
  8410. _jie.onclick = async () => {
  8411. let text = ''
  8412. let type = '2'
  8413. if (aTool == 1) {
  8414. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8415. type = '3'
  8416. } else if (aTool == 6) {
  8417. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8418. type = '1'
  8419. } else if (aTool == 3) {
  8420. text = await U.MD.D.I.getEditorContent(_iframe);
  8421. type = '2'
  8422. } else if (aTool == 57) {
  8423. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8424. type = '4'
  8425. }
  8426. _loading.style.display = 'flex'
  8427. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8428. }
  8429. }
  8430. //U.MD.D.I.openClick(str);
  8431. //如果有任务栏信息
  8432. // if (_taskbar) {
  8433. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8434. // }
  8435. }
  8436. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8437. var xmlhttp;
  8438. var Mac, Sn, DeviceId
  8439. if (window.XMLHttpRequest) {
  8440. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8441. xmlhttp = new XMLHttpRequest();
  8442. } else {
  8443. // IE6, IE5 浏览器执行代码
  8444. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8445. }
  8446. xmlhttp.onreadystatechange = function () {
  8447. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8448. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8449. // resolve(res.value[0][0].text);
  8450. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8451. }
  8452. }
  8453. }
  8454. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8455. xmlhttp.send();
  8456. }
  8457. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8458. var xmlhttp;
  8459. var Mac, Sn, DeviceId
  8460. if (window.XMLHttpRequest) {
  8461. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8462. xmlhttp = new XMLHttpRequest();
  8463. } else {
  8464. // IE6, IE5 浏览器执行代码
  8465. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8466. }
  8467. xmlhttp.onreadystatechange = function () {
  8468. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8469. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8470. // resolve(res.value[0][0].text);
  8471. if (type == '2') {
  8472. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8473. } else if (type == '3') {
  8474. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8475. } else if (type == '4') {
  8476. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8477. }
  8478. } else {
  8479. if (type == '2') {
  8480. iframe.contentWindow.editor.minder.importData('json', '')
  8481. } else if (type == '3') {
  8482. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8483. } else if (type == '4') {
  8484. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8485. }
  8486. }
  8487. }
  8488. }
  8489. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8490. xmlhttp.send();
  8491. }
  8492. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8493. var xmlhttp;
  8494. var Mac, Sn, DeviceId
  8495. if (window.XMLHttpRequest) {
  8496. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8497. xmlhttp = new XMLHttpRequest();
  8498. } else {
  8499. // IE6, IE5 浏览器执行代码
  8500. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8501. }
  8502. xmlhttp.onreadystatechange = function () {
  8503. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8504. if (xmlhttp.response) {
  8505. // resolve(res.value[0][0].text);
  8506. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8507. // $(fileInput).val('');
  8508. // });
  8509. span.innerHTML = '上传成功'
  8510. setTimeout(() => {
  8511. loading.style.display = 'none'
  8512. }, 1000);
  8513. }
  8514. }
  8515. }
  8516. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8517. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8518. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8519. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8520. // 设置请求头,表示请求体的编码格式
  8521. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8522. // 设置请求体,使用url-encoded格式的数据
  8523. }
  8524. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8525. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8526. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8527. _userinfo = US.userInfo, //登录用户信息
  8528. _userid = US.userInfo.userid //登录用户id
  8529. let _iframe;
  8530. let _cid = cid,
  8531. _stage = stage,
  8532. _task = task,
  8533. _tool = tool;
  8534. var _jie = $$("div", {
  8535. "style": {
  8536. "position": "absolute",
  8537. "bottom": "50px",
  8538. "right": "50px",
  8539. "zIndex": "9999",
  8540. "backgroundColor": "#2268bc",
  8541. "color": "#fff",
  8542. "padding": "12px 20px",
  8543. "cursor": "pointer",
  8544. "borderRadius": "4px",
  8545. },
  8546. "innerHTML": "提交作业"
  8547. })
  8548. let aTool = ''
  8549. let _loading = document.createElement('div')
  8550. _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;"
  8551. // _loading.id = "";
  8552. let _lchild = document.createElement('div')
  8553. let _limg = document.createElement('img')
  8554. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8555. _limg.style = "width: 26px;margin-right: 10px;"
  8556. _lchild.appendChild(_limg)
  8557. let _lspan = document.createElement('span')
  8558. _lspan.innerHTML = "上传中..."
  8559. _lchild.appendChild(_lspan)
  8560. _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%);"
  8561. _loading.appendChild(_lchild)
  8562. var _box = $$('div', {
  8563. "style": {
  8564. "position": "relative",
  8565. "width": "100%",
  8566. "height": "100%",
  8567. },
  8568. })
  8569. _box.appendChild(_loading)
  8570. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8571. switch (str) {
  8572. case "CocoPi":
  8573. aTool = 57;
  8574. _iframe = $$("iframe", {
  8575. "allowpaymentrequest": "allowpaymentrequest",
  8576. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8577. "webkitallowfullscreen": "",
  8578. "mozallowfullscreen": "",
  8579. "frameborder": "no",
  8580. "border": "0",
  8581. "scrolling ": "no",
  8582. "style": {
  8583. "cssText": "border:0;width:100%;height:100%"
  8584. },
  8585. "src": "https://pi.cocorobo.cn/"
  8586. })
  8587. _box.appendChild(_iframe);
  8588. _box.appendChild(_jie);
  8589. _formdiv = new U.UF.UI.form(
  8590. "CocoPi",
  8591. _box, {
  8592. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8593. "style": {
  8594. "width": "90%",
  8595. "height": "90%",
  8596. "overflow": 'hidden'
  8597. },
  8598. "onresize": function () { }
  8599. }, {
  8600. closecallback: function () { }
  8601. }, {
  8602. "style": {
  8603. "height": "36px"
  8604. }
  8605. }).form; //创建窗体
  8606. _taskbar = {
  8607. "id": str + _formdiv.id,
  8608. "style": {
  8609. "backgroundImage": "url(/img/icon/cocopi.png)"
  8610. },
  8611. "name": "CocoPi",
  8612. "forms": _formdiv,
  8613. "click": function () {
  8614. U.MD.D.I.openApplication(str, obj, info);
  8615. }
  8616. }
  8617. break;
  8618. }
  8619. if (_iframe) {
  8620. if (str == 'CocoPi') {
  8621. _iframe = _formdiv.querySelector('iframe')
  8622. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8623. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8624. })
  8625. if (onloadListener) {
  8626. _iframe.contentDocument.location.reload()
  8627. } else {
  8628. _iframe.contentDocument.location.reload()
  8629. }
  8630. }
  8631. _jie.onclick = async () => {
  8632. let text = ''
  8633. if (aTool == 57) {
  8634. text = _iframe.contentWindow.getLoadXmlStr()
  8635. }
  8636. _loading.style.display = 'flex'
  8637. console.log(_loading);
  8638. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8639. _loading.style.display = 'none'
  8640. let _div = document.createElement('div')
  8641. _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;"
  8642. let _inner = document.createElement('div')
  8643. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8644. _inner.innerHTML = "上传成功"
  8645. _div.appendChild(_inner)
  8646. _iframe.contentWindow.window.document.body.appendChild(_div)
  8647. _div.onclick = () => {
  8648. _iframe.contentWindow.window.document.body.removeChild(_div)
  8649. }
  8650. setTimeout(() => {
  8651. _iframe.contentWindow.window.document.body.removeChild(_div)
  8652. }, 1000);
  8653. }, [], { "type": "POST", "withCredentials": true });
  8654. }
  8655. }
  8656. }
  8657. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8658. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8659. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8660. _userid = student.userid, //登录用户id
  8661. _username = student.student //用户名字
  8662. let _iframe;
  8663. let _cid = cid,
  8664. _stage = stage,
  8665. _task = task,
  8666. _tool = tool;
  8667. var _jie = $$("div", {
  8668. "style": {
  8669. "position": "absolute",
  8670. "bottom": "50px",
  8671. "right": "50px",
  8672. "zIndex": "9999",
  8673. "backgroundColor": "#2268bc",
  8674. "color": "#fff",
  8675. "padding": "12px 20px",
  8676. "cursor": "pointer",
  8677. "borderRadius": "4px",
  8678. },
  8679. "innerHTML": "提交作业"
  8680. })
  8681. let aTool = ''
  8682. let _loading = document.createElement('div')
  8683. _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;"
  8684. // _loading.id = "";
  8685. let _lchild = document.createElement('div')
  8686. let _limg = document.createElement('img')
  8687. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8688. _limg.style = "width: 26px;margin-right: 10px;"
  8689. _lchild.appendChild(_limg)
  8690. let _lspan = document.createElement('span')
  8691. _lspan.innerHTML = "上传中..."
  8692. _lchild.appendChild(_lspan)
  8693. _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%);"
  8694. _loading.appendChild(_lchild)
  8695. var _box = $$('div', {
  8696. "style": {
  8697. "position": "relative",
  8698. "width": "100%",
  8699. "height": "100%",
  8700. },
  8701. })
  8702. _box.appendChild(_loading)
  8703. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8704. switch (str) {
  8705. case "CocoPi":
  8706. aTool = 57;
  8707. _iframe = $$("iframe", {
  8708. "allowpaymentrequest": "allowpaymentrequest",
  8709. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8710. "webkitallowfullscreen": "",
  8711. "mozallowfullscreen": "",
  8712. "frameborder": "no",
  8713. "border": "0",
  8714. "scrolling ": "no",
  8715. "style": {
  8716. "cssText": "border:0;width:100%;height:100%"
  8717. },
  8718. "src": "https://pi.cocorobo.cn/"
  8719. })
  8720. _box.appendChild(_iframe);
  8721. _box.appendChild(_jie);
  8722. _formdiv = new U.UF.UI.form(
  8723. "CocoPi-" + _username,
  8724. _box, {
  8725. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8726. "style": {
  8727. "width": "90%",
  8728. "height": "90%",
  8729. "overflow": 'hidden'
  8730. },
  8731. "onresize": function () { }
  8732. }, {
  8733. closecallback: function () { }
  8734. }, {
  8735. "style": {
  8736. "height": "36px"
  8737. }
  8738. }).form; //创建窗体
  8739. _taskbar = {
  8740. "id": str + _formdiv.id,
  8741. "style": {
  8742. "backgroundImage": "url(/img/icon/cocopi.png)"
  8743. },
  8744. "name": "CocoPi",
  8745. "forms": _formdiv,
  8746. "click": function () {
  8747. U.MD.D.I.openApplication(str, obj, info);
  8748. }
  8749. }
  8750. break;
  8751. }
  8752. if (_iframe) {
  8753. if (str == 'CocoPi') {
  8754. _iframe = _formdiv.querySelector('iframe')
  8755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8756. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8757. })
  8758. if (onloadListener) {
  8759. _iframe.contentDocument.location.reload()
  8760. } else {
  8761. _iframe.contentDocument.location.reload()
  8762. }
  8763. }
  8764. _jie.onclick = async () => {
  8765. let text = ''
  8766. if (aTool == 57) {
  8767. text = _iframe.contentWindow.getLoadXmlStr()
  8768. }
  8769. _loading.style.display = 'flex'
  8770. console.log(_loading);
  8771. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8772. _loading.style.display = 'none'
  8773. let _div = document.createElement('div')
  8774. _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;"
  8775. let _inner = document.createElement('div')
  8776. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8777. _inner.innerHTML = "上传成功"
  8778. _div.appendChild(_inner)
  8779. _iframe.contentWindow.window.document.body.appendChild(_div)
  8780. _div.onclick = () => {
  8781. _iframe.contentWindow.window.document.body.removeChild(_div)
  8782. }
  8783. setTimeout(() => {
  8784. _iframe.contentWindow.window.document.body.removeChild(_div)
  8785. }, 1000);
  8786. }, [], { "type": "POST", "withCredentials": true });
  8787. }
  8788. }
  8789. }
  8790. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8791. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8792. if (res.value[0].length > 0) {
  8793. if (atool == 57) {
  8794. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8795. }
  8796. } else {
  8797. if (atool == 57) {
  8798. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8799. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8800. }
  8801. }
  8802. }, [], { "type": "POST", "withCredentials": true });
  8803. }