DeskTop.js 536 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841
  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. ];
  730. //hk
  731. U.MD.D.I.hkaceStudentDeskIcon = [
  732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  735. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  738. ];
  739. //香海正覺蓮社佛教正覺中學
  740. U.MD.D.I.hkZJLSteacherDeskIcon = [
  741. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  742. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  748. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  749. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  750. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  751. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  752. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  753. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  754. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  757. ];
  758. //香海正覺蓮社佛教正覺中學
  759. U.MD.D.I.hkZJLSStudentDeskIcon = [
  760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. ];
  765. //云海
  766. U.MD.D.I.yunhaiTeacherDeskIcon = [
  767. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  768. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  769. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  770. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  774. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  775. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  776. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  777. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  778. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  779. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  780. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  781. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  782. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  785. ];
  786. //福田
  787. U.MD.D.I.heyuanTeacherDeskIcon = [
  788. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  789. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  790. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  791. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  792. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  793. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  795. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  796. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  800. ];
  801. //福田
  802. U.MD.D.I.heyuanAdminDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  807. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  808. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  809. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  810. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  811. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  814. ];
  815. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  816. U.MD.D.I.szherTeacherDeskIcon = [
  817. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  818. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  819. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  820. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  821. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  822. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  823. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  824. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  827. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  828. ];
  829. //dsei
  830. U.MD.D.I.dseiTeacherDeskIcon = [
  831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  837. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  838. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  839. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  840. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  841. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  842. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  843. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  844. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  845. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  846. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  847. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  848. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  849. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  850. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  851. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  852. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  853. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  854. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  855. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  856. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  857. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  858. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  859. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  860. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  861. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  862. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  863. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  864. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  865. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  866. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  867. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  868. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  871. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  872. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  873. ];
  874. //dsei
  875. U.MD.D.I.dseiAdminDeskIcon = [
  876. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  877. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  885. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  886. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  887. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  888. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  889. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  890. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  891. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  892. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  893. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  894. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  895. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  896. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  897. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  898. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  899. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  900. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  901. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  902. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  903. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  904. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  905. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  906. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  907. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  908. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  909. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  910. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  911. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  912. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  913. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  916. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  917. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  918. ];
  919. //dsei
  920. U.MD.D.I.dseiStudentDeskIcon = [
  921. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. ];
  928. //未来教育基地
  929. U.MD.D.I.szjkyTeacherDeskIcon = [
  930. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  931. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  932. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  934. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  935. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  936. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  937. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  938. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  939. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  940. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  941. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  942. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  944. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  945. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  946. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  947. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  948. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  949. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  950. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  951. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  962. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  963. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  964. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  965. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  966. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  967. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  970. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  971. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  972. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  973. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  974. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  976. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  977. ];
  978. //未来教育基地
  979. U.MD.D.I.szjkyStudentDeskIcon = [
  980. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  981. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  982. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  983. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  984. ];
  985. //成华教育局
  986. U.MD.D.I.chjyjTeacherDeskIcon = [
  987. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  988. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  989. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  990. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  991. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  992. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  993. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  994. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  995. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  996. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  997. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  998. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  999. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1000. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1001. ];
  1002. //成华教育局chjyj
  1003. U.MD.D.I.chjyjAdminDeskIcon = [
  1004. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1005. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1006. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1007. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1008. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1009. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1010. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1011. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1012. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1013. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1014. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1015. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1016. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1019. ];
  1020. //成华教育局chjyj
  1021. U.MD.D.I.chjyjStudentDeskIcon = [
  1022. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1026. ];
  1027. //tpc
  1028. U.MD.D.I.tpcStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcTeacherDeskIcon = [
  1036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1038. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1039. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1042. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1043. ];
  1044. //tpc
  1045. U.MD.D.I.tpcAdminDeskIcon = [
  1046. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1047. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1048. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1049. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1050. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1051. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //THU-IOE
  1055. U.MD.D.I.thuioeTeacherDeskIcon = [
  1056. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1057. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1058. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1059. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1060. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1061. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1062. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1063. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1064. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1065. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1066. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1067. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1068. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1069. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1070. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1071. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1072. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1073. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1074. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1075. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1076. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1077. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1078. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1079. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1080. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1081. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1082. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1083. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1084. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1085. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1086. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1087. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1088. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1089. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1090. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1091. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1092. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1093. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1094. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1095. ];
  1096. //THU-IOE
  1097. U.MD.D.I.thuioeStudentDeskIcon = [
  1098. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1099. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1100. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1101. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1102. ];
  1103. //jccssyl
  1104. U.MD.D.I.jccssylTeacherDeskIcon = [
  1105. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1106. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1107. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1108. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1109. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1110. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1111. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1112. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1113. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1114. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1115. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1116. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1117. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1118. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1119. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1121. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1122. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1123. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1124. ];
  1125. //jccssyl
  1126. U.MD.D.I.jccssylStudentDeskIcon = [
  1127. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1129. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1130. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1131. ];
  1132. //cale
  1133. U.MD.D.I.caleTeacherDeskIcon = [
  1134. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1135. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1136. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1137. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1138. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1139. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1140. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1141. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1142. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1143. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1144. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1145. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1146. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1147. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1148. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1152. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1153. ];
  1154. //cale
  1155. U.MD.D.I.caleStudentDeskIcon = [
  1156. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1160. ];
  1161. //lqwmsgzs
  1162. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1163. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1164. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1165. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1166. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1167. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1168. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1169. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1170. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1171. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1172. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1173. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1174. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1175. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1176. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1177. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1178. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1179. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1180. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1181. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1182. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1183. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1184. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1185. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1186. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1187. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1188. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1189. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1190. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1191. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1192. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1193. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1194. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1195. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1196. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1197. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1198. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1199. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1200. ];
  1201. //lqwmsgzs
  1202. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1203. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1204. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1205. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1207. ];
  1208. //盐田区幼儿园
  1209. U.MD.D.I.ytyTeacherDeskIcon = [
  1210. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1211. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1212. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1213. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1214. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1217. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1220. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1221. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1222. ];
  1223. //盐田区幼儿园
  1224. U.MD.D.I.ytyStudentDeskIcon = [
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. ];
  1229. //#region 桌面初始化a
  1230. /**
  1231. * 初始化桌面的起始函数
  1232. *
  1233. */
  1234. U.MD.D.I.init = function () {
  1235. if ($("#U_MD_D_K")[0]) {
  1236. //初始化桌面图标
  1237. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1238. // var clickUrl = ':12588/requestIp.php';
  1239. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1240. // U.MD.D.I.Ip = data;
  1241. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1242. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1243. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1244. // })
  1245. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1246. // })
  1247. }
  1248. }
  1249. /**
  1250. * 模式切换
  1251. *
  1252. */
  1253. U.MD.D.I.ModeCheck = function (type) {
  1254. if (US.Config.type == type) {
  1255. return
  1256. }
  1257. US.Config.type = type
  1258. $('.U_PBL_Check .active')[0].className = ''
  1259. if (type == 1) {
  1260. $('.U_PBL_Check div')[0].className = 'active'
  1261. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1262. } else {
  1263. $('.U_PBL_Check div')[1].className = 'active'
  1264. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1265. }
  1266. //初始化桌面图标
  1267. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1268. if (type == 2) {
  1269. U.MD.D.I.openApplication("project")
  1270. }
  1271. }
  1272. /**
  1273. * 隐藏任务栏
  1274. *
  1275. * @param {element} 桌面元素
  1276. */
  1277. U.MD.D.I.hiddenTaskbar = function (el) {
  1278. //任务栏位置变小
  1279. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1280. //桌面的位置变大
  1281. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1282. }
  1283. /**
  1284. * 隐藏任务栏
  1285. *
  1286. * @param {element} 桌面元素
  1287. */
  1288. U.MD.D.I.hiddenTaskbarout = function (el) {
  1289. //任务栏位置变小
  1290. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1291. //任务栏位置变化
  1292. U.selectEl(el).css({ "bottom": "-60px" });
  1293. //桌面的位置变大
  1294. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1295. }
  1296. }
  1297. /**
  1298. * 初始化打印桌面图标
  1299. *
  1300. * @param {element} 桌面元素
  1301. */
  1302. U.MD.D.I.initDesktopIcons = function (el, type) {
  1303. var i, //用于循环
  1304. _content, //桌面图标元素
  1305. _iconcontent, //桌面图标元素
  1306. _frag = $$("frag"), //定义一个碎片元素
  1307. _type = US.userInfo.type,
  1308. _org = US.userInfo.org,
  1309. _oid = US.userInfo.organizeid,
  1310. _role = US.userInfo.role,
  1311. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1312. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1313. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1314. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1315. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1316. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1317. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1318. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1319. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1320. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1321. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1322. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1323. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1324. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1325. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1326. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1327. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1328. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1329. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1330. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1331. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1332. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1333. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1334. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1335. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1336. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1337. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1338. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1339. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1340. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1341. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1342. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1343. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1344. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1345. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1346. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1347. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1348. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1349. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1350. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1351. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1352. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1353. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1354. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1355. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1356. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1357. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1358. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1359. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1360. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1361. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1362. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1363. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1364. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1365. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1366. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1367. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1368. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1369. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1370. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1371. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1372. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1373. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1374. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1375. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1376. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1377. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1378. 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'];
  1379. 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'];
  1380. //清楚桌面图标
  1381. el.innerHTML = "";
  1382. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1383. _teacherDesktopIconInfo.push(
  1384. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1385. { "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)" } },
  1386. )
  1387. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1388. }
  1389. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1390. _teacherDesktopIconInfo.push(
  1391. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1392. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1393. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1394. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1395. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1396. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1397. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1398. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1399. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1400. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1401. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1402. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1403. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1404. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "学生pbl", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1406. )
  1407. }
  1408. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1409. _teacherDesktopIconInfo.push(
  1410. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1411. )
  1412. }
  1413. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1414. // _teacherDesktopIconInfo.push(
  1415. // )
  1416. // }
  1417. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1418. _teacherDesktopIconInfo.push(
  1419. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1420. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1421. )
  1422. }
  1423. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1424. _teacherDesktopIconInfo.push(
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1428. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1429. )
  1430. _studentDesktopIconInfo.push(
  1431. )
  1432. }
  1433. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1434. _teacherDesktopIconInfo.push(
  1435. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1436. )
  1437. _studentDesktopIconInfo.push(
  1438. )
  1439. }
  1440. //麒麟二中 和 民新小学
  1441. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1442. _teacherDesktopIconInfo.push(
  1443. )
  1444. }
  1445. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1446. _teacherDesktopIconInfo.push(
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. )
  1451. }
  1452. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1453. _teacherDesktopIconInfo.push(
  1454. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1455. )
  1456. }
  1457. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1458. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1459. _teacherDesktopIconInfo.push(
  1460. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1461. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1462. )
  1463. }
  1464. //麒麟二中
  1465. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1466. _studentDesktopIconInfo.push(
  1467. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1468. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1469. )
  1470. }
  1471. //万科双语
  1472. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1473. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1474. if (el.Name == '项目管理') {
  1475. el.Name = 'PBL项目'
  1476. }
  1477. return el
  1478. })
  1479. _studentDesktopIconInfo3.push(
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. )
  1482. }
  1483. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1484. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1485. return el.Name != '魔盒识字' && el.Name != '24点'
  1486. })
  1487. }
  1488. 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) {
  1489. _studentDesktopIconInfo.push(
  1490. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1491. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1492. )
  1493. }
  1494. //循环创建桌面图标
  1495. if (type == 1) {
  1496. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1497. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1498. _content = $$("div", {
  1499. className: "U_MD_D_KO",
  1500. "onmousedown": U.UF.C.closure(function (obj) {
  1501. //防止拖动图标即打开了桌面应用
  1502. U.MD.D.click(this, obj);
  1503. }, [_studentDesktopIconInfo[i]]),
  1504. "onclick": U.UF.C.closure(function (obj) {
  1505. //防止拖动图标即打开了桌面应用
  1506. U.MD.D.click(this, obj);
  1507. }, [_studentDesktopIconInfo[i]])
  1508. }, _frag); //
  1509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1512. }
  1513. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1514. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1515. _content = $$("div", {
  1516. className: "U_MD_D_KO",
  1517. "onmousedown": U.UF.C.closure(function (obj) {
  1518. //防止拖动图标即打开了桌面应用
  1519. U.MD.D.click(this, obj);
  1520. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1521. "onclick": U.UF.C.closure(function (obj) {
  1522. //防止拖动图标即打开了桌面应用
  1523. U.MD.D.click(this, obj);
  1524. }, [_hkZJLSStudentDeskIconInfo[i]])
  1525. }, _frag); //
  1526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1529. } //
  1530. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1531. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1532. _content = $$("div", {
  1533. className: "U_MD_D_KO",
  1534. "onmousedown": U.UF.C.closure(function (obj) {
  1535. //防止拖动图标即打开了桌面应用
  1536. U.MD.D.click(this, obj);
  1537. }, [_ytyStudentDeskIconInfo[i]]),
  1538. "onclick": U.UF.C.closure(function (obj) {
  1539. //防止拖动图标即打开了桌面应用
  1540. U.MD.D.click(this, obj);
  1541. }, [_ytyStudentDeskIconInfo[i]])
  1542. }, _frag); //
  1543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1546. } //
  1547. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1548. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1549. _content = $$("div", {
  1550. className: "U_MD_D_KO",
  1551. "onmousedown": U.UF.C.closure(function (obj) {
  1552. //防止拖动图标即打开了桌面应用
  1553. U.MD.D.click(this, obj);
  1554. }, [_jccssylStudentDeskIconInfo[i]]),
  1555. "onclick": U.UF.C.closure(function (obj) {
  1556. //防止拖动图标即打开了桌面应用
  1557. U.MD.D.click(this, obj);
  1558. }, [_jccssylStudentDeskIconInfo[i]])
  1559. }, _frag); //
  1560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1563. }
  1564. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1565. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1566. _content = $$("div", {
  1567. className: "U_MD_D_KO",
  1568. "onmousedown": U.UF.C.closure(function (obj) {
  1569. //防止拖动图标即打开了桌面应用
  1570. U.MD.D.click(this, obj);
  1571. }, [_caleStudentDeskIconInfo[i]]),
  1572. "onclick": U.UF.C.closure(function (obj) {
  1573. //防止拖动图标即打开了桌面应用
  1574. U.MD.D.click(this, obj);
  1575. }, [_caleStudentDeskIconInfo[i]])
  1576. }, _frag); //
  1577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1580. }
  1581. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1582. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1583. _content = $$("div", {
  1584. className: "U_MD_D_KO",
  1585. "onmousedown": U.UF.C.closure(function (obj) {
  1586. //防止拖动图标即打开了桌面应用
  1587. U.MD.D.click(this, obj);
  1588. }, [_thuioeStudentDeskIconInfo[i]]),
  1589. "onclick": U.UF.C.closure(function (obj) {
  1590. //防止拖动图标即打开了桌面应用
  1591. U.MD.D.click(this, obj);
  1592. }, [_thuioeStudentDeskIconInfo[i]])
  1593. }, _frag); //
  1594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1597. }
  1598. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1599. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1600. _content = $$("div", {
  1601. className: "U_MD_D_KO",
  1602. "onmousedown": U.UF.C.closure(function (obj) {
  1603. //防止拖动图标即打开了桌面应用
  1604. U.MD.D.click(this, obj);
  1605. }, [_tpcStudentDeskIconInfo[i]]),
  1606. "onclick": U.UF.C.closure(function (obj) {
  1607. //防止拖动图标即打开了桌面应用
  1608. U.MD.D.click(this, obj);
  1609. }, [_tpcStudentDeskIconInfo[i]])
  1610. }, _frag); //
  1611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1614. } //
  1615. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1616. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1617. _content = $$("div", {
  1618. className: "U_MD_D_KO",
  1619. "onmousedown": U.UF.C.closure(function (obj) {
  1620. //防止拖动图标即打开了桌面应用
  1621. U.MD.D.click(this, obj);
  1622. }, [_chjyjStudentDeskIconInfo[i]]),
  1623. "onclick": U.UF.C.closure(function (obj) {
  1624. //防止拖动图标即打开了桌面应用
  1625. U.MD.D.click(this, obj);
  1626. }, [_chjyjStudentDeskIconInfo[i]])
  1627. }, _frag); //
  1628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1631. }
  1632. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1633. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1634. _content = $$("div", {
  1635. className: "U_MD_D_KO",
  1636. "onmousedown": U.UF.C.closure(function (obj) {
  1637. //防止拖动图标即打开了桌面应用
  1638. U.MD.D.click(this, obj);
  1639. }, [_szjkyStudentDeskIconInfo[i]]),
  1640. "onclick": U.UF.C.closure(function (obj) {
  1641. //防止拖动图标即打开了桌面应用
  1642. U.MD.D.click(this, obj);
  1643. }, [_szjkyStudentDeskIconInfo[i]])
  1644. }, _frag); //
  1645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1648. }
  1649. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1650. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1651. _content = $$("div", {
  1652. className: "U_MD_D_KO",
  1653. "onmousedown": U.UF.C.closure(function (obj) {
  1654. //防止拖动图标即打开了桌面应用
  1655. U.MD.D.click(this, obj);
  1656. }, [_dseiStudentDeskIconInfo[i]]),
  1657. "onclick": U.UF.C.closure(function (obj) {
  1658. //防止拖动图标即打开了桌面应用
  1659. U.MD.D.click(this, obj);
  1660. }, [_dseiStudentDeskIconInfo[i]])
  1661. }, _frag); //
  1662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1665. }
  1666. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1667. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1668. _content = $$("div", {
  1669. className: "U_MD_D_KO",
  1670. "onmousedown": U.UF.C.closure(function (obj) {
  1671. //防止拖动图标即打开了桌面应用
  1672. U.MD.D.click(this, obj);
  1673. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1674. "onclick": U.UF.C.closure(function (obj) {
  1675. //防止拖动图标即打开了桌面应用
  1676. U.MD.D.click(this, obj);
  1677. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1678. }, _frag); //
  1679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1682. }
  1683. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1684. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1685. _content = $$("div", {
  1686. className: "U_MD_D_KO",
  1687. "onmousedown": U.UF.C.closure(function (obj) {
  1688. //防止拖动图标即打开了桌面应用
  1689. U.MD.D.click(this, obj);
  1690. }, [_siesStudentDeskIconInfo[i]]),
  1691. "onclick": U.UF.C.closure(function (obj) {
  1692. //防止拖动图标即打开了桌面应用
  1693. U.MD.D.click(this, obj);
  1694. }, [_siesStudentDeskIconInfo[i]])
  1695. }, _frag); //
  1696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1699. }
  1700. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1701. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1702. _content = $$("div", {
  1703. className: "U_MD_D_KO",
  1704. "onmousedown": U.UF.C.closure(function (obj) {
  1705. //防止拖动图标即打开了桌面应用
  1706. U.MD.D.click(this, obj);
  1707. }, [_hkStudentDeskIconInfo[i]]),
  1708. "onclick": U.UF.C.closure(function (obj) {
  1709. //防止拖动图标即打开了桌面应用
  1710. U.MD.D.click(this, obj);
  1711. }, [_hkStudentDeskIconInfo[i]])
  1712. }, _frag); //
  1713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1716. }
  1717. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1718. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1719. _content = $$("div", {
  1720. className: "U_MD_D_KO",
  1721. "onmousedown": U.UF.C.closure(function (obj) {
  1722. //防止拖动图标即打开了桌面应用
  1723. U.MD.D.click(this, obj);
  1724. }, [_hkaceStudentDeskIconInfo[i]]),
  1725. "onclick": U.UF.C.closure(function (obj) {
  1726. //防止拖动图标即打开了桌面应用
  1727. U.MD.D.click(this, obj);
  1728. }, [_hkaceStudentDeskIconInfo[i]])
  1729. }, _frag); //
  1730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1733. }
  1734. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1735. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1736. _content = $$("div", {
  1737. className: "U_MD_D_KO",
  1738. "onmousedown": U.UF.C.closure(function (obj) {
  1739. //防止拖动图标即打开了桌面应用
  1740. U.MD.D.click(this, obj);
  1741. }, [_studentDesktopIconInfo[i]]),
  1742. "onclick": U.UF.C.closure(function (obj) {
  1743. //防止拖动图标即打开了桌面应用
  1744. U.MD.D.click(this, obj);
  1745. }, [_studentDesktopIconInfo[i]])
  1746. }, _frag); //
  1747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1750. }
  1751. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1752. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1753. _content = $$("div", {
  1754. className: "U_MD_D_KO",
  1755. "onmousedown": U.UF.C.closure(function (obj) {
  1756. //防止拖动图标即打开了桌面应用
  1757. U.MD.D.click(this, obj);
  1758. }, [_tcStudentDeskIconInfo[i]]),
  1759. "onclick": U.UF.C.closure(function (obj) {
  1760. //防止拖动图标即打开了桌面应用
  1761. U.MD.D.click(this, obj);
  1762. }, [_tcStudentDeskIconInfo[i]])
  1763. }, _frag); //
  1764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1767. }
  1768. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1769. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1770. _content = $$("div", {
  1771. className: "U_MD_D_KO",
  1772. "onmousedown": U.UF.C.closure(function (obj) {
  1773. //防止拖动图标即打开了桌面应用
  1774. U.MD.D.click(this, obj);
  1775. }, [_szscStudentDeskIconInfo[i]]),
  1776. "onclick": U.UF.C.closure(function (obj) {
  1777. //防止拖动图标即打开了桌面应用
  1778. U.MD.D.click(this, obj);
  1779. }, [_szscStudentDeskIconInfo[i]])
  1780. }, _frag); //
  1781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1784. }
  1785. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1786. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1787. _content = $$("div", {
  1788. className: "U_MD_D_KO",
  1789. "onmousedown": U.UF.C.closure(function (obj) {
  1790. //防止拖动图标即打开了桌面应用
  1791. U.MD.D.click(this, obj);
  1792. }, [_studentDesktopIconInfo3[i]]),
  1793. "onclick": U.UF.C.closure(function (obj) {
  1794. //防止拖动图标即打开了桌面应用
  1795. U.MD.D.click(this, obj);
  1796. }, [_studentDesktopIconInfo3[i]])
  1797. }, _frag); //
  1798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1801. }
  1802. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1803. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1804. _content = $$("div", {
  1805. className: "U_MD_D_KO",
  1806. "onmousedown": U.UF.C.closure(function (obj) {
  1807. //防止拖动图标即打开了桌面应用
  1808. U.MD.D.click(this, obj);
  1809. }, [_studentDesktopIconInfo2[i]]),
  1810. "onclick": U.UF.C.closure(function (obj) {
  1811. //防止拖动图标即打开了桌面应用
  1812. U.MD.D.click(this, obj);
  1813. }, [_studentDesktopIconInfo2[i]])
  1814. }, _frag); //
  1815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1818. }
  1819. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1820. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1821. _content = $$("div", {
  1822. className: "U_MD_D_KO",
  1823. "onmousedown": U.UF.C.closure(function (obj) {
  1824. //防止拖动图标即打开了桌面应用
  1825. U.MD.D.click(this, obj);
  1826. }, [_wanketeacherDesktopIconInfo[i]]),
  1827. "onclick": U.UF.C.closure(function (obj) {
  1828. //防止拖动图标即打开了桌面应用
  1829. U.MD.D.click(this, obj);
  1830. }, [_wanketeacherDesktopIconInfo[i]])
  1831. }, _frag); //
  1832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1835. }
  1836. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1837. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1838. _content = $$("div", {
  1839. className: "U_MD_D_KO",
  1840. "onmousedown": U.UF.C.closure(function (obj) {
  1841. //防止拖动图标即打开了桌面应用
  1842. U.MD.D.click(this, obj);
  1843. }, [_wankeAdminDesktopIconInfo[i]]),
  1844. "onclick": U.UF.C.closure(function (obj) {
  1845. //防止拖动图标即打开了桌面应用
  1846. U.MD.D.click(this, obj);
  1847. }, [_wankeAdminDesktopIconInfo[i]])
  1848. }, _frag); //
  1849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1852. }
  1853. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1854. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1855. _content = $$("div", {
  1856. className: "U_MD_D_KO",
  1857. "onmousedown": U.UF.C.closure(function (obj) {
  1858. //防止拖动图标即打开了桌面应用
  1859. U.MD.D.click(this, obj);
  1860. }, [_jccssylTeacherDeskIconInfo[i]]),
  1861. "onclick": U.UF.C.closure(function (obj) {
  1862. //防止拖动图标即打开了桌面应用
  1863. U.MD.D.click(this, obj);
  1864. }, [_jccssylTeacherDeskIconInfo[i]])
  1865. }, _frag); //
  1866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1869. }
  1870. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1871. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1872. _content = $$("div", {
  1873. className: "U_MD_D_KO",
  1874. "onmousedown": U.UF.C.closure(function (obj) {
  1875. //防止拖动图标即打开了桌面应用
  1876. U.MD.D.click(this, obj);
  1877. }, [_caleTeacherDeskIconInfo[i]]),
  1878. "onclick": U.UF.C.closure(function (obj) {
  1879. //防止拖动图标即打开了桌面应用
  1880. U.MD.D.click(this, obj);
  1881. }, [_caleTeacherDeskIconInfo[i]])
  1882. }, _frag); //
  1883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1886. }
  1887. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1888. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1889. _content = $$("div", {
  1890. className: "U_MD_D_KO",
  1891. "onmousedown": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_tpcOrganizerDeskIconInfo[i]]),
  1895. "onclick": U.UF.C.closure(function (obj) {
  1896. //防止拖动图标即打开了桌面应用
  1897. U.MD.D.click(this, obj);
  1898. }, [_tpcOrganizerDeskIconInfo[i]])
  1899. }, _frag); //
  1900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1903. }
  1904. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1905. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1906. _content = $$("div", {
  1907. className: "U_MD_D_KO",
  1908. "onmousedown": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_tpcTeacherDeskIconInfo[i]]),
  1912. "onclick": U.UF.C.closure(function (obj) {
  1913. //防止拖动图标即打开了桌面应用
  1914. U.MD.D.click(this, obj);
  1915. }, [_tpcTeacherDeskIconInfo[i]])
  1916. }, _frag); //
  1917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1920. }
  1921. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1922. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1923. _content = $$("div", {
  1924. className: "U_MD_D_KO",
  1925. "onmousedown": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_teacherDesktopIconInfo2[i]]),
  1929. "onclick": U.UF.C.closure(function (obj) {
  1930. //防止拖动图标即打开了桌面应用
  1931. U.MD.D.click(this, obj);
  1932. }, [_teacherDesktopIconInfo2[i]])
  1933. }, _frag); //
  1934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1937. }
  1938. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1939. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1940. _content = $$("div", {
  1941. className: "U_MD_D_KO",
  1942. "onmousedown": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_thuioeTeacherDeskIconInfo[i]]),
  1946. "onclick": U.UF.C.closure(function (obj) {
  1947. //防止拖动图标即打开了桌面应用
  1948. U.MD.D.click(this, obj);
  1949. }, [_thuioeTeacherDeskIconInfo[i]])
  1950. }, _frag); //
  1951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1954. }
  1955. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1956. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1957. _content = $$("div", {
  1958. className: "U_MD_D_KO",
  1959. "onmousedown": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_lotechTeacherDeskIconInfo[i]]),
  1963. "onclick": U.UF.C.closure(function (obj) {
  1964. //防止拖动图标即打开了桌面应用
  1965. U.MD.D.click(this, obj);
  1966. }, [_lotechTeacherDeskIconInfo[i]])
  1967. }, _frag); //
  1968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1971. }//
  1972. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1973. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1974. _content = $$("div", {
  1975. className: "U_MD_D_KO",
  1976. "onmousedown": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1980. "onclick": U.UF.C.closure(function (obj) {
  1981. //防止拖动图标即打开了桌面应用
  1982. U.MD.D.click(this, obj);
  1983. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1984. }, _frag); //
  1985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1988. }
  1989. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1990. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1991. _content = $$("div", {
  1992. className: "U_MD_D_KO",
  1993. "onmousedown": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_siesTeacherDeskIconInfo[i]]),
  1997. "onclick": U.UF.C.closure(function (obj) {
  1998. //防止拖动图标即打开了桌面应用
  1999. U.MD.D.click(this, obj);
  2000. }, [_siesTeacherDeskIconInfo[i]])
  2001. }, _frag); //
  2002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2005. }
  2006. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2007. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2008. _content = $$("div", {
  2009. className: "U_MD_D_KO",
  2010. "onmousedown": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_longhuaTeacherDeskIconInfo[i]]),
  2014. "onclick": U.UF.C.closure(function (obj) {
  2015. //防止拖动图标即打开了桌面应用
  2016. U.MD.D.click(this, obj);
  2017. }, [_longhuaTeacherDeskIconInfo[i]])
  2018. }, _frag); //
  2019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2022. }
  2023. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2024. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2025. _content = $$("div", {
  2026. className: "U_MD_D_KO",
  2027. "onmousedown": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_ytyTeacherDeskIconInfo[i]]),
  2031. "onclick": U.UF.C.closure(function (obj) {
  2032. //防止拖动图标即打开了桌面应用
  2033. U.MD.D.click(this, obj);
  2034. }, [_ytyTeacherDeskIconInfo[i]])
  2035. }, _frag); //
  2036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2039. }
  2040. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2041. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2042. _content = $$("div", {
  2043. className: "U_MD_D_KO",
  2044. "onmousedown": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2048. "onclick": U.UF.C.closure(function (obj) {
  2049. //防止拖动图标即打开了桌面应用
  2050. U.MD.D.click(this, obj);
  2051. }, [_yunhaiTeacherDeskIconInfo[i]])
  2052. }, _frag); //
  2053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2056. } //_hkStudentDeskIconInfo
  2057. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2058. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2065. "onclick": U.UF.C.closure(function (obj) {
  2066. //防止拖动图标即打开了桌面应用
  2067. U.MD.D.click(this, obj);
  2068. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2069. }, _frag); //
  2070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2073. }
  2074. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2075. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2076. _content = $$("div", {
  2077. className: "U_MD_D_KO",
  2078. "onmousedown": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_hkTeacherDeskIconInfo[i]]),
  2082. "onclick": U.UF.C.closure(function (obj) {
  2083. //防止拖动图标即打开了桌面应用
  2084. U.MD.D.click(this, obj);
  2085. }, [_hkTeacherDeskIconInfo[i]])
  2086. }, _frag); //
  2087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2090. }
  2091. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2092. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2093. _content = $$("div", {
  2094. className: "U_MD_D_KO",
  2095. "onmousedown": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_hkaceTeacherDeskIconInfo[i]]),
  2099. "onclick": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_hkaceTeacherDeskIconInfo[i]])
  2103. }, _frag); //
  2104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2107. }
  2108. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2109. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2110. _content = $$("div", {
  2111. className: "U_MD_D_KO",
  2112. "onmousedown": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_gdjgAdminDeskIconInfo[i]]),
  2116. "onclick": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_gdjgAdminDeskIconInfo[i]])
  2120. }, _frag); //
  2121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2124. }
  2125. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2126. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2127. _content = $$("div", {
  2128. className: "U_MD_D_KO",
  2129. "onmousedown": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_gdjgTeacherDeskIconInfo[i]]),
  2133. "onclick": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_gdjgTeacherDeskIconInfo[i]])
  2137. }, _frag); //
  2138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2141. }
  2142. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2143. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2144. _content = $$("div", {
  2145. className: "U_MD_D_KO",
  2146. "onmousedown": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_szherTeacherDeskIconInfo[i]]),
  2150. "onclick": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_szherTeacherDeskIconInfo[i]])
  2154. }, _frag); //
  2155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2158. }
  2159. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2160. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2161. _content = $$("div", {
  2162. className: "U_MD_D_KO",
  2163. "onmousedown": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_heyuannAdminDeskIconInfo[i]]),
  2167. "onclick": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_heyuannAdminDeskIconInfo[i]])
  2171. }, _frag); //
  2172. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2173. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2174. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2175. }
  2176. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2177. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2178. _content = $$("div", {
  2179. className: "U_MD_D_KO",
  2180. "onmousedown": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_heyuanTeacherDeskIconInfo[i]]),
  2184. "onclick": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_heyuanTeacherDeskIconInfo[i]])
  2188. }, _frag); //
  2189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2192. } //
  2193. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2194. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2195. _content = $$("div", {
  2196. className: "U_MD_D_KO",
  2197. "onmousedown": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_dseiAdminDeskIconInfo[i]]),
  2201. "onclick": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_dseiAdminDeskIconInfo[i]])
  2205. }, _frag); //
  2206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2209. }
  2210. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2211. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2212. _content = $$("div", {
  2213. className: "U_MD_D_KO",
  2214. "onmousedown": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_dseiTeacherDeskIconInfo[i]]),
  2218. "onclick": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_dseiTeacherDeskIconInfo[i]])
  2222. }, _frag); //
  2223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2226. } //
  2227. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2228. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2229. _content = $$("div", {
  2230. className: "U_MD_D_KO",
  2231. "onmousedown": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_chjyjAdminDeskIconInfo[i]]),
  2235. "onclick": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_chjyjAdminDeskIconInfo[i]])
  2239. }, _frag); //
  2240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2243. }//
  2244. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2245. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2246. _content = $$("div", {
  2247. className: "U_MD_D_KO",
  2248. "onmousedown": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_chjyjTeacherDeskIconInfo[i]]),
  2252. "onclick": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_chjyjTeacherDeskIconInfo[i]])
  2256. }, _frag); //
  2257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2260. }
  2261. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2262. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2263. _content = $$("div", {
  2264. className: "U_MD_D_KO",
  2265. "onmousedown": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_szjkyAdminDeskIconInfo[i]]),
  2269. "onclick": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_szjkyAdminDeskIconInfo[i]])
  2273. }, _frag); //
  2274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2277. }//
  2278. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2279. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2280. _content = $$("div", {
  2281. className: "U_MD_D_KO",
  2282. "onmousedown": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_szjkyTeacherDeskIconInfo[i]]),
  2286. "onclick": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_szjkyTeacherDeskIconInfo[i]])
  2290. }, _frag); //
  2291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2294. }
  2295. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2296. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2297. _content = $$("div", {
  2298. className: "U_MD_D_KO",
  2299. "onmousedown": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_futianAdminDeskIconInfo[i]]),
  2303. "onclick": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_futianAdminDeskIconInfo[i]])
  2307. }, _frag); //
  2308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2311. }
  2312. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2313. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2314. _content = $$("div", {
  2315. className: "U_MD_D_KO",
  2316. "onmousedown": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_futianTeacherDeskIconInfo[i]]),
  2320. "onclick": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_futianTeacherDeskIconInfo[i]])
  2324. }, _frag); //
  2325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2328. }
  2329. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2330. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2331. _content = $$("div", {
  2332. className: "U_MD_D_KO",
  2333. "onmousedown": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_MingdeTeacherDeskIcon[i]]),
  2337. "onclick": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_MingdeTeacherDeskIcon[i]])
  2341. }, _frag); //
  2342. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2343. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2344. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2345. }
  2346. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2347. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2348. _content = $$("div", {
  2349. className: "U_MD_D_KO",
  2350. "onmousedown": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_lhsAdminDesktopIconInfo[i]]),
  2354. "onclick": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_lhsAdminDesktopIconInfo[i]])
  2358. }, _frag); //
  2359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2362. }
  2363. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2364. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2365. _content = $$("div", {
  2366. className: "U_MD_D_KO",
  2367. "onmousedown": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_lhsteacherDesktopIconInfo[i]]),
  2371. "onclick": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_lhsteacherDesktopIconInfo[i]])
  2375. }, _frag); //
  2376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2379. }
  2380. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2381. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2382. _content = $$("div", {
  2383. className: "U_MD_D_KO",
  2384. "onmousedown": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2388. "onclick": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_zhoujiateacherDesktopIconInfo[i]])
  2392. }, _frag); //
  2393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2396. }
  2397. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2398. for (i = 0; i < _hanDeskIcon.length; i++) {
  2399. _content = $$("div", {
  2400. className: "U_MD_D_KO",
  2401. "onmousedown": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_hanDeskIcon[i]]),
  2405. "onclick": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_hanDeskIcon[i]])
  2409. }, _frag); //
  2410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2413. }
  2414. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2415. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_orgStemDeskIcon[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_orgStemDeskIcon[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2430. }
  2431. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2432. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_szulsDeskIcon[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_szulsDeskIcon[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2447. }
  2448. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2449. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_orgDesktopIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_orgDesktopIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2466. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_schoolDesktopIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_schoolDesktopIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2483. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_GMteacherDesktopIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_GMteacherDesktopIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2500. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  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. }, [_SONGteacherDesktopIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_SONGteacherDesktopIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2517. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_GMstudentDesktopIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_GMstudentDesktopIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2534. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_tcTeacherDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_tcTeacherDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2549. }
  2550. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2551. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_tcOrganizerDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_tcOrganizerDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2568. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2569. _content = $$("div", {
  2570. className: "U_MD_D_KO",
  2571. "onmousedown": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_szscTeacherDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_szscTeacherDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2585. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_szscOrganizerDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_szscOrganizerDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else {
  2602. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2603. _content = $$("div", {
  2604. className: "U_MD_D_KO",
  2605. "onmousedown": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_teacherDesktopIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_teacherDesktopIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. }
  2619. } else {
  2620. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. style: { 'width': '124px', 'height': '145px' },
  2624. "onmousedown": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_easyDesktopIconInfo[i]]),
  2628. "onclick": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_easyDesktopIconInfo[i]])
  2632. }, _frag); //
  2633. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2636. }
  2637. }
  2638. if (type == 1) {
  2639. //加载好后给图标定位
  2640. U.MD.D.iconPostion($(_frag).Child());
  2641. } else {
  2642. //加载好后给图标定位
  2643. U.MD.D.iconPostion2($(_frag).Child());
  2644. }
  2645. //把图标加载到页面
  2646. el.appendChild(_frag);
  2647. }
  2648. /**
  2649. * 显示任务栏
  2650. *
  2651. * @param {element} 桌面元素
  2652. */
  2653. U.MD.D.I.displayTaskbar = function (el) {
  2654. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2655. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2656. //任务栏位置变化
  2657. U.selectEl(el).css({ "bottom": "0px" });
  2658. //桌面位置变话
  2659. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2660. }
  2661. }
  2662. //#region 桌面图标拖动逻辑
  2663. /**
  2664. * 桌面排列图标
  2665. *
  2666. * @param {element} 桌面元素
  2667. * @param {object} 上下相距的距离
  2668. * @param {object} 左右相距的距离
  2669. * @return {object} 命名空间
  2670. */
  2671. U.MD.D.iconPostion = function (childs, top, left) {
  2672. var i; //用于循环处理
  2673. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2674. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2675. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2676. for (i = 0; i < childs.length; i++) {
  2677. //如果竖排top超过了范围处理
  2678. if (top + 95 > US.height - 10) {
  2679. //left超过了页面范围处理,则向上重叠打印处理
  2680. if ((left + 180) > US.width) {
  2681. top -= 110;
  2682. left -= 90;
  2683. }
  2684. //没有超过范围,那么left+90添加到下一个竖排打印
  2685. else {
  2686. left += 90;
  2687. top = 15;
  2688. };
  2689. }
  2690. //给图标的位置赋值
  2691. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2692. if (i < childs.length - 1) {
  2693. //页面图标每次向下加95
  2694. top += 95;
  2695. }
  2696. }
  2697. //返回最后调用的图标的位置
  2698. return [top, left];
  2699. }
  2700. /**
  2701. * 桌面排列图标
  2702. *
  2703. * @param {element} 桌面元素
  2704. * @param {object} 上下相距的距离
  2705. * @param {object} 左右相距的距离
  2706. * @return {object} 命名空间
  2707. */
  2708. U.MD.D.iconPostion2 = function (childs, top, left) {
  2709. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2710. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2711. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2712. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2713. for (i = 0; i < childs.length; i++) {
  2714. //如果竖排top超过了范围处理
  2715. if (left + 150 > US.width - 10) {
  2716. //left超过了页面范围处理,则向上重叠打印处理
  2717. if ((top + 180) > US.Height) {
  2718. top -= 150;
  2719. left -= 150;
  2720. }
  2721. //没有超过范围,那么left+90添加到下一个竖排打印
  2722. else {
  2723. top += 150;
  2724. left = ol;
  2725. };
  2726. }
  2727. //给图标的位置赋值
  2728. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2729. if (i < childs.length - 1) {
  2730. //页面图标每次向下加95
  2731. left += 150;
  2732. }
  2733. }
  2734. //返回最后调用的图标的位置
  2735. return [top, left];
  2736. }
  2737. /**
  2738. * 桌面点击事件逻辑
  2739. *
  2740. * @param {element} 桌面元素
  2741. * @param {object} 上下相距的距离
  2742. * @param {object} 左右相距的距离
  2743. * @return {object} 命名空间
  2744. */
  2745. U.MD.D.click = function (el, obj) {
  2746. var _buttonnumber = event.button; //点击的按钮的事件值
  2747. var _userinfo = US.userInfo;
  2748. U.UF.EV.stopBubble(); //阻止向上冒泡
  2749. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2750. if (_buttonnumber < 2) {
  2751. //如果是click事件的处理
  2752. if (event.type == "click") {
  2753. //如果元素在mousemove事件中没有移动则出发click事件
  2754. if (!U.MD.D.I.IsDrag) {
  2755. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2756. U.alert("请先登录您的账号!");
  2757. setTimeout(() => {
  2758. U.MD.U.L.login();
  2759. }, 2000);
  2760. } else {
  2761. //打开应用处理
  2762. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2763. }
  2764. }
  2765. }
  2766. //如果是mouse事件的处理
  2767. else {
  2768. if (US.Config.type == '1') {
  2769. //拖动处理,添加拖动和拖动结束事件
  2770. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2771. }
  2772. }
  2773. U.MD.D.I.IsDrag = false;
  2774. }
  2775. }
  2776. /**
  2777. * 拖动的处理
  2778. *
  2779. */
  2780. U.MD.D.iconMove = function () {
  2781. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2782. U.MD.D.I.IsDrag = true;
  2783. }
  2784. /**
  2785. * 拖动结束后,这里是定位处理,以网状的形式定位
  2786. *
  2787. * @param {element} 拖动的元素
  2788. * @return {object} 命名空间
  2789. */
  2790. U.MD.D.iconUp = function (el) {
  2791. var _top = 15,
  2792. _left = 20,
  2793. _margin,
  2794. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2795. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2796. if (_positioninfo["OT"] > 15) {
  2797. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2798. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2799. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2800. }
  2801. if (_positioninfo["OL"] > 20) {
  2802. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2803. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2804. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2805. }
  2806. //while循环判断么一个重叠的元素
  2807. do {
  2808. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2809. _top = _positioninfo[0] + 95; //得到定位后的top
  2810. _left = _positioninfo[1]; //得到定位后的left
  2811. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2812. }
  2813. /**
  2814. * 判断拖动后图标是否重叠
  2815. *
  2816. * @param {element} 拖动的元素
  2817. * @param {element} 桌面所有的元素
  2818. * @param {array} 拖动元素的位置
  2819. ----------[0] 上 top
  2820. ----------[1] 左 left
  2821. * @return {object} 命名空间
  2822. */
  2823. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2824. //循环所有的图标
  2825. for (var i = 0; i < childs.length; i++) {
  2826. //判断有没有和该图标诶子重叠的元素
  2827. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2828. return childs[i]; //如果有返回
  2829. }
  2830. }
  2831. }
  2832. //#endregion
  2833. //#endregion
  2834. //#region 桌面应用
  2835. /**
  2836. * 打开应用
  2837. *
  2838. * @param {string} 类型
  2839. -----------------Disk 网盘系统
  2840. -----------------PDisk 学习系统网盘
  2841. -----------------Poto 图片
  2842. -----------------Video 视频
  2843. -----------------Music 音乐
  2844. -----------------Word word
  2845. -----------------Excel excel
  2846. -----------------Txt 记事本
  2847. -----------------PB 学习系统
  2848. -----------------Blog 朋友圈系统
  2849. -----------------FTP ftp系统
  2850. -----------------Group 好友群
  2851. -----------------SY 首页系统
  2852. -----------------Set 个人设置
  2853. -----------------XSet 系统设置
  2854. -----------------App 我们所有的app
  2855. -----------------BC c.1473.cn 平台
  2856. -----------------CWeb d.1473.cn 变成平台
  2857. -----------------其他的外联系统 我们统一用iframe打开
  2858. * @param {array} 类型
  2859. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2860. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2861. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2862. 如果第一个参数为其他,则无第二个参数
  2863. * @returns {array}
  2864. */
  2865. window.addEventListener('message', function (e) { // 监听 message 事件
  2866. // alert(e.data.type);
  2867. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2869. //3是展示全部阶段 2学生 1老师 4专家
  2870. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2875. //3是展示全部阶段 2学生 1老师 4专家
  2876. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2877. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2878. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2879. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2880. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2881. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2882. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2883. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2884. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2885. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2886. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2887. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2888. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2889. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2890. //3是展示全部阶段 2学生 1老师 4专家
  2891. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2892. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2893. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2894. U.MD.D.I.selectUser();
  2895. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2896. var _formel = document.getElementById("study");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2899. var _formel = document.getElementById("studyDetail");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2902. var _formel = document.getElementById("studyDetail");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2905. var _formel = document.getElementById("studentStudy");
  2906. U.UF.F.windowZooming(_formel);
  2907. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2908. // var _formel = document.getElementById("study");
  2909. //如果最大化了,那么就把他缩小
  2910. // if (_formel.ismaximize) {
  2911. // return;
  2912. // }
  2913. // U.UF.F.windowZooming(_formel);
  2914. // U.UF.F.topWindow(_formel);
  2915. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2916. // var _formel = document.getElementById("studyDetail");
  2917. //如果最大化了,那么就把他缩小
  2918. // if (_formel.ismaximize) {
  2919. // return;
  2920. // }
  2921. // U.UF.F.windowZooming(_formel);
  2922. // U.UF.F.topWindow(_formel);
  2923. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2924. // var _formel = document.getElementById("studentStudy");
  2925. // if (_formel.ismaximize) {
  2926. // return;
  2927. // }
  2928. // U.UF.F.windowZooming(_formel);
  2929. // U.UF.F.topWindow(_formel);
  2930. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2931. var _formel = document.getElementById("study");
  2932. // if (_formel.ismaximize) {
  2933. // return;
  2934. // }
  2935. // U.UF.F.windowZooming(_formel);
  2936. U.UF.F.topWindow(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2938. var _formel = document.getElementById("studentIndex");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2941. var _formel = document.getElementById("studyDetailS");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2944. var _formel = document.getElementById("studioIndex");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2947. var _formel = document.getElementById("studyDetailStudio");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2950. var _formel = document.getElementById("studyDetailStudio");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2953. var _formel = document.getElementById("studyDetailNT");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2956. var _formel = document.getElementById("studyDetailS");
  2957. U.UF.F.windowZooming(_formel);
  2958. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2959. var _formel = document.getElementById("studyDetailS");
  2960. U.UF.F.topWindow(_formel);
  2961. } else if (e.data.tools && e.data.tools == "1") {
  2962. // U.MD.D.I.openApplication("whiteboard")
  2963. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2964. } else if (e.data.tools && e.data.tools == "2") {
  2965. U.MD.D.I.openApplication("note")
  2966. } else if (e.data.tools && e.data.tools == "3") {
  2967. // U.MD.D.I.openApplication("mind")
  2968. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2969. } else if (e.data.tools && e.data.tools == "4") {
  2970. U.MD.D.I.openApplication("investigation")
  2971. } else if (e.data.tools && e.data.tools == "6") {
  2972. // U.MD.D.I.openApplication("doc")
  2973. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2974. } else if (e.data.tools && e.data.tools == "7") {
  2975. // U.MD.D.I.openApplication("mindNetwork")
  2976. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2977. } else if (e.data.tools && e.data.tools == "8") {
  2978. U.MD.D.I.openApplication("library")
  2979. } else if (e.data.tools && e.data.tools == "17") {
  2980. U.MD.D.I.openApplication("stuLibrary")
  2981. } else if (e.data.tools && e.data.tools == "18") {
  2982. U.MD.D.I.openApplication("train")
  2983. } else if (e.data.tools && e.data.tools == "21") {
  2984. U.MD.D.I.openApplication("program")
  2985. } else if (e.data.tools && e.data.tools == "22") {
  2986. U.MD.D.I.openApplication("AIprogram2")
  2987. } else if (e.data.tools && e.data.tools == "23") {
  2988. U.MD.D.I.openApplication("Pythonprogram")
  2989. } else if (e.data.tools && e.data.tools == "24") {
  2990. U.MD.D.I.openApplication("AIprogram")
  2991. } else if (e.data.tools && e.data.tools == "25") {
  2992. U.MD.D.I.openApplication("sys")
  2993. } else if (e.data.tools && e.data.tools == "26") {
  2994. // U.MD.D.I.openApplication("courseDesign")
  2995. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2996. } else if (e.data.tools && e.data.tools == "31") {
  2997. U.MD.D.I.openApplication("netWorkPanel")
  2998. } else if (e.data.tools && e.data.tools == "32") {
  2999. U.MD.D.I.openApplication("codeEdit")
  3000. } else if (e.data.tools && e.data.tools == "57") {
  3001. U.MD.D.I.openApplication("CocoPi")
  3002. } else if (e.data.tools && e.data.tools == "63") {
  3003. U.MD.D.I.openApplication("Wood")
  3004. } else if (e.data.tools && e.data.tools == "58") {
  3005. U.MD.D.I.openApplication("car")
  3006. } else if (e.data.tools && e.data.tools == "59") {
  3007. U.MD.D.I.openApplication("lineSearch")
  3008. } else if (e.data.tools && e.data.tools == "60") {
  3009. U.MD.D.I.openApplication("deepLearning")
  3010. } else if (e.data.tools && e.data.tools == "61") {
  3011. U.MD.D.I.openApplication("allHistory")
  3012. } else if (e.data.tools && e.data.tools == "28") {
  3013. U.MD.D.I.openApplication("translation")
  3014. } else if (e.data.tools && e.data.tools == "37") {
  3015. U.MD.D.I.openApplication("mohe")
  3016. } else if (e.data.tools && e.data.tools == "38") {
  3017. U.MD.D.I.openApplication("24game")
  3018. } else if (e.data.tools && e.data.tools == "39") {
  3019. U.MD.D.I.openApplication("GeoGebra")
  3020. } else if (e.data.tools && e.data.tools == "43") {
  3021. U.MD.D.I.openApplication("studentEvaluate")
  3022. } else if (e.data.tools && e.data.tools == "44") {
  3023. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3024. } else if (e.data.tools && e.data.tools == "46") {
  3025. U.MD.D.I.openApplication("project")
  3026. } else if (e.data.tools && e.data.tools == "71") {
  3027. U.MD.D.I.openApplication("aigptCourse")
  3028. } else if (e.data.tools && e.data.tools == "1s") {
  3029. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3030. } else if (e.data.tools && e.data.tools == "3s") {
  3031. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3032. } else if (e.data.tools && e.data.tools == "6s") {
  3033. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3034. } else if (e.data.tools && e.data.tools == "1studio") {
  3035. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3036. } else if (e.data.tools && e.data.tools == "3studio") {
  3037. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3038. } else if (e.data.tools && e.data.tools == "6studio") {
  3039. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3040. } else if (e.data.tools && e.data.tools == "3y") {
  3041. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3042. } else if (e.data.tools && e.data.tools == "1y") {
  3043. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3044. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3045. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3046. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3047. U.MD.D.I.openApplication("AIAnalyse")
  3048. } else if (e.data.tools && e.data.tools == "1teacher") {
  3049. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3050. } else if (e.data.tools && e.data.tools == "3teacher") {
  3051. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3052. } else if (e.data.tools && e.data.tools == "7teacher") {
  3053. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3054. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3055. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3056. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3057. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3058. } else if (e.data.tools && e.data.tools == "1E") {
  3059. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3060. } else if (e.data.tools && e.data.tools == "3E") {
  3061. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3062. } else if (e.data.tools && e.data.tools == "57y") {
  3063. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3064. } else if (e.data.tools && e.data.tools == "57u") {
  3065. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3066. } else if (e.data.tools && e.data.tools == "57teacher") {
  3067. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3068. } else if (e.data.tools && e.data.tools == "64") {
  3069. U.MD.D.I.openApplication("AIChat")
  3070. } else if (e.data.tools && e.data.tools == "66") {
  3071. U.MD.D.I.openApplication("formulaEdi")
  3072. } else if (e.data.tools && e.data.tools == "67") {
  3073. U.MD.D.I.openApplication("molStr")
  3074. } else if (e.data.tools && e.data.tools == "68") {
  3075. U.MD.D.I.openApplication("timeAxis")
  3076. } else if (e.data.tools && e.data.tools == "openCourse") {
  3077. let _data = {
  3078. typea: e.data.typea || '',
  3079. typeb: e.data.typeb || '',
  3080. typed: e.data.typed || '',
  3081. }
  3082. U.MD.D.I.openInApplication("index", _data)
  3083. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3084. let _data = {
  3085. classid: e.data.classid || '',
  3086. }
  3087. U.MD.D.I.openInApplication("dataClass", _data)
  3088. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3089. let _data = {
  3090. cid: e.data.cid || '',
  3091. gid: e.data.gid || '',
  3092. }
  3093. U.MD.D.I.openInApplication("opencCscl", _data)
  3094. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3095. U.MD.D.I.openApplication("dataBoardTest")
  3096. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3097. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3098. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3099. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3100. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3101. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3102. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3103. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3104. }else if (e.data.tools && e.data.tools == "loginSz") {
  3105. U.MD.D.I.openInApplication("loginSz")
  3106. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3107. if($('#classroom_observation_board')[0]){
  3108. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3109. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3110. }
  3111. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3112. }
  3113. });
  3114. U.MD.D.I.selectUser = function () {
  3115. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3116. if (res.value[0].length > 0) {
  3117. US.userInfo = res.value[0][0];
  3118. $(".userName")[0].innerHTML = US.userInfo.username;
  3119. }
  3120. }, [], { "type": "GET", "withCredentials": true });
  3121. }
  3122. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3123. var _userinfo = US.userInfo, //登录用户信息
  3124. _userid = US.userInfo.userid, //登录用户id
  3125. _oid = _userinfo.organizeid,
  3126. _type = US.userInfo.type,
  3127. _org = US.userInfo.org,
  3128. _role = US.userInfo.role,
  3129. _classId = US.userInfo.classid;
  3130. if (_type == 4) {
  3131. tType = 4
  3132. }
  3133. switch (str) {
  3134. case "studyDetailNT": //无终端模式
  3135. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3136. setTimeout(() => {
  3137. U.MD.U.L.login();
  3138. }, 2000);
  3139. } else {
  3140. _formdiv = new U.UF.UI.form(
  3141. "课程详情",
  3142. $$("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 }), {
  3143. "id": "studyDetailNT",
  3144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3145. "onresize": function () { }
  3146. }, {
  3147. closecallback: function () { }
  3148. }, { "style": { "height": "36px" } }).form; //创建窗体
  3149. _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); } }
  3150. break;
  3151. }
  3152. case "studyDetail":
  3153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3154. setTimeout(() => {
  3155. U.MD.U.L.login();
  3156. }, 2000);
  3157. } else {
  3158. _formdiv = new U.UF.UI.form(
  3159. "课程详情",
  3160. $$("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 }), {
  3161. "id": "studyDetail",
  3162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3163. "onresize": function () { }
  3164. }, {
  3165. closecallback: function () { }
  3166. }, { "style": { "height": "36px" } }).form; //创建窗体
  3167. _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); } }
  3168. break;
  3169. }
  3170. case "studyDetailTrain":
  3171. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3172. setTimeout(() => {
  3173. U.MD.U.L.login();
  3174. }, 2000);
  3175. } else {
  3176. _formdiv = new U.UF.UI.form(
  3177. "培训详情",
  3178. $$("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 }), {
  3179. "id": "studyDetailTrain",
  3180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3181. "onresize": function () { }
  3182. }, {
  3183. closecallback: function () { }
  3184. }, { "style": { "height": "36px" } }).form; //创建窗体
  3185. _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); } }
  3186. break;
  3187. }
  3188. case "studyDetailS":
  3189. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3190. setTimeout(() => {
  3191. U.MD.U.L.login();
  3192. }, 2000);
  3193. } else {
  3194. _formdiv = new U.UF.UI.form(
  3195. "项目详情",
  3196. $$("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 }), {
  3197. "id": "studyDetailS",
  3198. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3199. "onresize": function () { }
  3200. }, {
  3201. closecallback: function () { }
  3202. }, { "style": { "height": "36px" } }).form; //创建窗体
  3203. _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); } }
  3204. break;
  3205. }
  3206. case "studyDetailStudio":
  3207. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3208. setTimeout(() => {
  3209. U.MD.U.L.login();
  3210. }, 2000);
  3211. } else {
  3212. _formdiv = new U.UF.UI.form(
  3213. "工作详情",
  3214. $$("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 }), {
  3215. "id": "studyDetailStudio",
  3216. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3217. "onresize": function () { }
  3218. }, {
  3219. closecallback: function () { }
  3220. }, { "style": { "height": "36px" } }).form; //创建窗体
  3221. _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); } }
  3222. break;
  3223. }
  3224. case "studyDetailS5":
  3225. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3226. setTimeout(() => {
  3227. U.MD.U.L.login();
  3228. }, 2000);
  3229. } else {
  3230. _formdiv = new U.UF.UI.form(
  3231. "项目详情",
  3232. $$("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 }), {
  3233. "id": "studyDetailS",
  3234. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3235. "onresize": function () { }
  3236. }, {
  3237. closecallback: function () { }
  3238. }, { "style": { "height": "36px" } }).form; //创建窗体
  3239. _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); } }
  3240. break;
  3241. }
  3242. case "studyDetailGM":
  3243. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3244. setTimeout(() => {
  3245. U.MD.U.L.login();
  3246. }, 2000);
  3247. } else {
  3248. _formdiv = new U.UF.UI.form(
  3249. "课程详情",
  3250. $$("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 }), {
  3251. "id": "studyDetail",
  3252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3253. "onresize": function () { }
  3254. }, {
  3255. closecallback: function () { }
  3256. }, { "style": { "height": "36px" } }).form; //创建窗体
  3257. _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); } }
  3258. break;
  3259. }
  3260. case "hanUrl":
  3261. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3262. setTimeout(() => {
  3263. U.MD.U.L.login();
  3264. }, 2000);
  3265. } else {
  3266. _formdiv = new U.UF.UI.form(
  3267. "汉字宫",
  3268. $$("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" }), {
  3269. "id": "hanUrl",
  3270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3271. "onresize": function () { }
  3272. }, {
  3273. closecallback: function () { }
  3274. }, { "style": { "height": "36px" } }).form; //创建窗体
  3275. _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); } }
  3276. break;
  3277. }
  3278. case "index":
  3279. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3280. setTimeout(() => {
  3281. U.MD.U.L.login();
  3282. }, 2000);
  3283. } else {
  3284. _formdiv = new U.UF.UI.form(
  3285. "课程中心",
  3286. $$("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 }), {
  3287. "id": "study",
  3288. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3289. "onresize": function () { }
  3290. }, {
  3291. closecallback: function () { }
  3292. }, { "style": { "height": "36px" } }).form; //创建窗体
  3293. _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); } }
  3294. break;
  3295. }
  3296. case "dataClass":
  3297. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3298. setTimeout(() => {
  3299. U.MD.U.L.login();
  3300. }, 2000);
  3301. } else {
  3302. _formdiv = new U.UF.UI.form(
  3303. "数据报告",
  3304. $$("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 }), {
  3305. "id": "dataClass",
  3306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3307. "onresize": function () { }
  3308. }, {
  3309. closecallback: function () { }
  3310. }, { "style": { "height": "36px" } }).form; //创建窗体
  3311. _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); } }
  3312. break;
  3313. }
  3314. case "opencCscl":
  3315. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3316. setTimeout(() => {
  3317. U.MD.U.L.login();
  3318. }, 2000);
  3319. } else {
  3320. _formdiv = new U.UF.UI.form(
  3321. "协同建构",
  3322. $$("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 }), {
  3323. "id": "futureClass",
  3324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3325. "onresize": function () { }
  3326. }, {
  3327. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3328. }, { "style": { "height": "36px" } }).form; //创建窗体
  3329. _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); } }
  3330. break;
  3331. }
  3332. case "openCourseUpdate":
  3333. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3334. setTimeout(() => {
  3335. U.MD.U.L.login();
  3336. }, 2000);
  3337. } else {
  3338. _formdiv = new U.UF.UI.form(
  3339. "课程管理",
  3340. $$("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 }), {
  3341. "id": "openCourseUpdate",
  3342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3343. "onresize": function () { }
  3344. }, {
  3345. closecallback: function () { }
  3346. }, { "style": { "height": "36px" } }).form; //创建窗体
  3347. break;
  3348. }
  3349. case "openNewCourseUpdate":
  3350. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3351. setTimeout(() => {
  3352. U.MD.U.L.login();
  3353. }, 2000);
  3354. } else {
  3355. _formdiv = new U.UF.UI.form(
  3356. "课程管理",
  3357. $$("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 }), {
  3358. "id": "openCourseUpdate",
  3359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3360. "onresize": function () { }
  3361. }, {
  3362. closecallback: function () { }
  3363. }, { "style": { "height": "36px" } }).form; //创建窗体
  3364. break;
  3365. }
  3366. case "openCourseEUpdate":
  3367. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3368. setTimeout(() => {
  3369. U.MD.U.L.login();
  3370. }, 2000);
  3371. } else {
  3372. _formdiv = new U.UF.UI.form(
  3373. "课程管理",
  3374. $$("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 }), {
  3375. "id": "openCourseUpdate",
  3376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3377. "onresize": function () { }
  3378. }, {
  3379. closecallback: function () { }
  3380. }, { "style": { "height": "36px" } }).form; //创建窗体
  3381. break;
  3382. }
  3383. case "openCourseNewUpdate":
  3384. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3385. setTimeout(() => {
  3386. U.MD.U.L.login();
  3387. }, 2000);
  3388. } else {
  3389. _formdiv = new U.UF.UI.form(
  3390. "课程管理",
  3391. $$("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 }), {
  3392. "id": "openCourseUpdate",
  3393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3394. "onresize": function () { }
  3395. }, {
  3396. closecallback: function () { }
  3397. }, { "style": { "height": "36px" } }).form; //创建窗体
  3398. break;
  3399. }
  3400. case "inviteLoginSz":
  3401. _formdiv = new U.UF.UI.form(
  3402. "随机码登录",
  3403. $$("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 }), {
  3404. "id": "loginSz",
  3405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3406. "onresize": function () { }
  3407. }, {
  3408. closecallback: function () { }
  3409. }, { "style": { "height": "36px" } }).form; //创建窗体
  3410. break;
  3411. case "loginSz":
  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": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  3415. "id": "loginSz",
  3416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3417. "onresize": function () { }
  3418. }, {
  3419. closecallback: function () { }
  3420. }, { "style": { "height": "36px" } }).form; //创建窗体
  3421. break;
  3422. case "teacher":
  3423. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3424. setTimeout(() => {
  3425. U.MD.U.L.login();
  3426. }, 2000);
  3427. } else {
  3428. _formdiv = new U.UF.UI.form(
  3429. "教师管理",
  3430. $$("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 }), {
  3431. "id": "teacher",
  3432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3433. "onresize": function () { }
  3434. }, {
  3435. closecallback: function () { }
  3436. }, { "style": { "height": "36px" } }).form; //创建窗体
  3437. break;
  3438. }
  3439. case "dataBoardSZArea":
  3440. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3441. setTimeout(() => {
  3442. U.MD.U.L.login();
  3443. }, 2000);
  3444. } else {
  3445. _formdiv = new U.UF.UI.form(
  3446. "综合数据看板",
  3447. $$("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 }), {
  3448. "id": "dataBoardSZArea",
  3449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3450. "onresize": function () { }
  3451. }, {
  3452. closecallback: function () { }
  3453. }, { "style": { "height": "36px" } }).form; //创建窗体
  3454. break;
  3455. }
  3456. case "dataBoardSZCity":
  3457. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3458. setTimeout(() => {
  3459. U.MD.U.L.login();
  3460. }, 2000);
  3461. } else {
  3462. _formdiv = new U.UF.UI.form(
  3463. "综合数据看板",
  3464. $$("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 }), {
  3465. "id": "dataBoardSZCity",
  3466. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3467. "onresize": function () { }
  3468. }, {
  3469. closecallback: function () { }
  3470. }, { "style": { "height": "36px" } }).form; //创建窗体
  3471. break;
  3472. }
  3473. case "classroom_observation_board":
  3474. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3475. setTimeout(() => {
  3476. U.MD.U.L.login();
  3477. }, 2000);
  3478. } else {
  3479. _formdiv = new U.UF.UI.form(
  3480. "课堂观察",
  3481. $$("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 }), {
  3482. "id": "classroom_observation_board",
  3483. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3484. "onresize": function () { }
  3485. }, {
  3486. closecallback: function () { }
  3487. }, { "style": { "height": "36px" } }).form; //创建窗体
  3488. break;
  3489. }
  3490. }
  3491. }
  3492. U.MD.D.I.openApplication = function (str, obj, info) {
  3493. obj = obj || {};
  3494. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3495. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3496. _userinfo = US.userInfo, //登录用户信息
  3497. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3498. _oid = obj.organizeid || _userinfo.organizeid,
  3499. _type = US.userInfo.type,
  3500. _org = US.userInfo.org,
  3501. _role = US.userInfo.role,
  3502. _classId = US.userInfo.classid,
  3503. _TscreenType = 1
  3504. _screenType = 2,
  3505. _SscreenType = 3;
  3506. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3507. return;
  3508. }
  3509. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3510. switch (str) {
  3511. case "studnetProject": //好友打开
  3512. _formdiv = new U.UF.UI.form(
  3513. "我的项目",
  3514. $$("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 }), {
  3515. "id": "studnetProject",
  3516. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3517. "onresize": function () { }
  3518. }, {
  3519. closecallback: function () { }
  3520. }, { "style": { "height": "36px" } }).form; //创建窗体
  3521. _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); } }
  3522. break;
  3523. case "studentEvaluate": //好友打开
  3524. _formdiv = new U.UF.UI.form(
  3525. "我的评价",
  3526. $$("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 }), {
  3527. "id": "studentEvaluate",
  3528. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3529. "onresize": function () { }
  3530. }, {
  3531. closecallback: function () { }
  3532. }, { "style": { "height": "36px" } }).form; //创建窗体
  3533. _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); } }
  3534. break;
  3535. case "my":
  3536. _formdiv = new U.UF.UI.form(
  3537. "我的资料",
  3538. $$("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 }), {
  3539. "id": "my",
  3540. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3541. "onresize": function () { }
  3542. }, {
  3543. closecallback: function () { }
  3544. }, { "style": { "height": "36px" } }).form; //创建窗体
  3545. _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); } }
  3546. break;
  3547. case "program":
  3548. _formdiv = new U.UF.UI.form(
  3549. "编程平台",
  3550. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3551. "id": "program",
  3552. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3553. "onresize": function () { }
  3554. }, {
  3555. closecallback: function () { }
  3556. }, { "style": { "height": "36px" } }).form; //创建窗体
  3557. _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); } }
  3558. break;
  3559. case "library":
  3560. _formdiv = new U.UF.UI.form(
  3561. "素材库",
  3562. $$("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 }), {
  3563. "id": "library",
  3564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3565. "onresize": function () { }
  3566. }, {
  3567. closecallback: function () { }
  3568. }, { "style": { "height": "36px" } }).form; //创建窗体
  3569. _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); } }
  3570. break;
  3571. case "whiteboard":
  3572. _formdiv = new U.UF.UI.form(
  3573. "电子白板",
  3574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3575. "id": "whiteboard",
  3576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3577. "onresize": function () { }
  3578. }, {
  3579. closecallback: function () { }
  3580. }, { "style": { "height": "36px" } }).form; //创建窗体
  3581. _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); } }
  3582. break;
  3583. case "investigation":
  3584. _formdiv = new U.UF.UI.form(
  3585. "问卷调查",
  3586. $$("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 }), {
  3587. "id": "investigation",
  3588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3589. "onresize": function () { }
  3590. }, {
  3591. closecallback: function () { }
  3592. }, { "style": { "height": "36px" } }).form; //创建窗体
  3593. _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); } }
  3594. break;
  3595. case "note":
  3596. _formdiv = new U.UF.UI.form(
  3597. "便签分类",
  3598. $$("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 }), {
  3599. "id": "note",
  3600. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3601. "onresize": function () { }
  3602. }, {
  3603. closecallback: function () { }
  3604. }, { "style": { "height": "36px" } }).form; //创建窗体
  3605. _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); } }
  3606. break;
  3607. // case "score":
  3608. // _formdiv = new U.UF.UI.form(
  3609. // "量规评分",
  3610. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3611. // "id": "score",
  3612. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3613. // "onresize": function() {}
  3614. // }, {
  3615. // closecallback: function() {}
  3616. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3617. // _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); } }
  3618. // break;
  3619. case "mind":
  3620. _formdiv = new U.UF.UI.form(
  3621. "思维导图",
  3622. $$("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"
  3623. "id": "mind",
  3624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3625. "onresize": function () { }
  3626. }, {
  3627. closecallback: function () { }
  3628. }, { "style": { "height": "36px" } }).form; //创建窗体
  3629. _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); } }
  3630. break;
  3631. case "doc":
  3632. // U.MD.D.I.isRoom();
  3633. _formdiv = new U.UF.UI.form(
  3634. "协同文档",
  3635. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3636. "id": "doc",
  3637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3638. "onresize": function () { }
  3639. }, {
  3640. closecallback: function () { }
  3641. }, { "style": { "height": "36px" } }).form; //创建窗体
  3642. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3643. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3644. // })
  3645. _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); } }
  3646. break;
  3647. case "studentStudy":
  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": 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
  3651. "id": "studentStudy",
  3652. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3653. "onresize": function () { }
  3654. }, {
  3655. closecallback: function () { }
  3656. }, { "style": { "height": "36px" } }).form; //创建窗体
  3657. _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); } }
  3658. break;
  3659. case "train": //好友打开
  3660. _formdiv = new U.UF.UI.form(
  3661. "训练平台",
  3662. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3663. "id": "train",
  3664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3665. "onresize": function () { }
  3666. }, {
  3667. closecallback: function () { }
  3668. }, { "style": { "height": "36px" } }).form; //创建窗体
  3669. _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); } }
  3670. break;
  3671. case "mindNetwork": //好友打开
  3672. _formdiv = new U.UF.UI.form(
  3673. "思维网格",
  3674. $$("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 }), {
  3675. "id": "mindNetwork",
  3676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3677. "onresize": function () { }
  3678. }, {
  3679. closecallback: function () { }
  3680. }, { "style": { "height": "36px" } }).form; //创建窗体
  3681. _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); } }
  3682. break;
  3683. case "studentClassRoom": //好友打开
  3684. _formdiv = new U.UF.UI.form(
  3685. "实时课堂",
  3686. $$("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 }), {
  3687. "id": "studentClassRoom",
  3688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3689. "onresize": function () { }
  3690. }, {
  3691. closecallback: function () { }
  3692. }, { "style": { "height": "36px" } }).form; //创建窗体
  3693. _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); } }
  3694. setTimeout(() => {
  3695. U.UF.F.windowZooming(_formdiv)
  3696. }, 0);
  3697. break;
  3698. }
  3699. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3700. switch (str) {
  3701. case "studnetProject": //好友打开
  3702. _formdiv = new U.UF.UI.form(
  3703. "我的项目",
  3704. $$("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 }), {
  3705. "id": "studnetProject",
  3706. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3707. "onresize": function () { }
  3708. }, {
  3709. closecallback: function () { }
  3710. }, { "style": { "height": "36px" } }).form; //创建窗体
  3711. _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); } }
  3712. break;
  3713. case "studentEvaluate": //好友打开
  3714. _formdiv = new U.UF.UI.form(
  3715. "我的评价",
  3716. $$("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 }), {
  3717. "id": "studentEvaluate",
  3718. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3719. "onresize": function () { }
  3720. }, {
  3721. closecallback: function () { }
  3722. }, { "style": { "height": "36px" } }).form; //创建窗体
  3723. _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); } }
  3724. break;
  3725. case "my":
  3726. _formdiv = new U.UF.UI.form(
  3727. "我的资料",
  3728. $$("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 }), {
  3729. "id": "my",
  3730. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3731. "onresize": function () { }
  3732. }, {
  3733. closecallback: function () { }
  3734. }, { "style": { "height": "36px" } }).form; //创建窗体
  3735. _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); } }
  3736. break;
  3737. case "program":
  3738. _formdiv = new U.UF.UI.form(
  3739. "编程平台",
  3740. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3741. "id": "program",
  3742. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3743. "onresize": function () { }
  3744. }, {
  3745. closecallback: function () { }
  3746. }, { "style": { "height": "36px" } }).form; //创建窗体
  3747. _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); } }
  3748. break;
  3749. case "library":
  3750. _formdiv = new U.UF.UI.form(
  3751. "素材库",
  3752. $$("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 }), {
  3753. "id": "library",
  3754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3755. "onresize": function () { }
  3756. }, {
  3757. closecallback: function () { }
  3758. }, { "style": { "height": "36px" } }).form; //创建窗体
  3759. _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); } }
  3760. break;
  3761. case "whiteboard":
  3762. _formdiv = new U.UF.UI.form(
  3763. "电子白板",
  3764. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3765. "id": "whiteboard",
  3766. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3767. "onresize": function () { }
  3768. }, {
  3769. closecallback: function () { }
  3770. }, { "style": { "height": "36px" } }).form; //创建窗体
  3771. _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); } }
  3772. break;
  3773. case "investigation":
  3774. _formdiv = new U.UF.UI.form(
  3775. "问卷调查",
  3776. $$("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 }), {
  3777. "id": "investigation",
  3778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3779. "onresize": function () { }
  3780. }, {
  3781. closecallback: function () { }
  3782. }, { "style": { "height": "36px" } }).form; //创建窗体
  3783. _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); } }
  3784. break;
  3785. case "note":
  3786. _formdiv = new U.UF.UI.form(
  3787. "便签分类",
  3788. $$("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 }), {
  3789. "id": "note",
  3790. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3791. "onresize": function () { }
  3792. }, {
  3793. closecallback: function () { }
  3794. }, { "style": { "height": "36px" } }).form; //创建窗体
  3795. _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); } }
  3796. break;
  3797. // case "score":
  3798. // _formdiv = new U.UF.UI.form(
  3799. // "量规评分",
  3800. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3801. // "id": "score",
  3802. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3803. // "onresize": function() {}
  3804. // }, {
  3805. // closecallback: function() {}
  3806. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3807. // _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); } }
  3808. // break;
  3809. case "mind":
  3810. _formdiv = new U.UF.UI.form(
  3811. "思维导图",
  3812. $$("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"
  3813. "id": "mind",
  3814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3815. "onresize": function () { }
  3816. }, {
  3817. closecallback: function () { }
  3818. }, { "style": { "height": "36px" } }).form; //创建窗体
  3819. _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); } }
  3820. break;
  3821. case "doc":
  3822. // U.MD.D.I.isRoom();
  3823. _formdiv = new U.UF.UI.form(
  3824. "协同文档",
  3825. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3826. "id": "doc",
  3827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3828. "onresize": function () { }
  3829. }, {
  3830. closecallback: function () { }
  3831. }, { "style": { "height": "36px" } }).form; //创建窗体
  3832. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3833. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3834. })
  3835. _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); } }
  3836. break;
  3837. case "train": //好友打开
  3838. _formdiv = new U.UF.UI.form(
  3839. "训练平台",
  3840. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3841. "id": "train",
  3842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3843. "onresize": function () { }
  3844. }, {
  3845. closecallback: function () { }
  3846. }, { "style": { "height": "36px" } }).form; //创建窗体
  3847. _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); } }
  3848. break;
  3849. case "studentStudy":
  3850. _formdiv = new U.UF.UI.form(
  3851. "课程中心",
  3852. $$("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
  3853. "id": "studentStudy",
  3854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3855. "onresize": function () { }
  3856. }, {
  3857. closecallback: function () { }
  3858. }, { "style": { "height": "36px" } }).form; //创建窗体
  3859. _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); } }
  3860. break;
  3861. case "mindNetwork": //好友打开
  3862. _formdiv = new U.UF.UI.form(
  3863. "思维网格",
  3864. $$("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 }), {
  3865. "id": "mindNetwork",
  3866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3867. "onresize": function () { }
  3868. }, {
  3869. closecallback: function () { }
  3870. }, { "style": { "height": "36px" } }).form; //创建窗体
  3871. _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); } }
  3872. break;
  3873. case "studentClassRoom": //好友打开
  3874. _formdiv = new U.UF.UI.form(
  3875. "实时课堂",
  3876. $$("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 }), {
  3877. "id": "studentClassRoom",
  3878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3879. "onresize": function () { }
  3880. }, {
  3881. closecallback: function () { }
  3882. }, { "style": { "height": "36px" } }).form; //创建窗体
  3883. _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); } }
  3884. setTimeout(() => {
  3885. U.UF.F.windowZooming(_formdiv)
  3886. }, 0);
  3887. break;
  3888. }
  3889. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3890. //选择应用处理
  3891. switch (str) {
  3892. case "project": //好友打开
  3893. _formdiv = new U.UF.UI.form(
  3894. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3895. $$("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 }), {
  3896. "id": "project",
  3897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3898. "onresize": function () { }
  3899. }, {
  3900. closecallback: function () { }
  3901. }, { "style": { "height": "36px" } }).form; //创建窗体
  3902. _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); } }
  3903. break;
  3904. case "student":
  3905. _formdiv = new U.UF.UI.form(
  3906. "学生管理",
  3907. $$("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 }), {
  3908. "id": "student",
  3909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3910. "onresize": function () { }
  3911. }, {
  3912. closecallback: function () { }
  3913. }, { "style": { "height": "36px" } }).form; //创建窗体
  3914. _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); } }
  3915. break;
  3916. case "evaluate":
  3917. _formdiv = new U.UF.UI.form(
  3918. "学生评价",
  3919. $$("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 }), {
  3920. "id": "evaluate",
  3921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3922. "onresize": function () { }
  3923. }, {
  3924. closecallback: function () { }
  3925. }, { "style": { "height": "36px" } }).form; //创建窗体
  3926. _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); } }
  3927. break;
  3928. case "sys":
  3929. _formdiv = new U.UF.UI.form(
  3930. "目标管理",
  3931. $$("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 }), {
  3932. "id": "sys",
  3933. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3934. "onresize": function () { }
  3935. }, {
  3936. closecallback: function () { }
  3937. }, { "style": { "height": "36px" } }).form; //创建窗体
  3938. _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); } }
  3939. break;
  3940. case "courseDesign":
  3941. _formdiv = new U.UF.UI.form(
  3942. "项目设计",
  3943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3944. "id": "courseDesign",
  3945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3946. "onresize": function () { }
  3947. }, {
  3948. closecallback: function () { }
  3949. }, { "style": { "height": "36px" } }).form; //创建窗体
  3950. _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); } }
  3951. break;
  3952. case "program":
  3953. _formdiv = new U.UF.UI.form(
  3954. "编程平台",
  3955. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3956. "id": "program",
  3957. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3958. "onresize": function () { }
  3959. }, {
  3960. closecallback: function () { }
  3961. }, { "style": { "height": "36px" } }).form; //创建窗体
  3962. _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); } }
  3963. break;
  3964. case "class":
  3965. _formdiv = new U.UF.UI.form(
  3966. "班级管理",
  3967. $$("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 }), {
  3968. "id": "class",
  3969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3970. "onresize": function () { }
  3971. }, {
  3972. closecallback: function () { }
  3973. }, { "style": { "height": "36px" } }).form; //创建窗体
  3974. _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); } }
  3975. break;
  3976. case "Grade":
  3977. _formdiv = new U.UF.UI.form(
  3978. "年级管理",
  3979. $$("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 }), {
  3980. "id": "Grade",
  3981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3982. "onresize": function () { }
  3983. }, {
  3984. closecallback: function () { }
  3985. }, { "style": { "height": "36px" } }).form; //创建窗体
  3986. _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); } }
  3987. break;
  3988. case "teacherOffice":
  3989. _formdiv = new U.UF.UI.form(
  3990. "教研室",
  3991. $$("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 }), {
  3992. "id": "teacherOffice",
  3993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3994. "onresize": function () { }
  3995. }, {
  3996. closecallback: function () { }
  3997. }, { "style": { "height": "36px" } }).form; //创建窗体
  3998. _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); } }
  3999. break;
  4000. case "my":
  4001. _formdiv = new U.UF.UI.form(
  4002. "我的资料",
  4003. $$("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 }), {
  4004. "id": "my",
  4005. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4006. "onresize": function () { }
  4007. }, {
  4008. closecallback: function () { }
  4009. }, { "style": { "height": "36px" } }).form; //创建窗体
  4010. _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); } }
  4011. break;
  4012. case "notice":
  4013. _formdiv = new U.UF.UI.form(
  4014. "通知公告",
  4015. $$("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 }), {
  4016. "id": "notice",
  4017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4018. "onresize": function () { }
  4019. }, {
  4020. closecallback: function () { }
  4021. }, { "style": { "height": "36px" } }).form; //创建窗体
  4022. _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); } }
  4023. break;
  4024. case "library":
  4025. _formdiv = new U.UF.UI.form(
  4026. "素材库",
  4027. $$("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 }), {
  4028. "id": "library",
  4029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4030. "onresize": function () { }
  4031. }, {
  4032. closecallback: function () { }
  4033. }, { "style": { "height": "36px" } }).form; //创建窗体
  4034. _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); } }
  4035. break;
  4036. case "whiteboard":
  4037. _formdiv = new U.UF.UI.form(
  4038. "电子白板",
  4039. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4040. "id": "whiteboard",
  4041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4042. "onresize": function () { }
  4043. }, {
  4044. closecallback: function () { }
  4045. }, { "style": { "height": "36px" } }).form; //创建窗体
  4046. _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); } }
  4047. break;
  4048. case "investigation":
  4049. _formdiv = new U.UF.UI.form(
  4050. "问卷调查",
  4051. $$("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 }), {
  4052. "id": "investigation",
  4053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4054. "onresize": function () { }
  4055. }, {
  4056. closecallback: function () { }
  4057. }, { "style": { "height": "36px" } }).form; //创建窗体
  4058. _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); } }
  4059. break;
  4060. case "note":
  4061. _formdiv = new U.UF.UI.form(
  4062. "便签分类",
  4063. $$("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 }), {
  4064. "id": "note",
  4065. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4066. "onresize": function () { }
  4067. }, {
  4068. closecallback: function () { }
  4069. }, { "style": { "height": "36px" } }).form; //创建窗体
  4070. _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); } }
  4071. break;
  4072. // case "score":
  4073. // _formdiv = new U.UF.UI.form(
  4074. // "量规评分",
  4075. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4076. // "id": "score",
  4077. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4078. // "onresize": function() {}
  4079. // }, {
  4080. // closecallback: function() {}
  4081. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4082. // _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); } }
  4083. // break;
  4084. case "mind":
  4085. _formdiv = new U.UF.UI.form(
  4086. "思维导图",
  4087. $$("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"
  4088. "id": "mind",
  4089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4090. "onresize": function () { }
  4091. }, {
  4092. closecallback: function () { }
  4093. }, { "style": { "height": "36px" } }).form; //创建窗体
  4094. _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); } }
  4095. break;
  4096. case "doc":
  4097. // U.MD.D.I.isRoom();
  4098. _formdiv = new U.UF.UI.form(
  4099. "协同文档",
  4100. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4101. "id": "doc",
  4102. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4103. "onresize": function () { }
  4104. }, {
  4105. closecallback: function () { }
  4106. }, { "style": { "height": "36px" } }).form; //创建窗体
  4107. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4108. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4109. })
  4110. _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); } }
  4111. break;
  4112. case "study":
  4113. _formdiv = new U.UF.UI.form(
  4114. "课程中心",
  4115. $$("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
  4116. "id": "study",
  4117. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4118. "onresize": function () { }
  4119. }, {
  4120. closecallback: function () { }
  4121. }, { "style": { "height": "36px" } }).form; //创建窗体
  4122. _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); } }
  4123. break;
  4124. case "mindNetwork": //好友打开
  4125. _formdiv = new U.UF.UI.form(
  4126. "思维网格",
  4127. $$("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 }), {
  4128. "id": "mindNetwork",
  4129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4130. "onresize": function () { }
  4131. }, {
  4132. closecallback: function () { }
  4133. }, { "style": { "height": "36px" } }).form; //创建窗体
  4134. _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); } }
  4135. break;
  4136. case "train": //好友打开
  4137. _formdiv = new U.UF.UI.form(
  4138. "训练平台",
  4139. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4140. "id": "mindNetwork",
  4141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4142. "onresize": function () { }
  4143. }, {
  4144. closecallback: function () { }
  4145. }, { "style": { "height": "36px" } }).form; //创建窗体
  4146. _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); } }
  4147. break;
  4148. case "teacherClassRoom": //好友打开
  4149. _formdiv = new U.UF.UI.form(
  4150. "实时课堂",
  4151. $$("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 }), {
  4152. "id": "teacherClassRoom",
  4153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4154. "onresize": function () { }
  4155. }, {
  4156. closecallback: function () { }
  4157. }, { "style": { "height": "36px" } }).form; //创建窗体
  4158. _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); } }
  4159. setTimeout(() => {
  4160. U.UF.F.windowZooming(_formdiv)
  4161. }, 0);
  4162. break;
  4163. }
  4164. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4165. switch (str) {
  4166. case "project": //好友打开
  4167. _formdiv = new U.UF.UI.form(
  4168. "课程管理",
  4169. $$("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 }), {
  4170. "id": "project",
  4171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4172. "onresize": function () { }
  4173. }, {
  4174. closecallback: function () { }
  4175. }, { "style": { "height": "36px" } }).form; //创建窗体
  4176. _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); } }
  4177. break;
  4178. case "evaluate":
  4179. _formdiv = new U.UF.UI.form(
  4180. "学生评价",
  4181. $$("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 }), {
  4182. "id": "evaluate",
  4183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4184. "onresize": function () { }
  4185. }, {
  4186. closecallback: function () { }
  4187. }, { "style": { "height": "36px" } }).form; //创建窗体
  4188. _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); } }
  4189. break;
  4190. case "notice":
  4191. _formdiv = new U.UF.UI.form(
  4192. "通知公告",
  4193. $$("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 }), {
  4194. "id": "notice",
  4195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4196. "onresize": function () { }
  4197. }, {
  4198. closecallback: function () { }
  4199. }, { "style": { "height": "36px" } }).form; //创建窗体
  4200. _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); } }
  4201. break;
  4202. case "stuLibrary":
  4203. _formdiv = new U.UF.UI.form(
  4204. "学习资料",
  4205. $$("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 }), {
  4206. "id": "stuLibrary",
  4207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4208. "onresize": function () { }
  4209. }, {
  4210. closecallback: function () { }
  4211. }, { "style": { "height": "36px" } }).form; //创建窗体
  4212. _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); } }
  4213. break;
  4214. case "program":
  4215. _formdiv = new U.UF.UI.form(
  4216. "编程平台",
  4217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4218. "id": "program",
  4219. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4220. "onresize": function () { }
  4221. }, {
  4222. closecallback: function () { }
  4223. }, { "style": { "height": "36px" } }).form; //创建窗体
  4224. _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); } }
  4225. break;
  4226. case "whiteboard":
  4227. _formdiv = new U.UF.UI.form(
  4228. "电子白板",
  4229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4230. "id": "whiteboard",
  4231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4232. "onresize": function () { }
  4233. }, {
  4234. closecallback: function () { }
  4235. }, { "style": { "height": "36px" } }).form; //创建窗体
  4236. _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); } }
  4237. break;
  4238. case "investigation":
  4239. _formdiv = new U.UF.UI.form(
  4240. "问卷调查",
  4241. $$("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 }), {
  4242. "id": "investigation",
  4243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4244. "onresize": function () { }
  4245. }, {
  4246. closecallback: function () { }
  4247. }, { "style": { "height": "36px" } }).form; //创建窗体
  4248. _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); } }
  4249. break;
  4250. case "mind":
  4251. _formdiv = new U.UF.UI.form(
  4252. "思维导图",
  4253. $$("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"
  4254. "id": "mind",
  4255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4256. "onresize": function () { }
  4257. }, {
  4258. closecallback: function () { }
  4259. }, { "style": { "height": "36px" } }).form; //创建窗体
  4260. _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); } }
  4261. break;
  4262. case "doc":
  4263. // U.MD.D.I.isRoom();
  4264. _formdiv = new U.UF.UI.form(
  4265. "协同文档",
  4266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4267. "id": "doc",
  4268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4269. "onresize": function () { }
  4270. }, {
  4271. closecallback: function () { }
  4272. }, { "style": { "height": "36px" } }).form; //创建窗体
  4273. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4274. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4275. })
  4276. _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); } }
  4277. break;
  4278. case "study":
  4279. _formdiv = new U.UF.UI.form(
  4280. "课程中心",
  4281. $$("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
  4282. "id": "study",
  4283. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4284. "onresize": function () { }
  4285. }, {
  4286. closecallback: function () { }
  4287. }, { "style": { "height": "36px" } }).form; //创建窗体
  4288. _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); } }
  4289. break;
  4290. case "mindNetwork": //好友打开
  4291. _formdiv = new U.UF.UI.form(
  4292. "思维网格",
  4293. $$("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 }), {
  4294. "id": "mindNetwork",
  4295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4296. "onresize": function () { }
  4297. }, {
  4298. closecallback: function () { }
  4299. }, { "style": { "height": "36px" } }).form; //创建窗体
  4300. _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); } }
  4301. break;
  4302. case "train": //好友打开
  4303. _formdiv = new U.UF.UI.form(
  4304. "训练平台",
  4305. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4306. "id": "train",
  4307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4308. "onresize": function () { }
  4309. }, {
  4310. closecallback: function () { }
  4311. }, { "style": { "height": "36px" } }).form; //创建窗体
  4312. _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); } }
  4313. break;
  4314. case "sys":
  4315. _formdiv = new U.UF.UI.form(
  4316. "目标管理",
  4317. $$("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 }), {
  4318. "id": "sys",
  4319. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4320. "onresize": function () { }
  4321. }, {
  4322. closecallback: function () { }
  4323. }, { "style": { "height": "36px" } }).form; //创建窗体
  4324. _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); } }
  4325. break;
  4326. case "courseDesign":
  4327. _formdiv = new U.UF.UI.form(
  4328. "项目设计",
  4329. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4330. "id": "courseDesign",
  4331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4332. "onresize": function () { }
  4333. }, {
  4334. closecallback: function () { }
  4335. }, { "style": { "height": "36px" } }).form; //创建窗体
  4336. _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); } }
  4337. break;
  4338. }
  4339. } else if (!_type) {
  4340. switch (str) {
  4341. case "my":
  4342. _formdiv = new U.UF.UI.form(
  4343. "我的资料",
  4344. $$("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 }), {
  4345. "id": "my",
  4346. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4347. "onresize": function () { }
  4348. }, {
  4349. closecallback: function () { }
  4350. }, { "style": { "height": "36px" } }).form; //创建窗体
  4351. _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); } }
  4352. break;
  4353. }
  4354. }
  4355. switch (str) {
  4356. // AIprogram2 AI体验 aihub.cocorobo.cn
  4357. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4358. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4359. case "formulaEdi": //公式编辑
  4360. _formdiv = new U.UF.UI.form(
  4361. "公式编辑",
  4362. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4363. "id": "formulaEdi",
  4364. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4370. break;
  4371. case "molStr": //分子结构
  4372. _formdiv = new U.UF.UI.form(
  4373. "分子结构",
  4374. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4375. "id": "molStr",
  4376. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4377. "onresize": function () { }
  4378. }, {
  4379. closecallback: function () { }
  4380. }, { "style": { "height": "36px" } }).form; //创建窗体
  4381. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4382. break;
  4383. case "timeAxis": //时间轴
  4384. _formdiv = new U.UF.UI.form(
  4385. "时间轴",
  4386. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4387. "id": "timeAxis",
  4388. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4389. "onresize": function () { }
  4390. }, {
  4391. closecallback: function () { }
  4392. }, { "style": { "height": "36px" } }).form; //创建窗体
  4393. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4394. break;
  4395. case "AIprogram2": //AI体验
  4396. _formdiv = new U.UF.UI.form(
  4397. "AI体验",
  4398. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4399. "id": "AIprogram2",
  4400. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4406. break;
  4407. case "Pythonprogram": //python编程
  4408. _formdiv = new U.UF.UI.form(
  4409. "Python编程",
  4410. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4411. "id": "Pythonprogram",
  4412. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4413. "onresize": function () { }
  4414. }, {
  4415. closecallback: function () { }
  4416. }, { "style": { "height": "36px" } }).form; //创建窗体
  4417. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4418. break;
  4419. case "AIprogram": //ai编程
  4420. _formdiv = new U.UF.UI.form(
  4421. "AI编程平台",
  4422. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4423. "id": "AIprogram",
  4424. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4430. break;
  4431. case "CocoPi": //CocoPi
  4432. _formdiv = new U.UF.UI.form(
  4433. "CocoPi",
  4434. $$("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" }), {
  4435. "id": "CocoPi",
  4436. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4442. break;
  4443. case "Wood": //Wood
  4444. _formdiv = new U.UF.UI.form(
  4445. "海龟编程",
  4446. $$("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/" }), {
  4447. "id": "Wood",
  4448. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4454. break;
  4455. case "car": //模拟驾驶
  4456. _formdiv = new U.UF.UI.form(
  4457. "模拟驾驶",
  4458. $$("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/" }), {
  4459. "id": "car",
  4460. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4466. break;
  4467. case "lineSearch": //路径搜索
  4468. _formdiv = new U.UF.UI.form(
  4469. "路径搜索",
  4470. $$("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/" }), {
  4471. "id": "lineSearch",
  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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4478. break;
  4479. case "deepLearning": //深度学习
  4480. _formdiv = new U.UF.UI.form(
  4481. "深度学习",
  4482. $$("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/#" }), {
  4483. "id": "deepLearning",
  4484. "style": { "width": "70%", "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/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4490. break;
  4491. case "allHistory": //深度学习
  4492. _formdiv = new U.UF.UI.form(
  4493. "全历史",
  4494. $$("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/" }), {
  4495. "id": "allHistory",
  4496. "style": { "width": "70%", "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/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4502. break;
  4503. case "chatPDF": //ai编程
  4504. _formdiv = new U.UF.UI.form(
  4505. "chatPDF",
  4506. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4507. "id": "chatPDF",
  4508. "style": { "width": "70%", "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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4514. break;
  4515. case "resources": //国家教育
  4516. _formdiv = new U.UF.UI.form(
  4517. "国家教育",
  4518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4519. "id": "resources",
  4520. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4521. "onresize": function () { }
  4522. }, {
  4523. closecallback: function () { }
  4524. }, { "style": { "height": "36px" } }).form; //创建窗体
  4525. _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); } }
  4526. break;
  4527. case "codeEdit": //源码编辑
  4528. _formdiv = new U.UF.UI.form(
  4529. "源码编辑",
  4530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4531. "id": "codeEdit",
  4532. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4533. "onresize": function () { }
  4534. }, {
  4535. closecallback: function () { }
  4536. }, { "style": { "height": "36px" } }).form; //创建窗体
  4537. _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); } }
  4538. break; //
  4539. case "MindMap": //MindMap
  4540. _formdiv = new U.UF.UI.form(
  4541. "MindMap",
  4542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4543. "id": "MindMap",
  4544. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4545. "onresize": function () { }
  4546. }, {
  4547. closecallback: function () { }
  4548. }, { "style": { "height": "36px" } }).form; //创建窗体
  4549. _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); } }
  4550. break;
  4551. case "netWorkPanel": //netWorkPanel
  4552. _formdiv = new U.UF.UI.form(
  4553. "netWorkPanel",
  4554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4555. "id": "netWorkPanel",
  4556. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4557. "onresize": function () { }
  4558. }, {
  4559. closecallback: function () { }
  4560. }, { "style": { "height": "36px" } }).form; //创建窗体
  4561. _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); } }
  4562. break;
  4563. case "GeoGebra": //GeoGebra
  4564. _formdiv = new U.UF.UI.form(
  4565. "GeoGebra",
  4566. $$("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" }), {
  4567. "id": "GeoGebra",
  4568. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4569. "onresize": function () { }
  4570. }, {
  4571. closecallback: function () { }
  4572. }, { "style": { "height": "36px" } }).form; //创建窗体
  4573. _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); } }
  4574. break;
  4575. case "translation": //翻译
  4576. _formdiv = new U.UF.UI.form(
  4577. "翻译",
  4578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4579. "id": "translation",
  4580. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4581. "onresize": function () { }
  4582. }, {
  4583. closecallback: function () { }
  4584. }, { "style": { "height": "36px" } }).form; //创建窗体
  4585. _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); } }
  4586. break;
  4587. case "mohe": //魔盒
  4588. _formdiv = new U.UF.UI.form(
  4589. "魔盒识字",
  4590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4591. "id": "mohe",
  4592. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4593. "onresize": function () { }
  4594. }, {
  4595. closecallback: function () { }
  4596. }, { "style": { "height": "36px" } }).form; //创建窗体
  4597. _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); } }
  4598. break;
  4599. case "24game": //24点
  4600. _formdiv = new U.UF.UI.form(
  4601. "24点",
  4602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4603. "id": "24game",
  4604. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4605. "onresize": function () { }
  4606. }, {
  4607. closecallback: function () { }
  4608. }, { "style": { "height": "36px" } }).form; //创建窗体
  4609. _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); } }
  4610. break;
  4611. case "case":
  4612. _formdiv = new U.UF.UI.form(
  4613. "课程进展",
  4614. $$("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 }), {
  4615. "id": "case",
  4616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4617. "onresize": function () { }
  4618. }, {
  4619. closecallback: function () { }
  4620. }, { "style": { "height": "36px" } }).form; //创建窗体
  4621. _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); } }
  4622. break;
  4623. case "snf":
  4624. _formdiv = new U.UF.UI.form(
  4625. "赛诺梵",
  4626. $$("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" }), {
  4627. "id": "snf",
  4628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4629. "onresize": function () { }
  4630. }, {
  4631. closecallback: function () { }
  4632. }, { "style": { "height": "36px" } }).form; //创建窗体
  4633. _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); } }
  4634. break;
  4635. case "hanFamily":
  4636. _formdiv = new U.UF.UI.form(
  4637. "汉字家族",
  4638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4639. "id": "hanFamily",
  4640. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4641. "onresize": function () { }
  4642. }, {
  4643. closecallback: function () { }
  4644. }, { "style": { "height": "36px" } }).form; //创建窗体
  4645. _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); } }
  4646. break;
  4647. case "hanClassics":
  4648. _formdiv = new U.UF.UI.form(
  4649. "国学经典",
  4650. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4651. "id": "hanClassics",
  4652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4653. "onresize": function () { }
  4654. }, {
  4655. closecallback: function () { }
  4656. }, { "style": { "height": "36px" } }).form; //创建窗体
  4657. _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); } }
  4658. break;
  4659. case "hanTraining":
  4660. _formdiv = new U.UF.UI.form(
  4661. "笔画训练",
  4662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4663. "id": "hanTraining",
  4664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4665. "onresize": function () { }
  4666. }, {
  4667. closecallback: function () { }
  4668. }, { "style": { "height": "36px" } }).form; //创建窗体
  4669. _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); } }
  4670. break;
  4671. case "hanClass":
  4672. _formdiv = new U.UF.UI.form(
  4673. "书法课堂",
  4674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4675. "id": "hanClass",
  4676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4677. "onresize": function () { }
  4678. }, {
  4679. closecallback: function () { }
  4680. }, { "style": { "height": "36px" } }).form; //创建窗体
  4681. _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); } }
  4682. break;
  4683. case "han":
  4684. _formdiv = new U.UF.UI.form(
  4685. "汉字宫",
  4686. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4687. "id": "han",
  4688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4689. "onresize": function () { }
  4690. }, {
  4691. closecallback: function () { }
  4692. }, { "style": { "height": "36px" } }).form; //创建窗体
  4693. _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); } }
  4694. break;
  4695. case "projectGM": //课程管理
  4696. _formdiv = new U.UF.UI.form(
  4697. "课程管理",
  4698. $$("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 }), {
  4699. "id": "projectGM",
  4700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4701. "onresize": function () { }
  4702. }, {
  4703. closecallback: function () { }
  4704. }, { "style": { "height": "36px" } }).form; //创建窗体
  4705. _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); } }
  4706. break;
  4707. case "studyGM": //课程中心
  4708. _formdiv = new U.UF.UI.form(
  4709. "课程中心",
  4710. $$("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
  4711. "id": "study",
  4712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4713. "onresize": function () { }
  4714. }, {
  4715. closecallback: function () { }
  4716. }, { "style": { "height": "36px" } }).form; //创建窗体
  4717. _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); } }
  4718. break;
  4719. // studentGM
  4720. case "studentGM": //学生管理
  4721. _formdiv = new U.UF.UI.form(
  4722. "学生管理",
  4723. $$("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 }), {
  4724. "id": "studentGM",
  4725. "style": { "width": "90%", "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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4731. break;
  4732. case "evaluateGM": //学生评价
  4733. _formdiv = new U.UF.UI.form(
  4734. "学生评价",
  4735. $$("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 }), {
  4736. "id": "evaluateGM",
  4737. "style": { "width": "90%", "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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4743. break;
  4744. // classGM
  4745. case "classGM": //班级管理
  4746. _formdiv = new U.UF.UI.form(
  4747. "班级管理",
  4748. $$("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 }), {
  4749. "id": "classGM",
  4750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4751. "onresize": function () { }
  4752. }, {
  4753. closecallback: function () { }
  4754. }, { "style": { "height": "36px" } }).form; //创建窗体
  4755. _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); } }
  4756. break;
  4757. // dataGM
  4758. case "dataGM":
  4759. _formdiv = new U.UF.UI.form(
  4760. "我的资料",
  4761. $$("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 }), {
  4762. "id": "dataGM",
  4763. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4764. "onresize": function () { }
  4765. }, {
  4766. closecallback: function () { }
  4767. }, { "style": { "height": "36px" } }).form; //创建窗体
  4768. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4769. break;
  4770. // caseGM
  4771. case "caseGM": //课程进展
  4772. _formdiv = new U.UF.UI.form(
  4773. "课程进展",
  4774. $$("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 }), {
  4775. "id": "caseGM",
  4776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4777. "onresize": function () { }
  4778. }, {
  4779. closecallback: function () { }
  4780. }, { "style": { "height": "36px" } }).form; //创建窗体
  4781. _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); } }
  4782. break;
  4783. // meterialGM
  4784. case "meterialGM": //素材库
  4785. _formdiv = new U.UF.UI.form(
  4786. "素材库",
  4787. $$("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 }), {
  4788. "id": "meterialGM",
  4789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _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); } }
  4795. break;
  4796. // evaluateSGM
  4797. case "evaluateSGM": //我的评价
  4798. _formdiv = new U.UF.UI.form(
  4799. "我的评价",
  4800. $$("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 }), {
  4801. "id": "evaluateSGM",
  4802. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4803. "onresize": function () { }
  4804. }, {
  4805. closecallback: function () { }
  4806. }, { "style": { "height": "36px" } }).form; //创建窗体
  4807. _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); } }
  4808. break;
  4809. case "jupyter": //jupyter
  4810. _formdiv = new U.UF.UI.form(
  4811. "jupyter",
  4812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4813. "id": "jupyter",
  4814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4815. "onresize": function () { }
  4816. }, {
  4817. closecallback: function () { }
  4818. }, { "style": { "height": "36px" } }).form; //创建窗体
  4819. _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); } }
  4820. break;
  4821. case "number": //数字实验室
  4822. _formdiv = new U.UF.UI.form(
  4823. "数字实验室",
  4824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4825. "id": "number",
  4826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4827. "onresize": function () { }
  4828. }, {
  4829. closecallback: function () { }
  4830. }, { "style": { "height": "36px" } }).form; //创建窗体
  4831. _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); } }
  4832. break;
  4833. case "studentCourse": //项目管理 学生
  4834. _formdiv = new U.UF.UI.form(
  4835. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4836. $$("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 }), {
  4837. "id": "studentCourse",
  4838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4839. "onresize": function () { }
  4840. }, {
  4841. closecallback: function () { }
  4842. }, { "style": { "height": "36px" } }).form; //创建窗体
  4843. _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); } }
  4844. break;
  4845. case "studentCourseS": //项目管理 老师
  4846. _formdiv = new U.UF.UI.form(
  4847. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4848. $$("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 }), {
  4849. "id": "studentCourseS",
  4850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4851. "onresize": function () { }
  4852. }, {
  4853. closecallback: function () { }
  4854. }, { "style": { "height": "36px" } }).form; //创建窗体
  4855. _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); } }
  4856. break;
  4857. case "studentIndex": //项目中心
  4858. _formdiv = new U.UF.UI.form(
  4859. "项目中心",
  4860. $$("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 }), {
  4861. "id": "studentIndex",
  4862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. _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); } }
  4868. break;
  4869. case "CaseDesignS":
  4870. _formdiv = new U.UF.UI.form(
  4871. "项目进展",
  4872. $$("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 }), {
  4873. "id": "case",
  4874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4875. "onresize": function () { }
  4876. }, {
  4877. closecallback: function () { }
  4878. }, { "style": { "height": "36px" } }).form; //创建窗体
  4879. _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); } }
  4880. break;
  4881. case "tcStudent": //腾讯学生管理
  4882. _formdiv = new U.UF.UI.form(
  4883. "学生管理",
  4884. $$("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 }), {
  4885. "id": "tcStudent",
  4886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4887. "onresize": function () { }
  4888. }, {
  4889. closecallback: function () { }
  4890. }, { "style": { "height": "36px" } }).form; //创建窗体
  4891. _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); } }
  4892. break;
  4893. case "tcSchool": //腾讯学校管理
  4894. _formdiv = new U.UF.UI.form(
  4895. "学校管理",
  4896. $$("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 }), {
  4897. "id": "tcSchool",
  4898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. _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); } }
  4904. break;
  4905. case "tcTeacher": //腾讯学校管理
  4906. _formdiv = new U.UF.UI.form(
  4907. "教师管理",
  4908. $$("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 }), {
  4909. "id": "tcTeacher",
  4910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4911. "onresize": function () { }
  4912. }, {
  4913. closecallback: function () { }
  4914. }, { "style": { "height": "36px" } }).form; //创建窗体
  4915. _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); } }
  4916. break;
  4917. case "tcData": //腾讯我的资料
  4918. _formdiv = new U.UF.UI.form(
  4919. "我的资料",
  4920. $$("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 }), {
  4921. "id": "tcData",
  4922. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4923. "onresize": function () { }
  4924. }, {
  4925. closecallback: function () { }
  4926. }, { "style": { "height": "36px" } }).form; //创建窗体
  4927. _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); } }
  4928. break;
  4929. case "tcNotice": //腾讯消息通知
  4930. _formdiv = new U.UF.UI.form(
  4931. "消息通知",
  4932. $$("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 }), {
  4933. "id": "tcNotice",
  4934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. _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); } }
  4940. break;
  4941. case "myReport": //好友打开
  4942. _formdiv = new U.UF.UI.form(
  4943. "我的评价",
  4944. $$("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 }), {
  4945. "id": "myReport",
  4946. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4947. "onresize": function () { }
  4948. }, {
  4949. closecallback: function () { }
  4950. }, { "style": { "height": "36px" } }).form; //创建窗体
  4951. _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); } }
  4952. break;
  4953. case "learnAna": //好友打开
  4954. _formdiv = new U.UF.UI.form(
  4955. "学习分析",
  4956. $$("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 }), {
  4957. "id": "learnAna",
  4958. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4959. "onresize": function () { }
  4960. }, {
  4961. closecallback: function () { }
  4962. }, { "style": { "height": "36px" } }).form; //创建窗体
  4963. _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); } }
  4964. break;
  4965. case "AIChat": //AI共创
  4966. _formdiv = new U.UF.UI.form(
  4967. "AI共创",
  4968. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4969. "id": "AIChat",
  4970. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. istop: true,
  4974. closecallback: function () { $("#aichat_icon").remove(); },
  4975. narrowcallback: function () {
  4976. if (!$("#aichat_icon")[0]) {
  4977. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4978. }
  4979. },
  4980. }, { "style": { "height": "36px" } }).form; //创建窗体
  4981. _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); } }
  4982. break;
  4983. case "ainew": //AI共创
  4984. _formdiv = new U.UF.UI.form(
  4985. "AI协同",
  4986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4987. "id": "ainew",
  4988. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4994. break;
  4995. case "gpt4": //gpt4
  4996. _formdiv = new U.UF.UI.form(
  4997. "AI助手",
  4998. $$("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 }), {
  4999. "id": "gpt4",
  5000. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5001. "onresize": function () { }
  5002. }, {
  5003. closecallback: function () { }
  5004. }, { "style": { "height": "36px" } }).form; //创建窗体
  5005. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5006. break;
  5007. case "aigpt": //gpt4
  5008. _formdiv = new U.UF.UI.form(
  5009. "AI助手+",
  5010. $$("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 }), {
  5011. "id": "aigpt",
  5012. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5013. "onresize": function () { }
  5014. }, {
  5015. closecallback: function () { }
  5016. }, { "style": { "height": "36px" } }).form; //创建窗体
  5017. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5018. break;
  5019. case "futureClass": //AI共创
  5020. _formdiv = new U.UF.UI.form(
  5021. "协同建构",
  5022. $$("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
  5023. "id": "synergyCourse",
  5024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () {
  5028. $("iframe", _formdiv)[0].contentWindow.loginout();
  5029. }
  5030. }, { "style": { "height": "36px" } }).form; //创建窗体
  5031. _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); } }
  5032. break;
  5033. case "aiagent": //ai agent
  5034. _formdiv = new U.UF.UI.form(
  5035. "AI Agent",
  5036. $$("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" }), {
  5037. "id": "AIAgent",
  5038. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. _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); } }
  5044. break;
  5045. case "dataBoard": //数据看板
  5046. _formdiv = new U.UF.UI.form(
  5047. "数据看板",
  5048. $$("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 }), {
  5049. "id": "dataBoard",
  5050. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5051. "onresize": function () { }
  5052. }, {
  5053. closecallback: function () { }
  5054. }, { "style": { "height": "36px" } }).form; //创建窗体
  5055. _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); } }
  5056. break;
  5057. case "dataBoardSies": //数据融合
  5058. _formdiv = new U.UF.UI.form(
  5059. "数据融合",
  5060. $$("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 }), {
  5061. "id": "dataBoardSies",
  5062. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5063. "onresize": function () { }
  5064. }, {
  5065. closecallback: function () { }
  5066. }, { "style": { "height": "36px" } }).form; //创建窗体
  5067. _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); } }
  5068. break;
  5069. case "dataBoardNew": //数据看板
  5070. _formdiv = new U.UF.UI.form(
  5071. "综合看板",
  5072. $$("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 }), {
  5073. "id": "dataBoardNew",
  5074. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5075. "onresize": function () { }
  5076. }, {
  5077. closecallback: function () { }
  5078. }, { "style": { "height": "36px" } }).form; //创建窗体
  5079. _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); } }
  5080. break;
  5081. case "dataBoardTest": //数据看板
  5082. _formdiv = new U.UF.UI.form(
  5083. "评测看板",
  5084. $$("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 }), {
  5085. "id": "dataBoardTest",
  5086. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5087. "onresize": function () { }
  5088. }, {
  5089. closecallback: function () { }
  5090. }, { "style": { "height": "36px" } }).form; //创建窗体
  5091. _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); } }
  5092. break;
  5093. case "AIAnalyse": //AI共创
  5094. _formdiv = new U.UF.UI.form(
  5095. "AI分析",
  5096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5097. "id": "AIAnalyse",
  5098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5099. "onresize": function () { }
  5100. }, {
  5101. closecallback: function () { }
  5102. }, { "style": { "height": "36px" } }).form; //创建窗体
  5103. _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); } }
  5104. break;
  5105. case "studioCourse": //AI共创
  5106. _formdiv = new U.UF.UI.form(
  5107. "工作管理",
  5108. $$("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 }), {
  5109. "id": "studioCourse",
  5110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5111. "onresize": function () { }
  5112. }, {
  5113. closecallback: function () { }
  5114. }, { "style": { "height": "36px" } }).form; //创建窗体
  5115. _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); } }
  5116. break;
  5117. case "studioIndex": //AI共创
  5118. _formdiv = new U.UF.UI.form(
  5119. "工作中心",
  5120. $$("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 }), {
  5121. "id": "studioIndex",
  5122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5123. "onresize": function () { }
  5124. }, {
  5125. closecallback: function () { }
  5126. }, { "style": { "height": "36px" } }).form; //创建窗体
  5127. _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); } }
  5128. break;
  5129. case "source":
  5130. _formdiv = new U.UF.UI.form(
  5131. "教学资源",
  5132. $$("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 }), {
  5133. "id": "source",
  5134. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5135. "onresize": function () { }
  5136. }, {
  5137. closecallback: function () { }
  5138. }, { "style": { "height": "36px" } }).form; //创建窗体
  5139. _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); } }
  5140. break;
  5141. case "testTeacher":
  5142. _formdiv = new U.UF.UI.form(
  5143. "教师管理",
  5144. $$("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 }), {
  5145. "id": "testTeacher",
  5146. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. _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); } }
  5152. break;
  5153. case "testStudent":
  5154. _formdiv = new U.UF.UI.form(
  5155. "教师中心",
  5156. $$("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 }), {
  5157. "id": "testStudent",
  5158. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _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); } }
  5164. break;
  5165. case "testTeacherSies":
  5166. _formdiv = new U.UF.UI.form(
  5167. "教师管理",
  5168. $$("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 }), {
  5169. "id": "testTeacherSies",
  5170. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _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); } }
  5176. break;
  5177. case "testStudentSies":
  5178. _formdiv = new U.UF.UI.form(
  5179. "教师中心",
  5180. $$("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 }), {
  5181. "id": "testStudentSies",
  5182. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _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); } }
  5188. break;
  5189. case "ytpbl": //消息通知
  5190. _formdiv = new U.UF.UI.form(
  5191. "案例征集",
  5192. $$("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 }), {
  5193. "id": "ytpbl",
  5194. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _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); } }
  5200. // 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");
  5201. break;
  5202. case "aiCourseResource": //人工智能窗体
  5203. _formdiv = new U.UF.UI.form(
  5204. false,
  5205. $$("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 }), {
  5206. "id": "aiCourseResource",
  5207. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5208. "onresize": function () { },
  5209. "isdrag": false,
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //创建窗体
  5213. _taskbar = ''
  5214. break;
  5215. case "szdjgCocooroboX": //图形化编程
  5216. _formdiv = new U.UF.UI.form(
  5217. "图形化编程",
  5218. $$("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" }), {
  5219. "id": "szdjgCocooroboX",
  5220. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5221. "onresize": function () { }
  5222. }, {
  5223. closecallback: function () { }
  5224. }, { "style": { "height": "36px" } }).form; //创建窗体
  5225. _taskbar = ''
  5226. break;
  5227. case "szdjgPython": //python编程
  5228. _formdiv = new U.UF.UI.form(
  5229. "Python编程",
  5230. $$("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" }), {
  5231. "id": "szdjgPython",
  5232. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. _taskbar = ''
  5238. break;
  5239. case "Record":
  5240. _formdiv = new U.UF.UI.form(
  5241. "观察记录",
  5242. $$("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 }), {
  5243. "id": "Record",
  5244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5250. break;
  5251. case "aigptCourse":
  5252. _formdiv = new U.UF.UI.form(
  5253. "AI智能体",
  5254. $$("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' }), {
  5255. "id": "aigptCourse",
  5256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5257. "onresize": function () { }
  5258. }, {
  5259. closecallback: function () { }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. _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); } }
  5262. break;
  5263. case "classroomObservation":
  5264. _formdiv = new U.UF.UI.form(
  5265. "课堂观察",
  5266. $$("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 }), {
  5267. "id": "classroomObservation",
  5268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. case "pblCourse":
  5276. _formdiv = new U.UF.UI.form(
  5277. "学生pbl",
  5278. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/pblCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5279. "id": "pblCourse",
  5280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5286. break;
  5287. }
  5288. //U.MD.D.I.openClick(str);
  5289. //如果有任务栏信息
  5290. if (_taskbar) {
  5291. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5292. }
  5293. }
  5294. // U.MD.D.I.openClick = function(str){
  5295. // var click = '';
  5296. // switch(str){
  5297. // case 'friend':
  5298. // click = '我的好友';
  5299. // break;
  5300. // case 'domain':
  5301. // click = '域名管理';
  5302. // break;
  5303. // case 'disk':
  5304. // click = '我的云盘';
  5305. // break;
  5306. // case 'word':
  5307. // click = 'Word';
  5308. // break;
  5309. // case 'excel':
  5310. // click = 'Execl';
  5311. // break;
  5312. // case 'txt':
  5313. // click = '文本文件';
  5314. // break;
  5315. // case 'lookupFriend':
  5316. // click = '查找好友';
  5317. // break;
  5318. // case 'ftp':
  5319. // click = 'FTP';
  5320. // break;
  5321. // case 'group':
  5322. // click = '群组';
  5323. // break;
  5324. // case 'set':
  5325. // click = '我的设置';
  5326. // break;
  5327. // case 'systemSet':
  5328. // click = '系统设置';
  5329. // break;
  5330. // case 'boomYun':
  5331. // click = '互联办公';
  5332. // break;
  5333. // case 'xz':
  5334. // click = '云端下载';
  5335. // break;
  5336. // case 'client':
  5337. // click = '有思浏览器';
  5338. // break;
  5339. // case 'backEndProgramming':
  5340. // click = '在线后台编程';
  5341. // break;
  5342. // case 'frontEndProgramming':
  5343. // click = '在线前端编程';
  5344. // break;
  5345. // default: break;
  5346. // }
  5347. // if(U.MD.D.I.Ip && click){
  5348. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5349. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5350. // })
  5351. // }
  5352. // }
  5353. /**
  5354. *函数作用:ajax简易函数,使用post格式
  5355. *@param url {data} 后台地址
  5356. *@param data {data} 参数json
  5357. *@param fn {data} 回调函数
  5358. *
  5359. */
  5360. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5361. // var xhr = new XMLHttpRequest();
  5362. // xhr.open("GET",url,true);
  5363. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5364. // xhr.onreadystatechange = function(){
  5365. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5366. // fn.call(this,xhr.responseText);
  5367. // }
  5368. // };
  5369. // xhr.send();
  5370. // }
  5371. /*判断是否是内网IP*/
  5372. // U.MD.D.I.isInnerIPFn = function(str){
  5373. // var curPageUrl = str;
  5374. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5375. // curPageUrl =curPageUrl.replace(reg1,'');
  5376. // // console.log('curPageUrl-1 '+curPageUrl);
  5377. // var reg2 = /\:+/g;//替换冒号为一点
  5378. // curPageUrl =curPageUrl.replace(reg2,'.');
  5379. // // console.log('curPageUrl-2 '+curPageUrl);
  5380. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5381. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5382. // if(curPageUrl[2] != '16'){
  5383. // return ipAddress;
  5384. // }else{
  5385. // return false;
  5386. // }
  5387. // }
  5388. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5389. // //compatibility for firefox and chrome
  5390. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5391. // var pc = new myPeerConnection({
  5392. // iceServers: []
  5393. // }),
  5394. // noop = function() {},
  5395. // localIPs = {},
  5396. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5397. // key;
  5398. // function iterateIP(ip) {
  5399. // if (!localIPs[ip]) onNewIP(ip);
  5400. // localIPs[ip] = true;
  5401. // }
  5402. // //create a bogus data channel
  5403. // pc.createDataChannel("");
  5404. // // create offer and set local description
  5405. // pc.createOffer().then(function(sdp) {
  5406. // sdp.sdp.split('\n').forEach(function(line) {
  5407. // if (line.indexOf('candidate') < 0) return;
  5408. // line.match(ipRegex).forEach(iterateIP);
  5409. // });
  5410. // pc.setLocalDescription(sdp, noop, noop);
  5411. // }).catch(function(reason) {
  5412. // // An error occurred, so handle the failure to connect
  5413. // });
  5414. // //sten for candidate events
  5415. // pc.onicecandidate = function(ice) {
  5416. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5417. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5418. // };
  5419. // }
  5420. // U.MD.D.I.getUserIpBool = function(callback){
  5421. // U.MD.D.I.getUserIP(function(ip){
  5422. // alert("Got IP! :" + ip);
  5423. // });
  5424. //}
  5425. //#endregion
  5426. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5427. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5428. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5429. _userinfo = US.userInfo, //登录用户信息
  5430. _userid = US.userInfo.userid //登录用户id
  5431. let _iframe;
  5432. let _cid = cid,
  5433. _stage = stage,
  5434. _task = task,
  5435. _tool = tool;
  5436. var _jie = $$("div", {
  5437. "style": {
  5438. "position": "absolute",
  5439. "bottom": "50px",
  5440. "right": "50px",
  5441. "zIndex": "9999",
  5442. "backgroundColor": "#2268bc",
  5443. "color": "#fff",
  5444. "padding": "12px 20px",
  5445. "cursor": "pointer",
  5446. "borderRadius": "4px",
  5447. },
  5448. "innerHTML": "提交作业"
  5449. })
  5450. let aTool = ''
  5451. let _loading = document.createElement('div')
  5452. _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;"
  5453. // _loading.id = "";
  5454. let _lchild = document.createElement('div')
  5455. let _limg = document.createElement('img')
  5456. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5457. _limg.style = "width: 26px;margin-right: 10px;"
  5458. _lchild.appendChild(_limg)
  5459. let _lspan = document.createElement('span')
  5460. _lspan.innerHTML = "上传中..."
  5461. _lchild.appendChild(_lspan)
  5462. _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%);"
  5463. _loading.appendChild(_lchild)
  5464. var _box = $$('div', {
  5465. "style": {
  5466. "position": "relative",
  5467. "width": "100%",
  5468. "height": "100%",
  5469. },
  5470. })
  5471. _box.appendChild(_loading)
  5472. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5473. switch (str) {
  5474. case "whiteboard":
  5475. aTool = 1;
  5476. _iframe = $$("iframe", {
  5477. "frameborder": "no",
  5478. "border": "0",
  5479. "scrolling ": "no",
  5480. "style": {
  5481. "cssText": "border:0;width:100%;height:100%"
  5482. },
  5483. "src": "https://beta.iwb.cocorobo.cn/"
  5484. })
  5485. _box.appendChild(_iframe);
  5486. _box.appendChild(_jie);
  5487. _formdiv = new U.UF.UI.form(
  5488. "电子白板",
  5489. _box, {
  5490. "id": "whiteboard" + cid + stage + task + tool,
  5491. "style": {
  5492. "width": "90%",
  5493. "height": "90%",
  5494. "overflow": 'hidden'
  5495. },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, {
  5500. "style": {
  5501. "height": "36px"
  5502. }
  5503. }).form; //创建窗体
  5504. _taskbar = {
  5505. "id": str + _formdiv.id,
  5506. "style": {
  5507. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5508. },
  5509. "name": "电子白板",
  5510. "forms": _formdiv,
  5511. "click": function () {
  5512. U.MD.D.I.openApplication(str, obj, info);
  5513. }
  5514. }
  5515. break;
  5516. case "mind":
  5517. aTool = 3;
  5518. _iframe = $$("iframe", {
  5519. "frameborder": "no",
  5520. "border": "0",
  5521. "scrolling ": "no",
  5522. "style": {
  5523. "cssText": "border:0;width:100%;height:100%"
  5524. },
  5525. "src": "/kityminder-editor/dist/index.html"
  5526. })
  5527. _box.appendChild(_iframe);
  5528. _box.appendChild(_jie);
  5529. _formdiv = new U.UF.UI.form(
  5530. "思维导图",
  5531. _box, { //"/jsmind/example/demo.html"
  5532. "id": "mind" + cid + stage + task + tool,
  5533. "style": {
  5534. "width": "90%",
  5535. "height": "90%",
  5536. "overflow": 'hidden'
  5537. },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, {
  5542. "style": {
  5543. "height": "36px"
  5544. }
  5545. }).form; //创建窗体
  5546. _taskbar = {
  5547. "id": str + _formdiv.id,
  5548. "style": {
  5549. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5550. },
  5551. "name": "思维导图",
  5552. "forms": _formdiv,
  5553. "click": function () {
  5554. U.MD.D.I.openApplication(str, obj, info);
  5555. }
  5556. }
  5557. break;
  5558. case "MindMap":
  5559. aTool = 3;
  5560. _iframe = $$("iframe", {
  5561. "frameborder": "no",
  5562. "border": "0",
  5563. "scrolling ": "no",
  5564. "style": {
  5565. "cssText": "border:0;width:100%;height:100%"
  5566. },
  5567. "src": "//cloud.cocorobo.cn/mind/"
  5568. })
  5569. _box.appendChild(_iframe);
  5570. _box.appendChild(_jie);
  5571. _formdiv = new U.UF.UI.form(
  5572. "思维导图",
  5573. _box, { //"/jsmind/example/demo.html"
  5574. "id": "mind" + cid + stage + task + tool,
  5575. "style": {
  5576. "width": "90%",
  5577. "height": "90%",
  5578. "overflow": 'hidden'
  5579. },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, {
  5584. "style": {
  5585. "height": "36px"
  5586. }
  5587. }).form; //创建窗体
  5588. _taskbar = {
  5589. "id": str + _formdiv.id,
  5590. "style": {
  5591. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5592. },
  5593. "name": "思维导图",
  5594. "forms": _formdiv,
  5595. "click": function () {
  5596. U.MD.D.I.openApplication(str, obj, info);
  5597. }
  5598. }
  5599. break;
  5600. case "doc":
  5601. aTool = 6;
  5602. _iframe = $$("iframe", {
  5603. "frameborder": "no",
  5604. "border": "0",
  5605. "scrolling ": "no",
  5606. "style": {
  5607. "cssText": "border:0;width:100%;height:100%"
  5608. },
  5609. "src": "/Office/Word/WordEditArea.htm"
  5610. })
  5611. _box.appendChild(_iframe);
  5612. _box.appendChild(_jie);
  5613. _formdiv = new U.UF.UI.form(
  5614. "协同文档",
  5615. _box, {
  5616. "id": "doc" + cid + stage + task + tool,
  5617. "style": {
  5618. "width": "90%",
  5619. "height": "90%",
  5620. "overflow": 'hidden'
  5621. },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, {
  5626. "style": {
  5627. "height": "36px"
  5628. }
  5629. }).form; //创建窗体
  5630. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5631. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5632. })
  5633. _taskbar = {
  5634. "id": str + _formdiv.id,
  5635. "style": {
  5636. "backgroundImage": "url(/img/icon/doc.png)"
  5637. },
  5638. "name": "协同文档",
  5639. "forms": _formdiv,
  5640. "click": function () {
  5641. U.MD.D.I.openApplication(str, obj, info);
  5642. }
  5643. }
  5644. break;
  5645. case "mindNetwork": //好友打开
  5646. aTool = 7;
  5647. _iframe = $$("iframe", {
  5648. "webkitallowfullscreen": "",
  5649. "mozallowfullscreen": "",
  5650. "allowfullscreen": "",
  5651. "frameborder": "no",
  5652. "border": "0",
  5653. "scrolling ": "no",
  5654. "style": {
  5655. "cssText": "border:0; width:100%; height:100%;"
  5656. },
  5657. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5658. })
  5659. _box.appendChild(_iframe);
  5660. _box.appendChild(_jie);
  5661. _formdiv = new U.UF.UI.form(
  5662. "思维网格",
  5663. _box, {
  5664. "id": "mindNetwork" + cid + stage + task + tool,
  5665. "style": {
  5666. "width": "90%",
  5667. "height": "90%",
  5668. "overflow": 'hidden'
  5669. },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, {
  5674. "style": {
  5675. "height": "36px"
  5676. }
  5677. }).form; //创建窗体
  5678. _taskbar = {
  5679. "id": str + _formdiv.id,
  5680. "style": {
  5681. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5682. },
  5683. "name": "思维网格",
  5684. "forms": _formdiv,
  5685. "click": function () {
  5686. U.MD.D.I.openApplication(str, obj, info);
  5687. }
  5688. }
  5689. break;
  5690. case "courseDesign":
  5691. _iframe = $$("iframe", {
  5692. "webkitallowfullscreen": "",
  5693. "mozallowfullscreen": "",
  5694. "allowfullscreen": "",
  5695. "frameborder": "no",
  5696. "border": "0",
  5697. "scrolling ": "no",
  5698. "style": {
  5699. "cssText": "border:0; width:100%; height:100%;"
  5700. },
  5701. "src": "/course-design-vue"
  5702. })
  5703. _box.appendChild(_iframe);
  5704. _box.appendChild(_jie);
  5705. _formdiv = new U.UF.UI.form(
  5706. "项目设计",
  5707. _box, {
  5708. "id": "courseDesign" + cid + stage + task + tool,
  5709. "style": {
  5710. "width": "90%",
  5711. "height": "90%",
  5712. "overflow": 'hidden'
  5713. },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, {
  5718. "style": {
  5719. "height": "36px"
  5720. }
  5721. }).form; //创建窗体
  5722. _taskbar = {
  5723. "id": str + _formdiv.id,
  5724. "style": {
  5725. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5726. },
  5727. "name": "项目设计",
  5728. "forms": _formdiv,
  5729. "click": function () {
  5730. U.MD.D.I.openApplication(str, obj, info);
  5731. }
  5732. }
  5733. break;
  5734. }
  5735. const script1 = document.createElement("script");
  5736. script1.type = "text/javascript";
  5737. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5738. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5739. const script2 = document.createElement("script");
  5740. script2.type = "text/javascript";
  5741. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5742. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5743. const script3 = document.createElement("script");
  5744. script3.type = "text/javascript";
  5745. script3.charset = "UTF-8";
  5746. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5747. const script4 = document.createElement("script");
  5748. script4.type = "text/javascript";
  5749. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5750. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5751. if (_iframe) {
  5752. if (str == 'doc') {
  5753. _iframe = _formdiv.querySelector('iframe')
  5754. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5755. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5756. _iframe.contentWindow.document.body.appendChild(script1);
  5757. _iframe.contentWindow.document.body.appendChild(script2);
  5758. // _iframe.contentWindow.document.body.appendChild(script3);
  5759. _iframe.contentWindow.document.body.appendChild(script4);
  5760. })
  5761. if (onloadListener) {
  5762. _iframe.contentDocument.location.reload()
  5763. } else {
  5764. _iframe.contentDocument.location.reload()
  5765. }
  5766. } else if (str == 'courseDesign') {
  5767. U.UF.DL.iframeLoad(_iframe, function () {
  5768. // _iframe.contentWindow.U.MD.O.W.load();
  5769. // _iframe.contentWindow.document.body.appendChild(script1);
  5770. _iframe.contentWindow.document.body.appendChild(script2);
  5771. _iframe.contentWindow.document.body.appendChild(script4);
  5772. })
  5773. } else if (str == 'mind') {
  5774. _iframe = _formdiv.querySelector('iframe')
  5775. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5776. //
  5777. _iframe.contentWindow.document.body.appendChild(script1);
  5778. _iframe.contentWindow.document.body.appendChild(script2);
  5779. _iframe.contentWindow.document.body.appendChild(script4);
  5780. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5781. })
  5782. if (onloadListener) {
  5783. _iframe.contentDocument.location.reload()
  5784. } else {
  5785. _iframe.contentDocument.location.reload()
  5786. }
  5787. } else if (str == 'whiteboard') {
  5788. _iframe = _formdiv.querySelector('iframe')
  5789. let onloadListener = _iframe.onload = () => {
  5790. _iframe.contentWindow.document.body.appendChild(script1);
  5791. _iframe.contentWindow.document.body.appendChild(script2);
  5792. _iframe.contentWindow.document.body.appendChild(script4);
  5793. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5794. };
  5795. if (onloadListener) {
  5796. _iframe.contentDocument.location.reload()
  5797. } else {
  5798. _iframe.contentDocument.location.reload()
  5799. }
  5800. } else {
  5801. _iframe.onload = () => {
  5802. _iframe.contentWindow.document.body.appendChild(script1);
  5803. _iframe.contentWindow.document.body.appendChild(script2);
  5804. // _iframe.contentWindow.document.body.appendChild(script3);
  5805. _iframe.contentWindow.document.body.appendChild(script4);
  5806. };
  5807. }
  5808. _jie.onclick = async () => {
  5809. let text = ''
  5810. if (aTool == 1) {
  5811. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5812. } else if (aTool == 6) {
  5813. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5814. } else if (aTool == 3) {
  5815. text = await U.MD.D.I.getEditorContent(_iframe);
  5816. }
  5817. _loading.style.display = 'flex'
  5818. console.log(_loading);
  5819. var _ajs = _iframe.contentWindow.document.createElement("script");
  5820. _ajs.type = "text/javascript";
  5821. _ajs.innerHTML =
  5822. // 'console.log(' + _loading + ');\n' +
  5823. 'var _js = document.createElement("script");\n' +
  5824. '_js.type="text/javascript";\n' +
  5825. '_js.charset="UTF-8";\n' +
  5826. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5827. "_js.onload = function(){\n" +
  5828. ' var a = document.getElementsByTagName("img")\n' +
  5829. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5830. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5831. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5832. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5833. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5834. "beforeUpload_shishi(file," +
  5835. "'" +
  5836. _userid +
  5837. "'" +
  5838. ", " +
  5839. "'" +
  5840. _cid +
  5841. "'" +
  5842. ", " +
  5843. "'" +
  5844. _stage +
  5845. "'" +
  5846. ", " +
  5847. "'" +
  5848. _task +
  5849. "'" +
  5850. ", " +
  5851. "'" +
  5852. _tool +
  5853. "'" +
  5854. ", " +
  5855. "'" +
  5856. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5857. "'" +
  5858. ", " +
  5859. "'" +
  5860. aTool +
  5861. "'" +
  5862. ", " +
  5863. "`" +
  5864. text +
  5865. "`" +
  5866. ")\n" +
  5867. " });\n" +
  5868. "}\n" +
  5869. "document.head.appendChild(_js);\n";
  5870. _iframe.contentWindow.document.head.appendChild(_ajs);
  5871. }
  5872. }
  5873. //U.MD.D.I.openClick(str);
  5874. //如果有任务栏信息
  5875. // if (_taskbar) {
  5876. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5877. // }
  5878. }
  5879. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5880. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5881. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5882. _userinfo = US.userInfo, //登录用户信息
  5883. _userid = US.userInfo.userid //登录用户id
  5884. let _iframe;
  5885. let _cid = cid,
  5886. _stage = stage,
  5887. _task = task,
  5888. _tool = tool;
  5889. var _jie = $$("div", {
  5890. "style": {
  5891. "position": "absolute",
  5892. "bottom": "50px",
  5893. "right": "50px",
  5894. "zIndex": "9999",
  5895. "backgroundColor": "#2268bc",
  5896. "color": "#fff",
  5897. "padding": "12px 20px",
  5898. "cursor": "pointer",
  5899. "borderRadius": "4px",
  5900. },
  5901. "innerHTML": "提交作业"
  5902. })
  5903. let aTool = ''
  5904. let _loading = document.createElement('div')
  5905. _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;"
  5906. // _loading.id = "";
  5907. let _lchild = document.createElement('div')
  5908. let _limg = document.createElement('img')
  5909. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5910. _limg.style = "width: 26px;margin-right: 10px;"
  5911. _lchild.appendChild(_limg)
  5912. let _lspan = document.createElement('span')
  5913. _lspan.innerHTML = "上传中..."
  5914. _lchild.appendChild(_lspan)
  5915. _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%);"
  5916. _loading.appendChild(_lchild)
  5917. var _box = $$('div', {
  5918. "style": {
  5919. "position": "relative",
  5920. "width": "100%",
  5921. "height": "100%",
  5922. },
  5923. })
  5924. _box.appendChild(_loading)
  5925. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5926. switch (str) {
  5927. case "whiteboard":
  5928. aTool = 1;
  5929. _iframe = $$("iframe", {
  5930. "frameborder": "no",
  5931. "border": "0",
  5932. "scrolling ": "no",
  5933. "style": {
  5934. "cssText": "border:0;width:100%;height:100%"
  5935. },
  5936. "src": "https://beta.iwb.cocorobo.cn/"
  5937. })
  5938. _box.appendChild(_iframe);
  5939. _box.appendChild(_jie);
  5940. _formdiv = new U.UF.UI.form(
  5941. "电子白板",
  5942. _box, {
  5943. "id": "whiteboard" + cid + stage + task + tool,
  5944. "style": {
  5945. "width": "90%",
  5946. "height": "90%",
  5947. "overflow": 'hidden'
  5948. },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, {
  5953. "style": {
  5954. "height": "36px"
  5955. }
  5956. }).form; //创建窗体
  5957. _taskbar = {
  5958. "id": str + _formdiv.id,
  5959. "style": {
  5960. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5961. },
  5962. "name": "电子白板",
  5963. "forms": _formdiv,
  5964. "click": function () {
  5965. U.MD.D.I.openApplication(str, obj, info);
  5966. }
  5967. }
  5968. break;
  5969. case "mind":
  5970. aTool = 3;
  5971. _iframe = $$("iframe", {
  5972. "frameborder": "no",
  5973. "border": "0",
  5974. "scrolling ": "no",
  5975. "style": {
  5976. "cssText": "border:0;width:100%;height:100%"
  5977. },
  5978. "src": "/kityminder-editor/dist/index.html"
  5979. })
  5980. _box.appendChild(_iframe);
  5981. _box.appendChild(_jie);
  5982. _formdiv = new U.UF.UI.form(
  5983. "思维导图",
  5984. _box, { //"/jsmind/example/demo.html"
  5985. "id": "mind" + cid + stage + task + tool,
  5986. "style": {
  5987. "width": "90%",
  5988. "height": "90%",
  5989. "overflow": 'hidden'
  5990. },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, {
  5995. "style": {
  5996. "height": "36px"
  5997. }
  5998. }).form; //创建窗体
  5999. _taskbar = {
  6000. "id": str + _formdiv.id,
  6001. "style": {
  6002. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6003. },
  6004. "name": "思维导图",
  6005. "forms": _formdiv,
  6006. "click": function () {
  6007. U.MD.D.I.openApplication(str, obj, info);
  6008. }
  6009. }
  6010. break;
  6011. case "MindMap":
  6012. aTool = 3;
  6013. _iframe = $$("iframe", {
  6014. "frameborder": "no",
  6015. "border": "0",
  6016. "scrolling ": "no",
  6017. "style": {
  6018. "cssText": "border:0;width:100%;height:100%"
  6019. },
  6020. "src": "//cloud.cocorobo.cn/mind/"
  6021. })
  6022. _box.appendChild(_iframe);
  6023. _box.appendChild(_jie);
  6024. _formdiv = new U.UF.UI.form(
  6025. "思维导图",
  6026. _box, { //"/jsmind/example/demo.html"
  6027. "id": "mind" + cid + stage + task + tool,
  6028. "style": {
  6029. "width": "90%",
  6030. "height": "90%",
  6031. "overflow": 'hidden'
  6032. },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, {
  6037. "style": {
  6038. "height": "36px"
  6039. }
  6040. }).form; //创建窗体
  6041. _taskbar = {
  6042. "id": str + _formdiv.id,
  6043. "style": {
  6044. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6045. },
  6046. "name": "思维导图",
  6047. "forms": _formdiv,
  6048. "click": function () {
  6049. U.MD.D.I.openApplication(str, obj, info);
  6050. }
  6051. }
  6052. break;
  6053. case "doc":
  6054. aTool = 6;
  6055. _iframe = $$("iframe", {
  6056. "frameborder": "no",
  6057. "border": "0",
  6058. "scrolling ": "no",
  6059. "style": {
  6060. "cssText": "border:0;width:100%;height:100%"
  6061. },
  6062. "src": "/Office/Word/WordEditArea.htm"
  6063. })
  6064. _box.appendChild(_iframe);
  6065. _box.appendChild(_jie);
  6066. _formdiv = new U.UF.UI.form(
  6067. "协同文档",
  6068. _box, {
  6069. "id": "doc" + cid + stage + task + tool,
  6070. "style": {
  6071. "width": "90%",
  6072. "height": "90%",
  6073. "overflow": 'hidden'
  6074. },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, {
  6079. "style": {
  6080. "height": "36px"
  6081. }
  6082. }).form; //创建窗体
  6083. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6084. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6085. })
  6086. _taskbar = {
  6087. "id": str + _formdiv.id,
  6088. "style": {
  6089. "backgroundImage": "url(/img/icon/doc.png)"
  6090. },
  6091. "name": "协同文档",
  6092. "forms": _formdiv,
  6093. "click": function () {
  6094. U.MD.D.I.openApplication(str, obj, info);
  6095. }
  6096. }
  6097. break;
  6098. case "mindNetwork": //好友打开
  6099. aTool = 7;
  6100. _iframe = $$("iframe", {
  6101. "webkitallowfullscreen": "",
  6102. "mozallowfullscreen": "",
  6103. "allowfullscreen": "",
  6104. "frameborder": "no",
  6105. "border": "0",
  6106. "scrolling ": "no",
  6107. "style": {
  6108. "cssText": "border:0; width:100%; height:100%;"
  6109. },
  6110. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6111. })
  6112. _box.appendChild(_iframe);
  6113. _box.appendChild(_jie);
  6114. _formdiv = new U.UF.UI.form(
  6115. "思维网格",
  6116. _box, {
  6117. "id": "mindNetwork" + cid + stage + task + tool,
  6118. "style": {
  6119. "width": "90%",
  6120. "height": "90%",
  6121. "overflow": 'hidden'
  6122. },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, {
  6127. "style": {
  6128. "height": "36px"
  6129. }
  6130. }).form; //创建窗体
  6131. _taskbar = {
  6132. "id": str + _formdiv.id,
  6133. "style": {
  6134. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6135. },
  6136. "name": "思维网格",
  6137. "forms": _formdiv,
  6138. "click": function () {
  6139. U.MD.D.I.openApplication(str, obj, info);
  6140. }
  6141. }
  6142. break;
  6143. case "courseDesign":
  6144. _iframe = $$("iframe", {
  6145. "webkitallowfullscreen": "",
  6146. "mozallowfullscreen": "",
  6147. "allowfullscreen": "",
  6148. "frameborder": "no",
  6149. "border": "0",
  6150. "scrolling ": "no",
  6151. "style": {
  6152. "cssText": "border:0; width:100%; height:100%;"
  6153. },
  6154. "src": "/course-design-vue"
  6155. })
  6156. _box.appendChild(_iframe);
  6157. _box.appendChild(_jie);
  6158. _formdiv = new U.UF.UI.form(
  6159. "项目设计",
  6160. _box, {
  6161. "id": "courseDesign" + cid + stage + task + tool,
  6162. "style": {
  6163. "width": "90%",
  6164. "height": "90%",
  6165. "overflow": 'hidden'
  6166. },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, {
  6171. "style": {
  6172. "height": "36px"
  6173. }
  6174. }).form; //创建窗体
  6175. _taskbar = {
  6176. "id": str + _formdiv.id,
  6177. "style": {
  6178. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6179. },
  6180. "name": "项目设计",
  6181. "forms": _formdiv,
  6182. "click": function () {
  6183. U.MD.D.I.openApplication(str, obj, info);
  6184. }
  6185. }
  6186. break;
  6187. }
  6188. const script1 = document.createElement("script");
  6189. script1.type = "text/javascript";
  6190. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6191. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6192. const script2 = document.createElement("script");
  6193. script2.type = "text/javascript";
  6194. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6195. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6196. const script3 = document.createElement("script");
  6197. script3.type = "text/javascript";
  6198. script3.charset = "UTF-8";
  6199. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6200. const script4 = document.createElement("script");
  6201. script4.type = "text/javascript";
  6202. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6203. script4.src = window.origin + "/js/Common/jietu2E.js";
  6204. if (_iframe) {
  6205. if (str == 'doc') {
  6206. _iframe = _formdiv.querySelector('iframe')
  6207. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6208. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6209. _iframe.contentWindow.document.body.appendChild(script1);
  6210. _iframe.contentWindow.document.body.appendChild(script2);
  6211. // _iframe.contentWindow.document.body.appendChild(script3);
  6212. _iframe.contentWindow.document.body.appendChild(script4);
  6213. })
  6214. if (onloadListener) {
  6215. _iframe.contentDocument.location.reload()
  6216. } else {
  6217. _iframe.contentDocument.location.reload()
  6218. }
  6219. } else if (str == 'courseDesign') {
  6220. U.UF.DL.iframeLoad(_iframe, function () {
  6221. // _iframe.contentWindow.U.MD.O.W.load();
  6222. // _iframe.contentWindow.document.body.appendChild(script1);
  6223. _iframe.contentWindow.document.body.appendChild(script2);
  6224. _iframe.contentWindow.document.body.appendChild(script4);
  6225. })
  6226. } else if (str == 'mind') {
  6227. _iframe = _formdiv.querySelector('iframe')
  6228. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6229. //
  6230. _iframe.contentWindow.document.body.appendChild(script1);
  6231. _iframe.contentWindow.document.body.appendChild(script2);
  6232. _iframe.contentWindow.document.body.appendChild(script4);
  6233. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6234. })
  6235. if (onloadListener) {
  6236. _iframe.contentDocument.location.reload()
  6237. } else {
  6238. _iframe.contentDocument.location.reload()
  6239. }
  6240. } else if (str == 'whiteboard') {
  6241. _iframe = _formdiv.querySelector('iframe')
  6242. let onloadListener = _iframe.onload = () => {
  6243. _iframe.contentWindow.document.body.appendChild(script1);
  6244. _iframe.contentWindow.document.body.appendChild(script2);
  6245. _iframe.contentWindow.document.body.appendChild(script4);
  6246. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6247. };
  6248. if (onloadListener) {
  6249. _iframe.contentDocument.location.reload()
  6250. } else {
  6251. _iframe.contentDocument.location.reload()
  6252. }
  6253. } else {
  6254. _iframe.onload = () => {
  6255. _iframe.contentWindow.document.body.appendChild(script1);
  6256. _iframe.contentWindow.document.body.appendChild(script2);
  6257. // _iframe.contentWindow.document.body.appendChild(script3);
  6258. _iframe.contentWindow.document.body.appendChild(script4);
  6259. };
  6260. }
  6261. _jie.onclick = async () => {
  6262. let text = ''
  6263. if (aTool == 1) {
  6264. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6265. } else if (aTool == 6) {
  6266. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6267. } else if (aTool == 3) {
  6268. text = await U.MD.D.I.getEditorContent(_iframe);
  6269. }
  6270. _loading.style.display = 'flex'
  6271. console.log(_loading);
  6272. var _ajs = _iframe.contentWindow.document.createElement("script");
  6273. _ajs.type = "text/javascript";
  6274. _ajs.innerHTML =
  6275. // 'console.log(' + _loading + ');\n' +
  6276. 'var _js = document.createElement("script");\n' +
  6277. '_js.type="text/javascript";\n' +
  6278. '_js.charset="UTF-8";\n' +
  6279. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6280. "_js.onload = function(){\n" +
  6281. ' var a = document.getElementsByTagName("img")\n' +
  6282. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6283. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6284. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6285. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6286. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6287. "beforeUpload_shishi(file," +
  6288. "'" +
  6289. _userid +
  6290. "'" +
  6291. ", " +
  6292. "'" +
  6293. _cid +
  6294. "'" +
  6295. ", " +
  6296. "'" +
  6297. _stage +
  6298. "'" +
  6299. ", " +
  6300. "'" +
  6301. _task +
  6302. "'" +
  6303. ", " +
  6304. "'" +
  6305. _tool +
  6306. "'" +
  6307. ", " +
  6308. "'" +
  6309. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6310. "'" +
  6311. ", " +
  6312. "'" +
  6313. aTool +
  6314. "'" +
  6315. ", " +
  6316. "`" +
  6317. text +
  6318. "`" +
  6319. ")\n" +
  6320. " });\n" +
  6321. "}\n" +
  6322. "document.head.appendChild(_js);\n";
  6323. _iframe.contentWindow.document.head.appendChild(_ajs);
  6324. }
  6325. }
  6326. //U.MD.D.I.openClick(str);
  6327. //如果有任务栏信息
  6328. // if (_taskbar) {
  6329. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6330. // }
  6331. }
  6332. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6333. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6334. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6335. _userid = student.userid, //登录用户id
  6336. _username = student.student //用户名字
  6337. let _iframe;
  6338. let _cid = cid,
  6339. _stage = stage,
  6340. _task = task,
  6341. _tool = tool;
  6342. var _jie = $$("div", {
  6343. "style": {
  6344. "position": "absolute",
  6345. "bottom": "50px",
  6346. "right": "50px",
  6347. "zIndex": "9999",
  6348. "backgroundColor": "#2268bc",
  6349. "color": "#fff",
  6350. "padding": "12px 20px",
  6351. "cursor": "pointer",
  6352. "borderRadius": "4px",
  6353. },
  6354. "innerHTML": "提交作业"
  6355. })
  6356. let aTool = ''
  6357. let _loading = document.createElement('div')
  6358. _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;"
  6359. // _loading.id = "";
  6360. let _lchild = document.createElement('div')
  6361. let _limg = document.createElement('img')
  6362. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6363. _limg.style = "width: 26px;margin-right: 10px;"
  6364. _lchild.appendChild(_limg)
  6365. let _lspan = document.createElement('span')
  6366. _lspan.innerHTML = "上传中..."
  6367. _lchild.appendChild(_lspan)
  6368. _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%);"
  6369. _loading.appendChild(_lchild)
  6370. var _box = $$('div', {
  6371. "style": {
  6372. "position": "relative",
  6373. "width": "100%",
  6374. "height": "100%",
  6375. },
  6376. })
  6377. _box.appendChild(_loading)
  6378. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6379. switch (str) {
  6380. case "whiteboard":
  6381. aTool = 1;
  6382. _iframe = $$("iframe", {
  6383. "frameborder": "no",
  6384. "border": "0",
  6385. "scrolling ": "no",
  6386. "style": {
  6387. "cssText": "border:0;width:100%;height:100%"
  6388. },
  6389. "src": "https://beta.iwb.cocorobo.cn/"
  6390. })
  6391. _box.appendChild(_iframe);
  6392. _box.appendChild(_jie);
  6393. _formdiv = new U.UF.UI.form(
  6394. "电子白板-" + _username,
  6395. _box, {
  6396. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6397. "style": {
  6398. "width": "90%",
  6399. "height": "90%",
  6400. "overflow": 'hidden'
  6401. },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, {
  6406. "style": {
  6407. "height": "36px"
  6408. }
  6409. }).form; //创建窗体
  6410. _taskbar = {
  6411. "id": str + _formdiv.id,
  6412. "style": {
  6413. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6414. },
  6415. "name": "电子白板",
  6416. "forms": _formdiv,
  6417. "click": function () {
  6418. U.MD.D.I.openApplication(str, obj, info);
  6419. }
  6420. }
  6421. break;
  6422. case "mind":
  6423. aTool = 3;
  6424. _iframe = $$("iframe", {
  6425. "frameborder": "no",
  6426. "border": "0",
  6427. "scrolling ": "no",
  6428. "style": {
  6429. "cssText": "border:0;width:100%;height:100%"
  6430. },
  6431. "src": "/kityminder-editor/dist/index.html"
  6432. })
  6433. _box.appendChild(_iframe);
  6434. _box.appendChild(_jie);
  6435. _formdiv = new U.UF.UI.form(
  6436. "思维导图-" + _username,
  6437. _box, { //"/jsmind/example/demo.html"
  6438. "id": "mind" + cid + stage + task + tool + _userid,
  6439. "style": {
  6440. "width": "90%",
  6441. "height": "90%",
  6442. "overflow": 'hidden'
  6443. },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, {
  6448. "style": {
  6449. "height": "36px"
  6450. }
  6451. }).form; //创建窗体
  6452. _taskbar = {
  6453. "id": str + _formdiv.id,
  6454. "style": {
  6455. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6456. },
  6457. "name": "思维导图",
  6458. "forms": _formdiv,
  6459. "click": function () {
  6460. U.MD.D.I.openApplication(str, obj, info);
  6461. }
  6462. }
  6463. break;
  6464. case "MindMap":
  6465. aTool = 3;
  6466. _iframe = $$("iframe", {
  6467. "frameborder": "no",
  6468. "border": "0",
  6469. "scrolling ": "no",
  6470. "style": {
  6471. "cssText": "border:0;width:100%;height:100%"
  6472. },
  6473. "src": "//cloud.cocorobo.cn/mind/"
  6474. })
  6475. _box.appendChild(_iframe);
  6476. _box.appendChild(_jie);
  6477. _formdiv = new U.UF.UI.form(
  6478. "思维导图-" + _username,
  6479. _box, { //"/jsmind/example/demo.html"
  6480. "id": "mind" + cid + stage + task + tool + _userid,
  6481. "style": {
  6482. "width": "90%",
  6483. "height": "90%",
  6484. "overflow": 'hidden'
  6485. },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, {
  6490. "style": {
  6491. "height": "36px"
  6492. }
  6493. }).form; //创建窗体
  6494. _taskbar = {
  6495. "id": str + _formdiv.id,
  6496. "style": {
  6497. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6498. },
  6499. "name": "思维导图",
  6500. "forms": _formdiv,
  6501. "click": function () {
  6502. U.MD.D.I.openApplication(str, obj, info);
  6503. }
  6504. }
  6505. break;
  6506. case "doc":
  6507. aTool = 6;
  6508. _iframe = $$("iframe", {
  6509. "frameborder": "no",
  6510. "border": "0",
  6511. "scrolling ": "no",
  6512. "style": {
  6513. "cssText": "border:0;width:100%;height:100%"
  6514. },
  6515. "src": "/Office/Word/WordEditArea.htm"
  6516. })
  6517. _box.appendChild(_iframe);
  6518. _box.appendChild(_jie);
  6519. _formdiv = new U.UF.UI.form(
  6520. "协同文档-" + _username,
  6521. _box, {
  6522. "id": "doc" + cid + stage + task + tool + _userid,
  6523. "style": {
  6524. "width": "90%",
  6525. "height": "90%",
  6526. "overflow": 'hidden'
  6527. },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, {
  6532. "style": {
  6533. "height": "36px"
  6534. }
  6535. }).form; //创建窗体
  6536. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6537. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6538. })
  6539. _taskbar = {
  6540. "id": str + _formdiv.id,
  6541. "style": {
  6542. "backgroundImage": "url(/img/icon/doc.png)"
  6543. },
  6544. "name": "协同文档",
  6545. "forms": _formdiv,
  6546. "click": function () {
  6547. U.MD.D.I.openApplication(str, obj, info);
  6548. }
  6549. }
  6550. break;
  6551. case "mindNetwork": //好友打开
  6552. aTool = 7;
  6553. _iframe = $$("iframe", {
  6554. "webkitallowfullscreen": "",
  6555. "mozallowfullscreen": "",
  6556. "allowfullscreen": "",
  6557. "frameborder": "no",
  6558. "border": "0",
  6559. "scrolling ": "no",
  6560. "style": {
  6561. "cssText": "border:0; width:100%; height:100%;"
  6562. },
  6563. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6564. })
  6565. _box.appendChild(_iframe);
  6566. _box.appendChild(_jie);
  6567. _formdiv = new U.UF.UI.form(
  6568. "思维网格-" + _username,
  6569. _box, {
  6570. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6571. "style": {
  6572. "width": "90%",
  6573. "height": "90%",
  6574. "overflow": 'hidden'
  6575. },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, {
  6580. "style": {
  6581. "height": "36px"
  6582. }
  6583. }).form; //创建窗体
  6584. _taskbar = {
  6585. "id": str + _formdiv.id,
  6586. "style": {
  6587. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6588. },
  6589. "name": "思维网格",
  6590. "forms": _formdiv,
  6591. "click": function () {
  6592. U.MD.D.I.openApplication(str, obj, info);
  6593. }
  6594. }
  6595. break;
  6596. case "courseDesign":
  6597. _iframe = $$("iframe", {
  6598. "webkitallowfullscreen": "",
  6599. "mozallowfullscreen": "",
  6600. "allowfullscreen": "",
  6601. "frameborder": "no",
  6602. "border": "0",
  6603. "scrolling ": "no",
  6604. "style": {
  6605. "cssText": "border:0; width:100%; height:100%;"
  6606. },
  6607. "src": "/course-design-vue"
  6608. })
  6609. _box.appendChild(_iframe);
  6610. _box.appendChild(_jie);
  6611. _formdiv = new U.UF.UI.form(
  6612. "项目设计-" + _username,
  6613. _box, {
  6614. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6615. "style": {
  6616. "width": "90%",
  6617. "height": "90%",
  6618. "overflow": 'hidden'
  6619. },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, {
  6624. "style": {
  6625. "height": "36px"
  6626. }
  6627. }).form; //创建窗体
  6628. _taskbar = {
  6629. "id": str + _formdiv.id,
  6630. "style": {
  6631. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6632. },
  6633. "name": "项目设计",
  6634. "forms": _formdiv,
  6635. "click": function () {
  6636. U.MD.D.I.openApplication(str, obj, info);
  6637. }
  6638. }
  6639. break;
  6640. }
  6641. const script1 = document.createElement("script");
  6642. script1.type = "text/javascript";
  6643. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6644. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6645. const script2 = document.createElement("script");
  6646. script2.type = "text/javascript";
  6647. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6648. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6649. const script3 = document.createElement("script");
  6650. script3.type = "text/javascript";
  6651. script3.charset = "UTF-8";
  6652. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6653. const script4 = document.createElement("script");
  6654. script4.type = "text/javascript";
  6655. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6656. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6657. if (_iframe) {
  6658. if (str == 'doc') {
  6659. _iframe = _formdiv.querySelector('iframe')
  6660. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6661. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6662. _iframe.contentWindow.document.body.appendChild(script1);
  6663. _iframe.contentWindow.document.body.appendChild(script2);
  6664. // _iframe.contentWindow.document.body.appendChild(script3);
  6665. _iframe.contentWindow.document.body.appendChild(script4);
  6666. })
  6667. if (onloadListener) {
  6668. _iframe.contentDocument.location.reload()
  6669. } else {
  6670. _iframe.contentDocument.location.reload()
  6671. }
  6672. } else if (str == 'courseDesign') {
  6673. U.UF.DL.iframeLoad(_iframe, function () {
  6674. // _iframe.contentWindow.U.MD.O.W.load();
  6675. // _iframe.contentWindow.document.body.appendChild(script1);
  6676. _iframe.contentWindow.document.body.appendChild(script2);
  6677. _iframe.contentWindow.document.body.appendChild(script4);
  6678. })
  6679. } else if (str == 'mind') {
  6680. _iframe = _formdiv.querySelector('iframe')
  6681. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6682. //
  6683. _iframe.contentWindow.document.body.appendChild(script1);
  6684. _iframe.contentWindow.document.body.appendChild(script2);
  6685. _iframe.contentWindow.document.body.appendChild(script4);
  6686. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6687. })
  6688. if (onloadListener) {
  6689. _iframe.contentDocument.location.reload()
  6690. } else {
  6691. _iframe.contentDocument.location.reload()
  6692. }
  6693. } else if (str == 'whiteboard') {
  6694. _iframe = _formdiv.querySelector('iframe')
  6695. let onloadListener = _iframe.onload = () => {
  6696. _iframe.contentWindow.document.body.appendChild(script1);
  6697. _iframe.contentWindow.document.body.appendChild(script2);
  6698. _iframe.contentWindow.document.body.appendChild(script4);
  6699. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6700. };
  6701. if (onloadListener) {
  6702. _iframe.contentDocument.location.reload()
  6703. } else {
  6704. _iframe.contentDocument.location.reload()
  6705. }
  6706. } else {
  6707. _iframe.onload = () => {
  6708. _iframe.contentWindow.document.body.appendChild(script1);
  6709. _iframe.contentWindow.document.body.appendChild(script2);
  6710. // _iframe.contentWindow.document.body.appendChild(script3);
  6711. _iframe.contentWindow.document.body.appendChild(script4);
  6712. };
  6713. }
  6714. _jie.onclick = async () => {
  6715. let text = ''
  6716. if (aTool == 1) {
  6717. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6718. } else if (aTool == 6) {
  6719. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6720. } else if (aTool == 3) {
  6721. text = await U.MD.D.I.getEditorContent(_iframe);
  6722. }
  6723. _loading.style.display = 'flex'
  6724. console.log(_loading);
  6725. var _ajs = _iframe.contentWindow.document.createElement("script");
  6726. _ajs.type = "text/javascript";
  6727. _ajs.innerHTML =
  6728. // 'console.log(' + _loading + ');\n' +
  6729. 'var _js = document.createElement("script");\n' +
  6730. '_js.type="text/javascript";\n' +
  6731. '_js.charset="UTF-8";\n' +
  6732. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6733. "_js.onload = function(){\n" +
  6734. ' var a = document.getElementsByTagName("img")\n' +
  6735. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6736. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6737. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6738. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6739. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6740. "beforeUpload_shishi(file," +
  6741. "'" +
  6742. _userid +
  6743. "'" +
  6744. ", " +
  6745. "'" +
  6746. _cid +
  6747. "'" +
  6748. ", " +
  6749. "'" +
  6750. _stage +
  6751. "'" +
  6752. ", " +
  6753. "'" +
  6754. _task +
  6755. "'" +
  6756. ", " +
  6757. "'" +
  6758. _tool +
  6759. "'" +
  6760. ", " +
  6761. "'" +
  6762. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6763. "'" +
  6764. ", " +
  6765. "'" +
  6766. aTool +
  6767. "'" +
  6768. ", " +
  6769. "`" +
  6770. text +
  6771. "`" +
  6772. ")\n" +
  6773. " });\n" +
  6774. "}\n" +
  6775. "document.head.appendChild(_js);\n";
  6776. _iframe.contentWindow.document.head.appendChild(_ajs);
  6777. }
  6778. }
  6779. }
  6780. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6781. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6782. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6783. _userid = student.userid, //登录用户id
  6784. _username = student.student //用户名字
  6785. let _iframe;
  6786. let _cid = cid,
  6787. _stage = stage,
  6788. _task = task,
  6789. _tool = tool;
  6790. var _jie = $$("div", {
  6791. "style": {
  6792. "position": "absolute",
  6793. "bottom": "50px",
  6794. "right": "50px",
  6795. "zIndex": "9999",
  6796. "backgroundColor": "#2268bc",
  6797. "color": "#fff",
  6798. "padding": "12px 20px",
  6799. "cursor": "pointer",
  6800. "borderRadius": "4px",
  6801. },
  6802. "innerHTML": "提交作业"
  6803. })
  6804. let aTool = ''
  6805. let _loading = document.createElement('div')
  6806. _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;"
  6807. // _loading.id = "";
  6808. let _lchild = document.createElement('div')
  6809. let _limg = document.createElement('img')
  6810. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6811. _limg.style = "width: 26px;margin-right: 10px;"
  6812. _lchild.appendChild(_limg)
  6813. let _lspan = document.createElement('span')
  6814. _lspan.innerHTML = "上传中..."
  6815. _lchild.appendChild(_lspan)
  6816. _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%);"
  6817. _loading.appendChild(_lchild)
  6818. var _box = $$('div', {
  6819. "style": {
  6820. "position": "relative",
  6821. "width": "100%",
  6822. "height": "100%",
  6823. },
  6824. })
  6825. _box.appendChild(_loading)
  6826. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6827. switch (str) {
  6828. case "whiteboard":
  6829. aTool = 1;
  6830. _iframe = $$("iframe", {
  6831. "frameborder": "no",
  6832. "border": "0",
  6833. "scrolling ": "no",
  6834. "style": {
  6835. "cssText": "border:0;width:100%;height:100%"
  6836. },
  6837. "src": "https://beta.iwb.cocorobo.cn/"
  6838. })
  6839. _box.appendChild(_iframe);
  6840. _box.appendChild(_jie);
  6841. _formdiv = new U.UF.UI.form(
  6842. "电子白板-" + _username,
  6843. _box, {
  6844. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6845. "style": {
  6846. "width": "90%",
  6847. "height": "90%",
  6848. "overflow": 'hidden'
  6849. },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, {
  6854. "style": {
  6855. "height": "36px"
  6856. }
  6857. }).form; //创建窗体
  6858. _taskbar = {
  6859. "id": str + _formdiv.id,
  6860. "style": {
  6861. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6862. },
  6863. "name": "电子白板",
  6864. "forms": _formdiv,
  6865. "click": function () {
  6866. U.MD.D.I.openApplication(str, obj, info);
  6867. }
  6868. }
  6869. break;
  6870. case "mind":
  6871. aTool = 3;
  6872. _iframe = $$("iframe", {
  6873. "frameborder": "no",
  6874. "border": "0",
  6875. "scrolling ": "no",
  6876. "style": {
  6877. "cssText": "border:0;width:100%;height:100%"
  6878. },
  6879. "src": "/kityminder-editor/dist/index.html"
  6880. })
  6881. _box.appendChild(_iframe);
  6882. _box.appendChild(_jie);
  6883. _formdiv = new U.UF.UI.form(
  6884. "思维导图-" + _username,
  6885. _box, { //"/jsmind/example/demo.html"
  6886. "id": "mind" + cid + stage + task + tool + _userid,
  6887. "style": {
  6888. "width": "90%",
  6889. "height": "90%",
  6890. "overflow": 'hidden'
  6891. },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, {
  6896. "style": {
  6897. "height": "36px"
  6898. }
  6899. }).form; //创建窗体
  6900. _taskbar = {
  6901. "id": str + _formdiv.id,
  6902. "style": {
  6903. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6904. },
  6905. "name": "思维导图",
  6906. "forms": _formdiv,
  6907. "click": function () {
  6908. U.MD.D.I.openApplication(str, obj, info);
  6909. }
  6910. }
  6911. break;
  6912. case "MindMap":
  6913. aTool = 3;
  6914. _iframe = $$("iframe", {
  6915. "frameborder": "no",
  6916. "border": "0",
  6917. "scrolling ": "no",
  6918. "style": {
  6919. "cssText": "border:0;width:100%;height:100%"
  6920. },
  6921. "src": "//cloud.cocorobo.cn/mind/"
  6922. })
  6923. _box.appendChild(_iframe);
  6924. _box.appendChild(_jie);
  6925. _formdiv = new U.UF.UI.form(
  6926. "思维导图-" + _username,
  6927. _box, { //"/jsmind/example/demo.html"
  6928. "id": "mind" + cid + stage + task + tool + _userid,
  6929. "style": {
  6930. "width": "90%",
  6931. "height": "90%",
  6932. "overflow": 'hidden'
  6933. },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, {
  6938. "style": {
  6939. "height": "36px"
  6940. }
  6941. }).form; //创建窗体
  6942. _taskbar = {
  6943. "id": str + _formdiv.id,
  6944. "style": {
  6945. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6946. },
  6947. "name": "思维导图",
  6948. "forms": _formdiv,
  6949. "click": function () {
  6950. U.MD.D.I.openApplication(str, obj, info);
  6951. }
  6952. }
  6953. break;
  6954. case "doc":
  6955. aTool = 6;
  6956. _iframe = $$("iframe", {
  6957. "frameborder": "no",
  6958. "border": "0",
  6959. "scrolling ": "no",
  6960. "style": {
  6961. "cssText": "border:0;width:100%;height:100%"
  6962. },
  6963. "src": "/Office/Word/WordEditArea.htm"
  6964. })
  6965. _box.appendChild(_iframe);
  6966. _box.appendChild(_jie);
  6967. _formdiv = new U.UF.UI.form(
  6968. "协同文档-" + _username,
  6969. _box, {
  6970. "id": "doc" + cid + stage + task + tool + _userid,
  6971. "style": {
  6972. "width": "90%",
  6973. "height": "90%",
  6974. "overflow": 'hidden'
  6975. },
  6976. "onresize": function () { }
  6977. }, {
  6978. closecallback: function () { }
  6979. }, {
  6980. "style": {
  6981. "height": "36px"
  6982. }
  6983. }).form; //创建窗体
  6984. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6985. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6986. })
  6987. _taskbar = {
  6988. "id": str + _formdiv.id,
  6989. "style": {
  6990. "backgroundImage": "url(/img/icon/doc.png)"
  6991. },
  6992. "name": "协同文档",
  6993. "forms": _formdiv,
  6994. "click": function () {
  6995. U.MD.D.I.openApplication(str, obj, info);
  6996. }
  6997. }
  6998. break;
  6999. case "mindNetwork": //好友打开
  7000. aTool = 7;
  7001. _iframe = $$("iframe", {
  7002. "webkitallowfullscreen": "",
  7003. "mozallowfullscreen": "",
  7004. "allowfullscreen": "",
  7005. "frameborder": "no",
  7006. "border": "0",
  7007. "scrolling ": "no",
  7008. "style": {
  7009. "cssText": "border:0; width:100%; height:100%;"
  7010. },
  7011. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7012. })
  7013. _box.appendChild(_iframe);
  7014. _box.appendChild(_jie);
  7015. _formdiv = new U.UF.UI.form(
  7016. "思维网格-" + _username,
  7017. _box, {
  7018. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7019. "style": {
  7020. "width": "90%",
  7021. "height": "90%",
  7022. "overflow": 'hidden'
  7023. },
  7024. "onresize": function () { }
  7025. }, {
  7026. closecallback: function () { }
  7027. }, {
  7028. "style": {
  7029. "height": "36px"
  7030. }
  7031. }).form; //创建窗体
  7032. _taskbar = {
  7033. "id": str + _formdiv.id,
  7034. "style": {
  7035. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7036. },
  7037. "name": "思维网格",
  7038. "forms": _formdiv,
  7039. "click": function () {
  7040. U.MD.D.I.openApplication(str, obj, info);
  7041. }
  7042. }
  7043. break;
  7044. case "courseDesign":
  7045. _iframe = $$("iframe", {
  7046. "webkitallowfullscreen": "",
  7047. "mozallowfullscreen": "",
  7048. "allowfullscreen": "",
  7049. "frameborder": "no",
  7050. "border": "0",
  7051. "scrolling ": "no",
  7052. "style": {
  7053. "cssText": "border:0; width:100%; height:100%;"
  7054. },
  7055. "src": "/course-design-vue"
  7056. })
  7057. _box.appendChild(_iframe);
  7058. _box.appendChild(_jie);
  7059. _formdiv = new U.UF.UI.form(
  7060. "项目设计-" + _username,
  7061. _box, {
  7062. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7063. "style": {
  7064. "width": "90%",
  7065. "height": "90%",
  7066. "overflow": 'hidden'
  7067. },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, {
  7072. "style": {
  7073. "height": "36px"
  7074. }
  7075. }).form; //创建窗体
  7076. _taskbar = {
  7077. "id": str + _formdiv.id,
  7078. "style": {
  7079. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7080. },
  7081. "name": "项目设计",
  7082. "forms": _formdiv,
  7083. "click": function () {
  7084. U.MD.D.I.openApplication(str, obj, info);
  7085. }
  7086. }
  7087. break;
  7088. }
  7089. const script1 = document.createElement("script");
  7090. script1.type = "text/javascript";
  7091. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7092. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7093. const script2 = document.createElement("script");
  7094. script2.type = "text/javascript";
  7095. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7096. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7097. const script3 = document.createElement("script");
  7098. script3.type = "text/javascript";
  7099. script3.charset = "UTF-8";
  7100. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7101. const script4 = document.createElement("script");
  7102. script4.type = "text/javascript";
  7103. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7104. script4.src = window.origin + "/js/Common/jietu2E.js";
  7105. if (_iframe) {
  7106. if (str == 'doc') {
  7107. _iframe = _formdiv.querySelector('iframe')
  7108. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7109. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7110. _iframe.contentWindow.document.body.appendChild(script1);
  7111. _iframe.contentWindow.document.body.appendChild(script2);
  7112. // _iframe.contentWindow.document.body.appendChild(script3);
  7113. _iframe.contentWindow.document.body.appendChild(script4);
  7114. })
  7115. if (onloadListener) {
  7116. _iframe.contentDocument.location.reload()
  7117. } else {
  7118. _iframe.contentDocument.location.reload()
  7119. }
  7120. } else if (str == 'courseDesign') {
  7121. U.UF.DL.iframeLoad(_iframe, function () {
  7122. // _iframe.contentWindow.U.MD.O.W.load();
  7123. // _iframe.contentWindow.document.body.appendChild(script1);
  7124. _iframe.contentWindow.document.body.appendChild(script2);
  7125. _iframe.contentWindow.document.body.appendChild(script4);
  7126. })
  7127. } else if (str == 'mind') {
  7128. _iframe = _formdiv.querySelector('iframe')
  7129. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7130. //
  7131. _iframe.contentWindow.document.body.appendChild(script1);
  7132. _iframe.contentWindow.document.body.appendChild(script2);
  7133. _iframe.contentWindow.document.body.appendChild(script4);
  7134. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7135. })
  7136. if (onloadListener) {
  7137. _iframe.contentDocument.location.reload()
  7138. } else {
  7139. _iframe.contentDocument.location.reload()
  7140. }
  7141. } else if (str == 'whiteboard') {
  7142. _iframe = _formdiv.querySelector('iframe')
  7143. let onloadListener = _iframe.onload = () => {
  7144. _iframe.contentWindow.document.body.appendChild(script1);
  7145. _iframe.contentWindow.document.body.appendChild(script2);
  7146. _iframe.contentWindow.document.body.appendChild(script4);
  7147. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7148. };
  7149. if (onloadListener) {
  7150. _iframe.contentDocument.location.reload()
  7151. } else {
  7152. _iframe.contentDocument.location.reload()
  7153. }
  7154. } else {
  7155. _iframe.onload = () => {
  7156. _iframe.contentWindow.document.body.appendChild(script1);
  7157. _iframe.contentWindow.document.body.appendChild(script2);
  7158. // _iframe.contentWindow.document.body.appendChild(script3);
  7159. _iframe.contentWindow.document.body.appendChild(script4);
  7160. };
  7161. }
  7162. _jie.onclick = async () => {
  7163. let text = ''
  7164. if (aTool == 1) {
  7165. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7166. } else if (aTool == 6) {
  7167. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7168. } else if (aTool == 3) {
  7169. text = await U.MD.D.I.getEditorContent(_iframe);
  7170. }
  7171. _loading.style.display = 'flex'
  7172. console.log(_loading);
  7173. var _ajs = _iframe.contentWindow.document.createElement("script");
  7174. _ajs.type = "text/javascript";
  7175. _ajs.innerHTML =
  7176. // 'console.log(' + _loading + ');\n' +
  7177. 'var _js = document.createElement("script");\n' +
  7178. '_js.type="text/javascript";\n' +
  7179. '_js.charset="UTF-8";\n' +
  7180. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7181. "_js.onload = function(){\n" +
  7182. ' var a = document.getElementsByTagName("img")\n' +
  7183. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7184. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7185. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7186. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7187. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7188. "beforeUpload_shishi(file," +
  7189. "'" +
  7190. _userid +
  7191. "'" +
  7192. ", " +
  7193. "'" +
  7194. _cid +
  7195. "'" +
  7196. ", " +
  7197. "'" +
  7198. _stage +
  7199. "'" +
  7200. ", " +
  7201. "'" +
  7202. _task +
  7203. "'" +
  7204. ", " +
  7205. "'" +
  7206. _tool +
  7207. "'" +
  7208. ", " +
  7209. "'" +
  7210. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7211. "'" +
  7212. ", " +
  7213. "'" +
  7214. aTool +
  7215. "'" +
  7216. ", " +
  7217. "`" +
  7218. text +
  7219. "`" +
  7220. ")\n" +
  7221. " });\n" +
  7222. "}\n" +
  7223. "document.head.appendChild(_js);\n";
  7224. _iframe.contentWindow.document.head.appendChild(_ajs);
  7225. }
  7226. }
  7227. }
  7228. U.MD.D.I.getEditorContent = function (iframe) {
  7229. return new Promise((resolve, reject) => {
  7230. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7231. console.log(content);
  7232. resolve(content)
  7233. });
  7234. });
  7235. }
  7236. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7237. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7238. // if (res.value[0].length > 0) {
  7239. // // resolve(res.value[0][0].text);
  7240. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7241. // $(fileInput).val('');
  7242. // });
  7243. // }
  7244. // }, [], { "type": "GET", "withCredentials": true });
  7245. var xmlhttp;
  7246. var Mac, Sn, DeviceId
  7247. if (window.XMLHttpRequest) {
  7248. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7249. xmlhttp = new XMLHttpRequest();
  7250. } else {
  7251. // IE6, IE5 浏览器执行代码
  7252. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7253. }
  7254. xmlhttp.onreadystatechange = function () {
  7255. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7256. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7257. // resolve(res.value[0][0].text);
  7258. if (type == '2') {
  7259. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7260. } else if (type == '3') {
  7261. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7262. }
  7263. } else {
  7264. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7265. }
  7266. }
  7267. }
  7268. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7269. xmlhttp.send();
  7270. }
  7271. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7272. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7273. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7274. _userinfo = US.userInfo, //登录用户信息
  7275. _userid = US.userInfo.userid //登录用户id
  7276. let _iframe;
  7277. let _cid = cid,
  7278. _stage = stage,
  7279. _task = task,
  7280. _tool = tool;
  7281. var _jie = $$("div", {
  7282. "style": {
  7283. "position": "absolute",
  7284. "bottom": "50px",
  7285. "right": "50px",
  7286. "zIndex": "9999",
  7287. "backgroundColor": "#2268bc",
  7288. "color": "#fff",
  7289. "padding": "12px 20px",
  7290. "cursor": "pointer",
  7291. "borderRadius": "4px",
  7292. },
  7293. "innerHTML": "确认并提交"
  7294. })
  7295. let aTool = ''
  7296. let _loading = document.createElement('div')
  7297. _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;"
  7298. // _loading.id = "";
  7299. let _lchild = document.createElement('div')
  7300. let _limg = document.createElement('img')
  7301. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7302. _limg.style = "width: 26px;margin-right: 10px;"
  7303. _lchild.appendChild(_limg)
  7304. let _lspan = document.createElement('span')
  7305. _lspan.innerHTML = "上传中..."
  7306. _lchild.appendChild(_lspan)
  7307. _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%);"
  7308. _loading.appendChild(_lchild)
  7309. var _box = $$('div', {
  7310. "style": {
  7311. "position": "relative",
  7312. "width": "100%",
  7313. "height": "100%",
  7314. },
  7315. })
  7316. _box.appendChild(_loading)
  7317. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7318. switch (str) {
  7319. case "whiteboard":
  7320. aTool = 1;
  7321. _iframe = $$("iframe", {
  7322. "frameborder": "no",
  7323. "border": "0",
  7324. "scrolling ": "no",
  7325. "style": {
  7326. "cssText": "border:0;width:100%;height:100%"
  7327. },
  7328. "src": "https://beta.iwb.cocorobo.cn/"
  7329. })
  7330. _box.appendChild(_iframe);
  7331. _box.appendChild(_jie);
  7332. _formdiv = new U.UF.UI.form(
  7333. "电子白板",
  7334. _box, {
  7335. "id": "whiteboards" + cid + stage + task + tool,
  7336. "style": {
  7337. "width": "90%",
  7338. "height": "90%",
  7339. "overflow": 'hidden'
  7340. },
  7341. "onresize": function () { }
  7342. }, {
  7343. closecallback: function () { }
  7344. }, {
  7345. "style": {
  7346. "height": "36px"
  7347. }
  7348. }).form; //创建窗体
  7349. _taskbar = {
  7350. "id": str + _formdiv.id,
  7351. "style": {
  7352. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7353. },
  7354. "name": "电子白板",
  7355. "forms": _formdiv,
  7356. "click": function () {
  7357. U.MD.D.I.openApplication(str, obj, info);
  7358. }
  7359. }
  7360. break;
  7361. case "mind":
  7362. aTool = 3;
  7363. _iframe = $$("iframe", {
  7364. "frameborder": "no",
  7365. "border": "0",
  7366. "scrolling ": "no",
  7367. "style": {
  7368. "cssText": "border:0;width:100%;height:100%"
  7369. },
  7370. "src": "/kityminder-editor/dist/index.html"
  7371. });
  7372. _box.appendChild(_iframe);
  7373. _box.appendChild(_jie);
  7374. _formdiv = new U.UF.UI.form(
  7375. "思维导图",
  7376. _box, { //"/jsmind/example/demo.html"
  7377. "id": "minds" + cid + stage + task + tool,
  7378. "style": {
  7379. "width": "90%",
  7380. "height": "90%",
  7381. "overflow": 'hidden'
  7382. },
  7383. "onresize": function () { }
  7384. }, {
  7385. closecallback: function () { }
  7386. }, {
  7387. "style": {
  7388. "height": "36px"
  7389. }
  7390. }).form; //创建窗体
  7391. _taskbar = {
  7392. "id": str + _formdiv.id,
  7393. "style": {
  7394. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7395. },
  7396. "name": "思维导图",
  7397. "forms": _formdiv,
  7398. "click": function () {
  7399. U.MD.D.I.openApplication(str, obj, info);
  7400. }
  7401. }
  7402. break;
  7403. case "doc":
  7404. aTool = 6;
  7405. _iframe = $$("iframe", {
  7406. "frameborder": "no",
  7407. "border": "0",
  7408. "scrolling ": "no",
  7409. "style": {
  7410. "cssText": "border:0;width:100%;height:100%"
  7411. },
  7412. "src": "/Office/Word/WordEditArea.htm"
  7413. })
  7414. _box.appendChild(_iframe);
  7415. _box.appendChild(_jie);
  7416. _formdiv = new U.UF.UI.form(
  7417. "协同文档",
  7418. _box, {
  7419. "id": "docs" + cid + stage + task + tool,
  7420. "style": {
  7421. "width": "90%",
  7422. "height": "90%",
  7423. "overflow": 'hidden'
  7424. },
  7425. "onresize": function () { }
  7426. }, {
  7427. closecallback: function () { }
  7428. }, {
  7429. "style": {
  7430. "height": "36px"
  7431. }
  7432. }).form; //创建窗体
  7433. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7434. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7435. })
  7436. _taskbar = {
  7437. "id": str + _formdiv.id,
  7438. "style": {
  7439. "backgroundImage": "url(/img/icon/doc.png)"
  7440. },
  7441. "name": "协同文档",
  7442. "forms": _formdiv,
  7443. "click": function () {
  7444. U.MD.D.I.openApplication(str, obj, info);
  7445. }
  7446. }
  7447. break;
  7448. }
  7449. const script1 = document.createElement("script");
  7450. script1.type = "text/javascript";
  7451. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7452. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7453. const script2 = document.createElement("script");
  7454. script2.type = "text/javascript";
  7455. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7456. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7457. const script3 = document.createElement("script");
  7458. script3.type = "text/javascript";
  7459. script3.charset = "UTF-8";
  7460. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7461. const script4 = document.createElement("script");
  7462. script4.type = "text/javascript";
  7463. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7464. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7465. if (_iframe) {
  7466. if (str == 'doc') {
  7467. _iframe = _formdiv.querySelector('iframe')
  7468. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7469. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7470. _iframe.contentWindow.document.body.appendChild(script1);
  7471. _iframe.contentWindow.document.body.appendChild(script2);
  7472. // _iframe.contentWindow.document.body.appendChild(script3);
  7473. _iframe.contentWindow.document.body.appendChild(script4);
  7474. })
  7475. if (onloadListener) {
  7476. _iframe.contentDocument.location.reload()
  7477. } else {
  7478. _iframe.contentDocument.location.reload()
  7479. }
  7480. } else if (str == 'mind') {
  7481. _iframe = _formdiv.querySelector('iframe')
  7482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7483. _iframe.contentWindow.document.body.appendChild(script1);
  7484. _iframe.contentWindow.document.body.appendChild(script2);
  7485. _iframe.contentWindow.document.body.appendChild(script4);
  7486. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7487. })
  7488. if (onloadListener) {
  7489. _iframe.contentDocument.location.reload()
  7490. } else {
  7491. _iframe.contentDocument.location.reload()
  7492. }
  7493. } else {
  7494. _iframe.onload = () => {
  7495. _iframe.contentWindow.document.body.appendChild(script1);
  7496. _iframe.contentWindow.document.body.appendChild(script2);
  7497. // _iframe.contentWindow.document.body.appendChild(script3);
  7498. _iframe.contentWindow.document.body.appendChild(script4);
  7499. };
  7500. }
  7501. _jie.onclick = async () => {
  7502. let text = ''
  7503. if (aTool == 6) {
  7504. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7505. } else if (aTool == 3) {
  7506. text = await U.MD.D.I.getEditorContent(_iframe);
  7507. }
  7508. _loading.style.display = 'flex'
  7509. console.log(_loading);
  7510. var _ajs = _iframe.contentWindow.document.createElement("script");
  7511. _ajs.type = "text/javascript";
  7512. _ajs.innerHTML =
  7513. // 'console.log(' + _loading + ');\n' +
  7514. 'var _js = document.createElement("script");\n' +
  7515. '_js.type="text/javascript";\n' +
  7516. '_js.charset="UTF-8";\n' +
  7517. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7518. "_js.onload = function(){\n" +
  7519. ' var a = document.getElementsByTagName("img")\n' +
  7520. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7521. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7522. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7523. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7524. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7525. "beforeUpload_shishi(file," +
  7526. "'" +
  7527. _userid +
  7528. "'" +
  7529. ", " +
  7530. "'" +
  7531. _cid +
  7532. "'" +
  7533. ", " +
  7534. "'" +
  7535. _stage +
  7536. "'" +
  7537. ", " +
  7538. "'" +
  7539. _task +
  7540. "'" +
  7541. ", " +
  7542. "'" +
  7543. _tool +
  7544. "'" +
  7545. ", " +
  7546. "'" +
  7547. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7548. "'" +
  7549. ", " +
  7550. "'" +
  7551. aTool +
  7552. "'" +
  7553. ", " +
  7554. "`" +
  7555. text +
  7556. "`" +
  7557. ")\n" +
  7558. " });\n" +
  7559. "}\n" +
  7560. "document.head.appendChild(_js);\n";
  7561. _iframe.contentWindow.document.head.appendChild(_ajs);
  7562. }
  7563. }
  7564. //U.MD.D.I.openClick(str);
  7565. //如果有任务栏信息
  7566. // if (_taskbar) {
  7567. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7568. // }
  7569. }
  7570. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7571. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7572. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7573. _userinfo = US.userInfo, //登录用户信息
  7574. _userid = US.userInfo.userid //登录用户id
  7575. let _iframe;
  7576. let _cid = cid,
  7577. _stage = stage,
  7578. _task = task,
  7579. _tool = tool;
  7580. var _jie = $$("div", {
  7581. "style": {
  7582. "position": "absolute",
  7583. "bottom": "50px",
  7584. "right": "50px",
  7585. "zIndex": "9999",
  7586. "backgroundColor": "#2268bc",
  7587. "color": "#fff",
  7588. "padding": "12px 20px",
  7589. "cursor": "pointer",
  7590. "borderRadius": "4px",
  7591. },
  7592. "innerHTML": "确认并提交"
  7593. })
  7594. let aTool = ''
  7595. let _loading = document.createElement('div')
  7596. _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;"
  7597. // _loading.id = "";
  7598. let _lchild = document.createElement('div')
  7599. let _limg = document.createElement('img')
  7600. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7601. _limg.style = "width: 26px;margin-right: 10px;"
  7602. _lchild.appendChild(_limg)
  7603. let _lspan = document.createElement('span')
  7604. _lspan.innerHTML = "上传中..."
  7605. _lchild.appendChild(_lspan)
  7606. _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%);"
  7607. _loading.appendChild(_lchild)
  7608. var _box = $$('div', {
  7609. "style": {
  7610. "position": "relative",
  7611. "width": "100%",
  7612. "height": "100%",
  7613. },
  7614. })
  7615. _box.appendChild(_loading)
  7616. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7617. switch (str) {
  7618. case "whiteboard":
  7619. aTool = 1;
  7620. _iframe = $$("iframe", {
  7621. "frameborder": "no",
  7622. "border": "0",
  7623. "scrolling ": "no",
  7624. "style": {
  7625. "cssText": "border:0;width:100%;height:100%"
  7626. },
  7627. "src": "https://beta.iwb.cocorobo.cn/"
  7628. })
  7629. _box.appendChild(_iframe);
  7630. _box.appendChild(_jie);
  7631. _formdiv = new U.UF.UI.form(
  7632. "电子白板",
  7633. _box, {
  7634. "id": "whiteboards" + cid + stage + task + tool,
  7635. "style": {
  7636. "width": "90%",
  7637. "height": "90%",
  7638. "overflow": 'hidden'
  7639. },
  7640. "onresize": function () { }
  7641. }, {
  7642. closecallback: function () { }
  7643. }, {
  7644. "style": {
  7645. "height": "36px"
  7646. }
  7647. }).form; //创建窗体
  7648. _taskbar = {
  7649. "id": str + _formdiv.id,
  7650. "style": {
  7651. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7652. },
  7653. "name": "电子白板",
  7654. "forms": _formdiv,
  7655. "click": function () {
  7656. U.MD.D.I.openApplication(str, obj, info);
  7657. }
  7658. }
  7659. break;
  7660. case "mind":
  7661. aTool = 3;
  7662. _iframe = $$("iframe", {
  7663. "frameborder": "no",
  7664. "border": "0",
  7665. "scrolling ": "no",
  7666. "style": {
  7667. "cssText": "border:0;width:100%;height:100%"
  7668. },
  7669. "src": "/kityminder-editor/dist/index.html"
  7670. });
  7671. _box.appendChild(_iframe);
  7672. _box.appendChild(_jie);
  7673. _formdiv = new U.UF.UI.form(
  7674. "思维导图",
  7675. _box, { //"/jsmind/example/demo.html"
  7676. "id": "minds" + cid + stage + task + tool,
  7677. "style": {
  7678. "width": "90%",
  7679. "height": "90%",
  7680. "overflow": 'hidden'
  7681. },
  7682. "onresize": function () { }
  7683. }, {
  7684. closecallback: function () { }
  7685. }, {
  7686. "style": {
  7687. "height": "36px"
  7688. }
  7689. }).form; //创建窗体
  7690. _taskbar = {
  7691. "id": str + _formdiv.id,
  7692. "style": {
  7693. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7694. },
  7695. "name": "思维导图",
  7696. "forms": _formdiv,
  7697. "click": function () {
  7698. U.MD.D.I.openApplication(str, obj, info);
  7699. }
  7700. }
  7701. break;
  7702. case "doc":
  7703. aTool = 6;
  7704. _iframe = $$("iframe", {
  7705. "frameborder": "no",
  7706. "border": "0",
  7707. "scrolling ": "no",
  7708. "style": {
  7709. "cssText": "border:0;width:100%;height:100%"
  7710. },
  7711. "src": "/Office/Word/WordEditArea.htm"
  7712. })
  7713. _box.appendChild(_iframe);
  7714. _box.appendChild(_jie);
  7715. _formdiv = new U.UF.UI.form(
  7716. "协同文档",
  7717. _box, {
  7718. "id": "docs" + cid + stage + task + tool,
  7719. "style": {
  7720. "width": "90%",
  7721. "height": "90%",
  7722. "overflow": 'hidden'
  7723. },
  7724. "onresize": function () { }
  7725. }, {
  7726. closecallback: function () { }
  7727. }, {
  7728. "style": {
  7729. "height": "36px"
  7730. }
  7731. }).form; //创建窗体
  7732. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7733. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7734. })
  7735. _taskbar = {
  7736. "id": str + _formdiv.id,
  7737. "style": {
  7738. "backgroundImage": "url(/img/icon/doc.png)"
  7739. },
  7740. "name": "协同文档",
  7741. "forms": _formdiv,
  7742. "click": function () {
  7743. U.MD.D.I.openApplication(str, obj, info);
  7744. }
  7745. }
  7746. break;
  7747. }
  7748. const script1 = document.createElement("script");
  7749. script1.type = "text/javascript";
  7750. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7751. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7752. const script2 = document.createElement("script");
  7753. script2.type = "text/javascript";
  7754. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7755. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7756. const script3 = document.createElement("script");
  7757. script3.type = "text/javascript";
  7758. script3.charset = "UTF-8";
  7759. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7760. const script4 = document.createElement("script");
  7761. script4.type = "text/javascript";
  7762. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7763. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7764. if (_iframe) {
  7765. if (str == 'doc') {
  7766. _iframe = _formdiv.querySelector('iframe')
  7767. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7768. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7769. _iframe.contentWindow.document.body.appendChild(script1);
  7770. _iframe.contentWindow.document.body.appendChild(script2);
  7771. // _iframe.contentWindow.document.body.appendChild(script3);
  7772. _iframe.contentWindow.document.body.appendChild(script4);
  7773. })
  7774. if (onloadListener) {
  7775. _iframe.contentDocument.location.reload()
  7776. } else {
  7777. _iframe.contentDocument.location.reload()
  7778. }
  7779. } else if (str == 'mind') {
  7780. _iframe = _formdiv.querySelector('iframe')
  7781. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7782. _iframe.contentWindow.document.body.appendChild(script1);
  7783. _iframe.contentWindow.document.body.appendChild(script2);
  7784. _iframe.contentWindow.document.body.appendChild(script4);
  7785. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7786. })
  7787. if (onloadListener) {
  7788. _iframe.contentDocument.location.reload()
  7789. } else {
  7790. _iframe.contentDocument.location.reload()
  7791. }
  7792. } else {
  7793. _iframe.onload = () => {
  7794. _iframe.contentWindow.document.body.appendChild(script1);
  7795. _iframe.contentWindow.document.body.appendChild(script2);
  7796. // _iframe.contentWindow.document.body.appendChild(script3);
  7797. _iframe.contentWindow.document.body.appendChild(script4);
  7798. };
  7799. }
  7800. _jie.onclick = async () => {
  7801. let text = ''
  7802. if (aTool == 6) {
  7803. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7804. } else if (aTool == 3) {
  7805. text = await U.MD.D.I.getEditorContent(_iframe);
  7806. }
  7807. _loading.style.display = 'flex'
  7808. console.log(_loading);
  7809. var _ajs = _iframe.contentWindow.document.createElement("script");
  7810. _ajs.type = "text/javascript";
  7811. _ajs.innerHTML =
  7812. // 'console.log(' + _loading + ');\n' +
  7813. 'var _js = document.createElement("script");\n' +
  7814. '_js.type="text/javascript";\n' +
  7815. '_js.charset="UTF-8";\n' +
  7816. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7817. "_js.onload = function(){\n" +
  7818. ' var a = document.getElementsByTagName("img")\n' +
  7819. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7820. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7821. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7822. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7823. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7824. "beforeUpload_shishi(file," +
  7825. "'" +
  7826. _userid +
  7827. "'" +
  7828. ", " +
  7829. "'" +
  7830. _cid +
  7831. "'" +
  7832. ", " +
  7833. "'" +
  7834. _stage +
  7835. "'" +
  7836. ", " +
  7837. "'" +
  7838. _task +
  7839. "'" +
  7840. ", " +
  7841. "'" +
  7842. _tool +
  7843. "'" +
  7844. ", " +
  7845. "'" +
  7846. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7847. "'" +
  7848. ", " +
  7849. "'" +
  7850. aTool +
  7851. "'" +
  7852. ", " +
  7853. "`" +
  7854. text +
  7855. "`" +
  7856. ")\n" +
  7857. " });\n" +
  7858. "}\n" +
  7859. "document.head.appendChild(_js);\n";
  7860. _iframe.contentWindow.document.head.appendChild(_ajs);
  7861. }
  7862. }
  7863. //U.MD.D.I.openClick(str);
  7864. //如果有任务栏信息
  7865. // if (_taskbar) {
  7866. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7867. // }
  7868. }
  7869. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7870. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7871. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7872. _userinfo = US.userInfo, //登录用户信息
  7873. _userid = US.userInfo.userid //登录用户id
  7874. let _iframe;
  7875. let _cid = cid,
  7876. _stage = stage,
  7877. _task = task,
  7878. _tool = tool;
  7879. var _jie = $$("div", {
  7880. "style": {
  7881. "position": "absolute",
  7882. "bottom": "50px",
  7883. "right": "50px",
  7884. "zIndex": "9999",
  7885. "backgroundColor": "#2268bc",
  7886. "color": "#fff",
  7887. "padding": "12px 20px",
  7888. "cursor": "pointer",
  7889. "borderRadius": "4px",
  7890. },
  7891. "innerHTML": "上传模板"
  7892. })
  7893. let aTool = ''
  7894. let _loading = document.createElement('div')
  7895. _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;"
  7896. // _loading.id = "";
  7897. let _lchild = document.createElement('div')
  7898. let _limg = document.createElement('img')
  7899. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7900. _limg.style = "width: 26px;margin-right: 10px;"
  7901. _lchild.appendChild(_limg)
  7902. let _lspan = document.createElement('span')
  7903. _lspan.innerHTML = "上传中..."
  7904. _lchild.appendChild(_lspan)
  7905. _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%);"
  7906. _loading.appendChild(_lchild)
  7907. var _box = $$('div', {
  7908. "style": {
  7909. "position": "relative",
  7910. "width": "100%",
  7911. "height": "100%",
  7912. },
  7913. })
  7914. _box.appendChild(_loading)
  7915. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7916. switch (str) {
  7917. case "whiteboard":
  7918. aTool = 1;
  7919. _iframe = $$("iframe", {
  7920. "frameborder": "no",
  7921. "border": "0",
  7922. "scrolling ": "no",
  7923. "style": {
  7924. "cssText": "border:0;width:100%;height:100%"
  7925. },
  7926. "src": "https://beta.iwb.cocorobo.cn/"
  7927. })
  7928. _box.appendChild(_iframe);
  7929. _box.appendChild(_jie);
  7930. _formdiv = new U.UF.UI.form(
  7931. "电子白板",
  7932. _box, {
  7933. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7934. "style": {
  7935. "width": "90%",
  7936. "height": "90%",
  7937. "overflow": 'hidden'
  7938. },
  7939. "onresize": function () { }
  7940. }, {
  7941. closecallback: function () { }
  7942. }, {
  7943. "style": {
  7944. "height": "36px"
  7945. }
  7946. }).form; //创建窗体
  7947. _taskbar = {
  7948. "id": str + _formdiv.id,
  7949. "style": {
  7950. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7951. },
  7952. "name": "电子白板",
  7953. "forms": _formdiv,
  7954. "click": function () {
  7955. U.MD.D.I.openApplication(str, obj, info);
  7956. }
  7957. }
  7958. break;
  7959. case "mind":
  7960. aTool = 3;
  7961. _iframe = $$("iframe", {
  7962. "frameborder": "no",
  7963. "border": "0",
  7964. "scrolling ": "no",
  7965. "style": {
  7966. "cssText": "border:0;width:100%;height:100%"
  7967. },
  7968. "src": "/kityminder-editor/dist/index.html"
  7969. });
  7970. _box.appendChild(_iframe);
  7971. _box.appendChild(_jie);
  7972. _formdiv = new U.UF.UI.form(
  7973. "思维导图",
  7974. _box, { //"/jsmind/example/demo.html"
  7975. "id": "minds_Yu" + cid + stage + task + tool,
  7976. "style": {
  7977. "width": "90%",
  7978. "height": "90%",
  7979. "overflow": 'hidden'
  7980. },
  7981. "onresize": function () { }
  7982. }, {
  7983. closecallback: function () { }
  7984. }, {
  7985. "style": {
  7986. "height": "36px"
  7987. }
  7988. }).form; //创建窗体
  7989. _taskbar = {
  7990. "id": str + _formdiv.id,
  7991. "style": {
  7992. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7993. },
  7994. "name": "思维导图",
  7995. "forms": _formdiv,
  7996. "click": function () {
  7997. U.MD.D.I.openApplication(str, obj, info);
  7998. }
  7999. }
  8000. break;
  8001. case "doc":
  8002. aTool = 6;
  8003. _iframe = $$("iframe", {
  8004. "frameborder": "no",
  8005. "border": "0",
  8006. "scrolling ": "no",
  8007. "style": {
  8008. "cssText": "border:0;width:100%;height:100%"
  8009. },
  8010. "src": "/Office/Word/WordEditArea.htm"
  8011. })
  8012. _box.appendChild(_iframe);
  8013. _box.appendChild(_jie);
  8014. _formdiv = new U.UF.UI.form(
  8015. "协同文档",
  8016. _box, {
  8017. "id": "docs_Yu" + cid + stage + task + tool,
  8018. "style": {
  8019. "width": "90%",
  8020. "height": "90%",
  8021. "overflow": 'hidden'
  8022. },
  8023. "onresize": function () { }
  8024. }, {
  8025. closecallback: function () { }
  8026. }, {
  8027. "style": {
  8028. "height": "36px"
  8029. }
  8030. }).form; //创建窗体
  8031. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8032. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8033. })
  8034. _taskbar = {
  8035. "id": str + _formdiv.id,
  8036. "style": {
  8037. "backgroundImage": "url(/img/icon/doc.png)"
  8038. },
  8039. "name": "协同文档",
  8040. "forms": _formdiv,
  8041. "click": function () {
  8042. U.MD.D.I.openApplication(str, obj, info);
  8043. }
  8044. }
  8045. break;
  8046. case "CocoPi":
  8047. aTool = 57;
  8048. _iframe = $$("iframe", {
  8049. "allowpaymentrequest": "allowpaymentrequest",
  8050. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8051. "webkitallowfullscreen": "",
  8052. "mozallowfullscreen": "",
  8053. "frameborder": "no",
  8054. "border": "0",
  8055. "scrolling ": "no",
  8056. "style": {
  8057. "cssText": "border:0;width:100%;height:100%"
  8058. },
  8059. "src": "https://pi.cocorobo.cn/"
  8060. })
  8061. _box.appendChild(_iframe);
  8062. _box.appendChild(_jie);
  8063. _formdiv = new U.UF.UI.form(
  8064. "CocoPi",
  8065. _box, {
  8066. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8067. "style": {
  8068. "width": "90%",
  8069. "height": "90%",
  8070. "overflow": 'hidden'
  8071. },
  8072. "onresize": function () { }
  8073. }, {
  8074. closecallback: function () { }
  8075. }, {
  8076. "style": {
  8077. "height": "36px"
  8078. }
  8079. }).form; //创建窗体
  8080. _taskbar = {
  8081. "id": str + _formdiv.id,
  8082. "style": {
  8083. "backgroundImage": "url(/img/icon/cocopi.png)"
  8084. },
  8085. "name": "CocoPi",
  8086. "forms": _formdiv,
  8087. "click": function () {
  8088. U.MD.D.I.openApplication(str, obj, info);
  8089. }
  8090. }
  8091. break;
  8092. }
  8093. if (_iframe) {
  8094. if (str == 'doc') {
  8095. _iframe = _formdiv.querySelector('iframe')
  8096. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8097. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8098. })
  8099. if (onloadListener) {
  8100. _iframe.contentDocument.location.reload()
  8101. } else {
  8102. _iframe.contentDocument.location.reload()
  8103. }
  8104. } else if (str == 'mind') {
  8105. _iframe = _formdiv.querySelector('iframe')
  8106. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8107. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8108. })
  8109. if (onloadListener) {
  8110. _iframe.contentDocument.location.reload()
  8111. } else {
  8112. _iframe.contentDocument.location.reload()
  8113. }
  8114. } else if (str == 'whiteboard') {
  8115. _iframe = _formdiv.querySelector('iframe')
  8116. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8117. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8118. })
  8119. if (onloadListener) {
  8120. _iframe.contentDocument.location.reload()
  8121. } else {
  8122. _iframe.contentDocument.location.reload()
  8123. }
  8124. } else if (str == 'CocoPi') {
  8125. _iframe = _formdiv.querySelector('iframe')
  8126. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8127. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8128. })
  8129. if (onloadListener) {
  8130. _iframe.contentDocument.location.reload()
  8131. } else {
  8132. _iframe.contentDocument.location.reload()
  8133. }
  8134. } else {
  8135. _iframe.onload = () => { };
  8136. }
  8137. _jie.onclick = async () => {
  8138. let text = ''
  8139. let type = '2'
  8140. if (aTool == 1) {
  8141. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8142. type = '3'
  8143. } else if (aTool == 6) {
  8144. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8145. type = '1'
  8146. } else if (aTool == 3) {
  8147. text = await U.MD.D.I.getEditorContent(_iframe);
  8148. type = '2'
  8149. } else if (aTool == 57) {
  8150. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8151. type = '4'
  8152. }
  8153. _loading.style.display = 'flex'
  8154. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8155. }
  8156. }
  8157. //U.MD.D.I.openClick(str);
  8158. //如果有任务栏信息
  8159. // if (_taskbar) {
  8160. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8161. // }
  8162. }
  8163. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8164. var xmlhttp;
  8165. var Mac, Sn, DeviceId
  8166. if (window.XMLHttpRequest) {
  8167. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8168. xmlhttp = new XMLHttpRequest();
  8169. } else {
  8170. // IE6, IE5 浏览器执行代码
  8171. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8172. }
  8173. xmlhttp.onreadystatechange = function () {
  8174. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8175. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8176. // resolve(res.value[0][0].text);
  8177. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8178. }
  8179. }
  8180. }
  8181. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8182. xmlhttp.send();
  8183. }
  8184. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8185. var xmlhttp;
  8186. var Mac, Sn, DeviceId
  8187. if (window.XMLHttpRequest) {
  8188. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8189. xmlhttp = new XMLHttpRequest();
  8190. } else {
  8191. // IE6, IE5 浏览器执行代码
  8192. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8193. }
  8194. xmlhttp.onreadystatechange = function () {
  8195. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8196. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8197. // resolve(res.value[0][0].text);
  8198. if (type == '2') {
  8199. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8200. } else if (type == '3') {
  8201. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8202. } else if (type == '4') {
  8203. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8204. }
  8205. } else {
  8206. if (type == '2') {
  8207. iframe.contentWindow.editor.minder.importData('json', '')
  8208. } else if (type == '3') {
  8209. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8210. } else if (type == '4') {
  8211. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8212. }
  8213. }
  8214. }
  8215. }
  8216. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8217. xmlhttp.send();
  8218. }
  8219. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8220. var xmlhttp;
  8221. var Mac, Sn, DeviceId
  8222. if (window.XMLHttpRequest) {
  8223. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8224. xmlhttp = new XMLHttpRequest();
  8225. } else {
  8226. // IE6, IE5 浏览器执行代码
  8227. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8228. }
  8229. xmlhttp.onreadystatechange = function () {
  8230. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8231. if (xmlhttp.response) {
  8232. // resolve(res.value[0][0].text);
  8233. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8234. // $(fileInput).val('');
  8235. // });
  8236. span.innerHTML = '上传成功'
  8237. setTimeout(() => {
  8238. loading.style.display = 'none'
  8239. }, 1000);
  8240. }
  8241. }
  8242. }
  8243. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8244. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8245. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8246. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8247. // 设置请求头,表示请求体的编码格式
  8248. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8249. // 设置请求体,使用url-encoded格式的数据
  8250. }
  8251. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8252. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8253. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8254. _userinfo = US.userInfo, //登录用户信息
  8255. _userid = US.userInfo.userid //登录用户id
  8256. let _iframe;
  8257. let _cid = cid,
  8258. _stage = stage,
  8259. _task = task,
  8260. _tool = tool;
  8261. var _jie = $$("div", {
  8262. "style": {
  8263. "position": "absolute",
  8264. "bottom": "50px",
  8265. "right": "50px",
  8266. "zIndex": "9999",
  8267. "backgroundColor": "#2268bc",
  8268. "color": "#fff",
  8269. "padding": "12px 20px",
  8270. "cursor": "pointer",
  8271. "borderRadius": "4px",
  8272. },
  8273. "innerHTML": "提交作业"
  8274. })
  8275. let aTool = ''
  8276. let _loading = document.createElement('div')
  8277. _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;"
  8278. // _loading.id = "";
  8279. let _lchild = document.createElement('div')
  8280. let _limg = document.createElement('img')
  8281. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8282. _limg.style = "width: 26px;margin-right: 10px;"
  8283. _lchild.appendChild(_limg)
  8284. let _lspan = document.createElement('span')
  8285. _lspan.innerHTML = "上传中..."
  8286. _lchild.appendChild(_lspan)
  8287. _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%);"
  8288. _loading.appendChild(_lchild)
  8289. var _box = $$('div', {
  8290. "style": {
  8291. "position": "relative",
  8292. "width": "100%",
  8293. "height": "100%",
  8294. },
  8295. })
  8296. _box.appendChild(_loading)
  8297. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8298. switch (str) {
  8299. case "CocoPi":
  8300. aTool = 57;
  8301. _iframe = $$("iframe", {
  8302. "allowpaymentrequest": "allowpaymentrequest",
  8303. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8304. "webkitallowfullscreen": "",
  8305. "mozallowfullscreen": "",
  8306. "frameborder": "no",
  8307. "border": "0",
  8308. "scrolling ": "no",
  8309. "style": {
  8310. "cssText": "border:0;width:100%;height:100%"
  8311. },
  8312. "src": "https://pi.cocorobo.cn/"
  8313. })
  8314. _box.appendChild(_iframe);
  8315. _box.appendChild(_jie);
  8316. _formdiv = new U.UF.UI.form(
  8317. "CocoPi",
  8318. _box, {
  8319. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8320. "style": {
  8321. "width": "90%",
  8322. "height": "90%",
  8323. "overflow": 'hidden'
  8324. },
  8325. "onresize": function () { }
  8326. }, {
  8327. closecallback: function () { }
  8328. }, {
  8329. "style": {
  8330. "height": "36px"
  8331. }
  8332. }).form; //创建窗体
  8333. _taskbar = {
  8334. "id": str + _formdiv.id,
  8335. "style": {
  8336. "backgroundImage": "url(/img/icon/cocopi.png)"
  8337. },
  8338. "name": "CocoPi",
  8339. "forms": _formdiv,
  8340. "click": function () {
  8341. U.MD.D.I.openApplication(str, obj, info);
  8342. }
  8343. }
  8344. break;
  8345. }
  8346. if (_iframe) {
  8347. if (str == 'CocoPi') {
  8348. _iframe = _formdiv.querySelector('iframe')
  8349. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8350. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8351. })
  8352. if (onloadListener) {
  8353. _iframe.contentDocument.location.reload()
  8354. } else {
  8355. _iframe.contentDocument.location.reload()
  8356. }
  8357. }
  8358. _jie.onclick = async () => {
  8359. let text = ''
  8360. if (aTool == 57) {
  8361. text = _iframe.contentWindow.getLoadXmlStr()
  8362. }
  8363. _loading.style.display = 'flex'
  8364. console.log(_loading);
  8365. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8366. _loading.style.display = 'none'
  8367. let _div = document.createElement('div')
  8368. _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;"
  8369. let _inner = document.createElement('div')
  8370. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8371. _inner.innerHTML = "上传成功"
  8372. _div.appendChild(_inner)
  8373. _iframe.contentWindow.window.document.body.appendChild(_div)
  8374. _div.onclick = () => {
  8375. _iframe.contentWindow.window.document.body.removeChild(_div)
  8376. }
  8377. setTimeout(() => {
  8378. _iframe.contentWindow.window.document.body.removeChild(_div)
  8379. }, 1000);
  8380. }, [], { "type": "POST", "withCredentials": true });
  8381. }
  8382. }
  8383. }
  8384. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8385. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8386. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8387. _userid = student.userid, //登录用户id
  8388. _username = student.student //用户名字
  8389. let _iframe;
  8390. let _cid = cid,
  8391. _stage = stage,
  8392. _task = task,
  8393. _tool = tool;
  8394. var _jie = $$("div", {
  8395. "style": {
  8396. "position": "absolute",
  8397. "bottom": "50px",
  8398. "right": "50px",
  8399. "zIndex": "9999",
  8400. "backgroundColor": "#2268bc",
  8401. "color": "#fff",
  8402. "padding": "12px 20px",
  8403. "cursor": "pointer",
  8404. "borderRadius": "4px",
  8405. },
  8406. "innerHTML": "提交作业"
  8407. })
  8408. let aTool = ''
  8409. let _loading = document.createElement('div')
  8410. _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;"
  8411. // _loading.id = "";
  8412. let _lchild = document.createElement('div')
  8413. let _limg = document.createElement('img')
  8414. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8415. _limg.style = "width: 26px;margin-right: 10px;"
  8416. _lchild.appendChild(_limg)
  8417. let _lspan = document.createElement('span')
  8418. _lspan.innerHTML = "上传中..."
  8419. _lchild.appendChild(_lspan)
  8420. _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%);"
  8421. _loading.appendChild(_lchild)
  8422. var _box = $$('div', {
  8423. "style": {
  8424. "position": "relative",
  8425. "width": "100%",
  8426. "height": "100%",
  8427. },
  8428. })
  8429. _box.appendChild(_loading)
  8430. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8431. switch (str) {
  8432. case "CocoPi":
  8433. aTool = 57;
  8434. _iframe = $$("iframe", {
  8435. "allowpaymentrequest": "allowpaymentrequest",
  8436. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8437. "webkitallowfullscreen": "",
  8438. "mozallowfullscreen": "",
  8439. "frameborder": "no",
  8440. "border": "0",
  8441. "scrolling ": "no",
  8442. "style": {
  8443. "cssText": "border:0;width:100%;height:100%"
  8444. },
  8445. "src": "https://pi.cocorobo.cn/"
  8446. })
  8447. _box.appendChild(_iframe);
  8448. _box.appendChild(_jie);
  8449. _formdiv = new U.UF.UI.form(
  8450. "CocoPi-" + _username,
  8451. _box, {
  8452. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8453. "style": {
  8454. "width": "90%",
  8455. "height": "90%",
  8456. "overflow": 'hidden'
  8457. },
  8458. "onresize": function () { }
  8459. }, {
  8460. closecallback: function () { }
  8461. }, {
  8462. "style": {
  8463. "height": "36px"
  8464. }
  8465. }).form; //创建窗体
  8466. _taskbar = {
  8467. "id": str + _formdiv.id,
  8468. "style": {
  8469. "backgroundImage": "url(/img/icon/cocopi.png)"
  8470. },
  8471. "name": "CocoPi",
  8472. "forms": _formdiv,
  8473. "click": function () {
  8474. U.MD.D.I.openApplication(str, obj, info);
  8475. }
  8476. }
  8477. break;
  8478. }
  8479. if (_iframe) {
  8480. if (str == 'CocoPi') {
  8481. _iframe = _formdiv.querySelector('iframe')
  8482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8483. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8484. })
  8485. if (onloadListener) {
  8486. _iframe.contentDocument.location.reload()
  8487. } else {
  8488. _iframe.contentDocument.location.reload()
  8489. }
  8490. }
  8491. _jie.onclick = async () => {
  8492. let text = ''
  8493. if (aTool == 57) {
  8494. text = _iframe.contentWindow.getLoadXmlStr()
  8495. }
  8496. _loading.style.display = 'flex'
  8497. console.log(_loading);
  8498. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8499. _loading.style.display = 'none'
  8500. let _div = document.createElement('div')
  8501. _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;"
  8502. let _inner = document.createElement('div')
  8503. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8504. _inner.innerHTML = "上传成功"
  8505. _div.appendChild(_inner)
  8506. _iframe.contentWindow.window.document.body.appendChild(_div)
  8507. _div.onclick = () => {
  8508. _iframe.contentWindow.window.document.body.removeChild(_div)
  8509. }
  8510. setTimeout(() => {
  8511. _iframe.contentWindow.window.document.body.removeChild(_div)
  8512. }, 1000);
  8513. }, [], { "type": "POST", "withCredentials": true });
  8514. }
  8515. }
  8516. }
  8517. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8518. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8519. if (res.value[0].length > 0) {
  8520. if (atool == 57) {
  8521. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8522. }
  8523. } else {
  8524. if (atool == 57) {
  8525. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8526. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8527. }
  8528. }
  8529. }, [], { "type": "POST", "withCredentials": true });
  8530. }