DeskTop.js 535 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826
  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. ];
  952. //未来教育基地
  953. U.MD.D.I.szjkyAdminDeskIcon = [
  954. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  955. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  956. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  957. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  958. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  959. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  960. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  961. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  962. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  963. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  964. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  965. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  966. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  969. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  970. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  971. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  972. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  973. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  974. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  975. ];
  976. //未来教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成华教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成华教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成华教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //盐田区幼儿园
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. ];
  1221. //盐田区幼儿园
  1222. U.MD.D.I.ytyStudentDeskIcon = [
  1223. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. ];
  1227. //#region 桌面初始化a
  1228. /**
  1229. * 初始化桌面的起始函数
  1230. *
  1231. */
  1232. U.MD.D.I.init = function () {
  1233. if ($("#U_MD_D_K")[0]) {
  1234. //初始化桌面图标
  1235. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1236. // var clickUrl = ':12588/requestIp.php';
  1237. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1238. // U.MD.D.I.Ip = data;
  1239. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1240. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1241. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1242. // })
  1243. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1244. // })
  1245. }
  1246. }
  1247. /**
  1248. * 模式切换
  1249. *
  1250. */
  1251. U.MD.D.I.ModeCheck = function (type) {
  1252. if (US.Config.type == type) {
  1253. return
  1254. }
  1255. US.Config.type = type
  1256. $('.U_PBL_Check .active')[0].className = ''
  1257. if (type == 1) {
  1258. $('.U_PBL_Check div')[0].className = 'active'
  1259. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1260. } else {
  1261. $('.U_PBL_Check div')[1].className = 'active'
  1262. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1263. }
  1264. //初始化桌面图标
  1265. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1266. if (type == 2) {
  1267. U.MD.D.I.openApplication("project")
  1268. }
  1269. }
  1270. /**
  1271. * 隐藏任务栏
  1272. *
  1273. * @param {element} 桌面元素
  1274. */
  1275. U.MD.D.I.hiddenTaskbar = function (el) {
  1276. //任务栏位置变小
  1277. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1278. //桌面的位置变大
  1279. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1280. }
  1281. /**
  1282. * 隐藏任务栏
  1283. *
  1284. * @param {element} 桌面元素
  1285. */
  1286. U.MD.D.I.hiddenTaskbarout = function (el) {
  1287. //任务栏位置变小
  1288. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1289. //任务栏位置变化
  1290. U.selectEl(el).css({ "bottom": "-60px" });
  1291. //桌面的位置变大
  1292. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1293. }
  1294. }
  1295. /**
  1296. * 初始化打印桌面图标
  1297. *
  1298. * @param {element} 桌面元素
  1299. */
  1300. U.MD.D.I.initDesktopIcons = function (el, type) {
  1301. var i, //用于循环
  1302. _content, //桌面图标元素
  1303. _iconcontent, //桌面图标元素
  1304. _frag = $$("frag"), //定义一个碎片元素
  1305. _type = US.userInfo.type,
  1306. _org = US.userInfo.org,
  1307. _oid = US.userInfo.organizeid,
  1308. _role = US.userInfo.role,
  1309. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1310. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1311. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1312. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1313. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1314. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1315. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1316. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1317. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1318. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1319. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1320. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1321. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1322. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1323. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1324. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1325. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1326. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1327. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1328. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1329. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1330. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1331. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1332. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1333. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1334. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1335. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1336. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1337. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1338. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1339. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1340. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1341. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1342. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1343. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1344. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1345. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1346. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1347. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1348. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1349. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1350. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1351. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1352. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1353. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1354. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1355. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1356. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1357. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1358. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1359. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1360. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1361. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1362. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1363. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1364. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1365. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1366. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1367. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1368. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1369. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1370. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1371. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1372. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1373. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1374. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1375. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1376. 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'];
  1377. 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'];
  1378. //清楚桌面图标
  1379. el.innerHTML = "";
  1380. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1381. _teacherDesktopIconInfo.push(
  1382. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1383. { "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)" } },
  1384. )
  1385. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1386. }
  1387. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1388. _teacherDesktopIconInfo.push(
  1389. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1390. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1394. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1395. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1396. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1397. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1402. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1403. )
  1404. }
  1405. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1406. _teacherDesktopIconInfo.push(
  1407. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1408. )
  1409. }
  1410. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1411. // _teacherDesktopIconInfo.push(
  1412. // )
  1413. // }
  1414. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1415. _teacherDesktopIconInfo.push(
  1416. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1417. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1418. )
  1419. }
  1420. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1421. _teacherDesktopIconInfo.push(
  1422. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1423. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. )
  1427. _studentDesktopIconInfo.push(
  1428. )
  1429. }
  1430. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1431. _teacherDesktopIconInfo.push(
  1432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1433. )
  1434. _studentDesktopIconInfo.push(
  1435. )
  1436. }
  1437. //麒麟二中 和 民新小学
  1438. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1439. _teacherDesktopIconInfo.push(
  1440. )
  1441. }
  1442. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1443. _teacherDesktopIconInfo.push(
  1444. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1447. )
  1448. }
  1449. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1450. _teacherDesktopIconInfo.push(
  1451. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1452. )
  1453. }
  1454. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1455. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1456. _teacherDesktopIconInfo.push(
  1457. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. )
  1460. }
  1461. //麒麟二中
  1462. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1463. _studentDesktopIconInfo.push(
  1464. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1465. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. )
  1467. }
  1468. //万科双语
  1469. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1470. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1471. if (el.Name == '项目管理') {
  1472. el.Name = 'PBL项目'
  1473. }
  1474. return el
  1475. })
  1476. _studentDesktopIconInfo3.push(
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. )
  1479. }
  1480. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1481. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1482. return el.Name != '魔盒识字' && el.Name != '24点'
  1483. })
  1484. }
  1485. 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) {
  1486. _studentDesktopIconInfo.push(
  1487. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1488. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1489. )
  1490. }
  1491. //循环创建桌面图标
  1492. if (type == 1) {
  1493. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1494. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1495. _content = $$("div", {
  1496. className: "U_MD_D_KO",
  1497. "onmousedown": U.UF.C.closure(function (obj) {
  1498. //防止拖动图标即打开了桌面应用
  1499. U.MD.D.click(this, obj);
  1500. }, [_studentDesktopIconInfo[i]]),
  1501. "onclick": U.UF.C.closure(function (obj) {
  1502. //防止拖动图标即打开了桌面应用
  1503. U.MD.D.click(this, obj);
  1504. }, [_studentDesktopIconInfo[i]])
  1505. }, _frag); //
  1506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1509. }
  1510. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1511. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1512. _content = $$("div", {
  1513. className: "U_MD_D_KO",
  1514. "onmousedown": U.UF.C.closure(function (obj) {
  1515. //防止拖动图标即打开了桌面应用
  1516. U.MD.D.click(this, obj);
  1517. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1518. "onclick": U.UF.C.closure(function (obj) {
  1519. //防止拖动图标即打开了桌面应用
  1520. U.MD.D.click(this, obj);
  1521. }, [_hkZJLSStudentDeskIconInfo[i]])
  1522. }, _frag); //
  1523. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1524. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1525. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1526. } //
  1527. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1528. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1529. _content = $$("div", {
  1530. className: "U_MD_D_KO",
  1531. "onmousedown": U.UF.C.closure(function (obj) {
  1532. //防止拖动图标即打开了桌面应用
  1533. U.MD.D.click(this, obj);
  1534. }, [_ytyStudentDeskIconInfo[i]]),
  1535. "onclick": U.UF.C.closure(function (obj) {
  1536. //防止拖动图标即打开了桌面应用
  1537. U.MD.D.click(this, obj);
  1538. }, [_ytyStudentDeskIconInfo[i]])
  1539. }, _frag); //
  1540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1543. } //
  1544. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1545. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1546. _content = $$("div", {
  1547. className: "U_MD_D_KO",
  1548. "onmousedown": U.UF.C.closure(function (obj) {
  1549. //防止拖动图标即打开了桌面应用
  1550. U.MD.D.click(this, obj);
  1551. }, [_jccssylStudentDeskIconInfo[i]]),
  1552. "onclick": U.UF.C.closure(function (obj) {
  1553. //防止拖动图标即打开了桌面应用
  1554. U.MD.D.click(this, obj);
  1555. }, [_jccssylStudentDeskIconInfo[i]])
  1556. }, _frag); //
  1557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1560. }
  1561. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1562. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1563. _content = $$("div", {
  1564. className: "U_MD_D_KO",
  1565. "onmousedown": U.UF.C.closure(function (obj) {
  1566. //防止拖动图标即打开了桌面应用
  1567. U.MD.D.click(this, obj);
  1568. }, [_caleStudentDeskIconInfo[i]]),
  1569. "onclick": U.UF.C.closure(function (obj) {
  1570. //防止拖动图标即打开了桌面应用
  1571. U.MD.D.click(this, obj);
  1572. }, [_caleStudentDeskIconInfo[i]])
  1573. }, _frag); //
  1574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1577. }
  1578. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1579. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1580. _content = $$("div", {
  1581. className: "U_MD_D_KO",
  1582. "onmousedown": U.UF.C.closure(function (obj) {
  1583. //防止拖动图标即打开了桌面应用
  1584. U.MD.D.click(this, obj);
  1585. }, [_thuioeStudentDeskIconInfo[i]]),
  1586. "onclick": U.UF.C.closure(function (obj) {
  1587. //防止拖动图标即打开了桌面应用
  1588. U.MD.D.click(this, obj);
  1589. }, [_thuioeStudentDeskIconInfo[i]])
  1590. }, _frag); //
  1591. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1592. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1593. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1594. }
  1595. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1596. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1597. _content = $$("div", {
  1598. className: "U_MD_D_KO",
  1599. "onmousedown": U.UF.C.closure(function (obj) {
  1600. //防止拖动图标即打开了桌面应用
  1601. U.MD.D.click(this, obj);
  1602. }, [_tpcStudentDeskIconInfo[i]]),
  1603. "onclick": U.UF.C.closure(function (obj) {
  1604. //防止拖动图标即打开了桌面应用
  1605. U.MD.D.click(this, obj);
  1606. }, [_tpcStudentDeskIconInfo[i]])
  1607. }, _frag); //
  1608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1611. } //
  1612. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1613. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1614. _content = $$("div", {
  1615. className: "U_MD_D_KO",
  1616. "onmousedown": U.UF.C.closure(function (obj) {
  1617. //防止拖动图标即打开了桌面应用
  1618. U.MD.D.click(this, obj);
  1619. }, [_chjyjStudentDeskIconInfo[i]]),
  1620. "onclick": U.UF.C.closure(function (obj) {
  1621. //防止拖动图标即打开了桌面应用
  1622. U.MD.D.click(this, obj);
  1623. }, [_chjyjStudentDeskIconInfo[i]])
  1624. }, _frag); //
  1625. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1626. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1627. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1628. }
  1629. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1630. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1631. _content = $$("div", {
  1632. className: "U_MD_D_KO",
  1633. "onmousedown": U.UF.C.closure(function (obj) {
  1634. //防止拖动图标即打开了桌面应用
  1635. U.MD.D.click(this, obj);
  1636. }, [_szjkyStudentDeskIconInfo[i]]),
  1637. "onclick": U.UF.C.closure(function (obj) {
  1638. //防止拖动图标即打开了桌面应用
  1639. U.MD.D.click(this, obj);
  1640. }, [_szjkyStudentDeskIconInfo[i]])
  1641. }, _frag); //
  1642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1645. }
  1646. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1647. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1648. _content = $$("div", {
  1649. className: "U_MD_D_KO",
  1650. "onmousedown": U.UF.C.closure(function (obj) {
  1651. //防止拖动图标即打开了桌面应用
  1652. U.MD.D.click(this, obj);
  1653. }, [_dseiStudentDeskIconInfo[i]]),
  1654. "onclick": U.UF.C.closure(function (obj) {
  1655. //防止拖动图标即打开了桌面应用
  1656. U.MD.D.click(this, obj);
  1657. }, [_dseiStudentDeskIconInfo[i]])
  1658. }, _frag); //
  1659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1662. }
  1663. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1664. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1665. _content = $$("div", {
  1666. className: "U_MD_D_KO",
  1667. "onmousedown": U.UF.C.closure(function (obj) {
  1668. //防止拖动图标即打开了桌面应用
  1669. U.MD.D.click(this, obj);
  1670. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1671. "onclick": U.UF.C.closure(function (obj) {
  1672. //防止拖动图标即打开了桌面应用
  1673. U.MD.D.click(this, obj);
  1674. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1675. }, _frag); //
  1676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1679. }
  1680. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1681. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_siesStudentDeskIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_siesStudentDeskIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1696. }
  1697. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_hkStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_hkStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. }
  1714. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1715. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_hkaceStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_hkaceStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. }
  1731. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1732. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_studentDesktopIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_studentDesktopIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1749. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_tcStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_tcStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1766. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_szscStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_szscStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1783. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_studentDesktopIconInfo3[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_studentDesktopIconInfo3[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1800. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_studentDesktopIconInfo2[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_studentDesktopIconInfo2[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1815. }
  1816. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1817. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_wanketeacherDesktopIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_wanketeacherDesktopIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1834. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_wankeAdminDesktopIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_wankeAdminDesktopIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1851. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_jccssylTeacherDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_jccssylTeacherDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1868. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_caleTeacherDeskIconInfo[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_caleTeacherDeskIconInfo[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1883. }
  1884. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1885. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_tpcOrganizerDeskIconInfo[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_tpcOrganizerDeskIconInfo[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1900. }
  1901. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1902. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1903. _content = $$("div", {
  1904. className: "U_MD_D_KO",
  1905. "onmousedown": U.UF.C.closure(function (obj) {
  1906. //防止拖动图标即打开了桌面应用
  1907. U.MD.D.click(this, obj);
  1908. }, [_tpcTeacherDeskIconInfo[i]]),
  1909. "onclick": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_tpcTeacherDeskIconInfo[i]])
  1913. }, _frag); //
  1914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1917. }
  1918. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1919. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1920. _content = $$("div", {
  1921. className: "U_MD_D_KO",
  1922. "onmousedown": U.UF.C.closure(function (obj) {
  1923. //防止拖动图标即打开了桌面应用
  1924. U.MD.D.click(this, obj);
  1925. }, [_teacherDesktopIconInfo2[i]]),
  1926. "onclick": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_teacherDesktopIconInfo2[i]])
  1930. }, _frag); //
  1931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1934. }
  1935. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1936. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1937. _content = $$("div", {
  1938. className: "U_MD_D_KO",
  1939. "onmousedown": U.UF.C.closure(function (obj) {
  1940. //防止拖动图标即打开了桌面应用
  1941. U.MD.D.click(this, obj);
  1942. }, [_thuioeTeacherDeskIconInfo[i]]),
  1943. "onclick": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_thuioeTeacherDeskIconInfo[i]])
  1947. }, _frag); //
  1948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1951. }
  1952. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1953. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1954. _content = $$("div", {
  1955. className: "U_MD_D_KO",
  1956. "onmousedown": U.UF.C.closure(function (obj) {
  1957. //防止拖动图标即打开了桌面应用
  1958. U.MD.D.click(this, obj);
  1959. }, [_lotechTeacherDeskIconInfo[i]]),
  1960. "onclick": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_lotechTeacherDeskIconInfo[i]])
  1964. }, _frag); //
  1965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1968. }//
  1969. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1970. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1971. _content = $$("div", {
  1972. className: "U_MD_D_KO",
  1973. "onmousedown": U.UF.C.closure(function (obj) {
  1974. //防止拖动图标即打开了桌面应用
  1975. U.MD.D.click(this, obj);
  1976. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1977. "onclick": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1981. }, _frag); //
  1982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1985. }
  1986. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1987. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1988. _content = $$("div", {
  1989. className: "U_MD_D_KO",
  1990. "onmousedown": U.UF.C.closure(function (obj) {
  1991. //防止拖动图标即打开了桌面应用
  1992. U.MD.D.click(this, obj);
  1993. }, [_siesTeacherDeskIconInfo[i]]),
  1994. "onclick": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_siesTeacherDeskIconInfo[i]])
  1998. }, _frag); //
  1999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2002. }
  2003. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2004. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2005. _content = $$("div", {
  2006. className: "U_MD_D_KO",
  2007. "onmousedown": U.UF.C.closure(function (obj) {
  2008. //防止拖动图标即打开了桌面应用
  2009. U.MD.D.click(this, obj);
  2010. }, [_longhuaTeacherDeskIconInfo[i]]),
  2011. "onclick": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_longhuaTeacherDeskIconInfo[i]])
  2015. }, _frag); //
  2016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2019. }
  2020. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2021. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2022. _content = $$("div", {
  2023. className: "U_MD_D_KO",
  2024. "onmousedown": U.UF.C.closure(function (obj) {
  2025. //防止拖动图标即打开了桌面应用
  2026. U.MD.D.click(this, obj);
  2027. }, [_ytyTeacherDeskIconInfo[i]]),
  2028. "onclick": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_ytyTeacherDeskIconInfo[i]])
  2032. }, _frag); //
  2033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2036. }
  2037. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2038. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2039. _content = $$("div", {
  2040. className: "U_MD_D_KO",
  2041. "onmousedown": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2045. "onclick": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_yunhaiTeacherDeskIconInfo[i]])
  2049. }, _frag); //
  2050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2053. } //_hkStudentDeskIconInfo
  2054. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2055. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2056. _content = $$("div", {
  2057. className: "U_MD_D_KO",
  2058. "onmousedown": U.UF.C.closure(function (obj) {
  2059. //防止拖动图标即打开了桌面应用
  2060. U.MD.D.click(this, obj);
  2061. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2062. "onclick": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2066. }, _frag); //
  2067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2070. }
  2071. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2072. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2073. _content = $$("div", {
  2074. className: "U_MD_D_KO",
  2075. "onmousedown": U.UF.C.closure(function (obj) {
  2076. //防止拖动图标即打开了桌面应用
  2077. U.MD.D.click(this, obj);
  2078. }, [_hkTeacherDeskIconInfo[i]]),
  2079. "onclick": U.UF.C.closure(function (obj) {
  2080. //防止拖动图标即打开了桌面应用
  2081. U.MD.D.click(this, obj);
  2082. }, [_hkTeacherDeskIconInfo[i]])
  2083. }, _frag); //
  2084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2087. }
  2088. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2089. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2090. _content = $$("div", {
  2091. className: "U_MD_D_KO",
  2092. "onmousedown": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_hkaceTeacherDeskIconInfo[i]]),
  2096. "onclick": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_hkaceTeacherDeskIconInfo[i]])
  2100. }, _frag); //
  2101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2104. }
  2105. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2106. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_gdjgAdminDeskIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_gdjgAdminDeskIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2123. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_gdjgTeacherDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_gdjgTeacherDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2138. }
  2139. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2140. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_szherTeacherDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_szherTeacherDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2155. }
  2156. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2157. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_heyuannAdminDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_heyuannAdminDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2174. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_heyuanTeacherDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_heyuanTeacherDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2189. } //
  2190. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2191. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_dseiAdminDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_dseiAdminDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2208. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_dseiTeacherDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_dseiTeacherDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2223. } //
  2224. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2225. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_chjyjAdminDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_chjyjAdminDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2240. }//
  2241. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2242. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_chjyjTeacherDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_chjyjTeacherDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2259. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_szjkyAdminDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_szjkyAdminDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2274. }//
  2275. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2276. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_szjkyTeacherDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_szjkyTeacherDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2293. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_futianAdminDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_futianAdminDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2310. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_futianTeacherDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_futianTeacherDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2327. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_MingdeTeacherDeskIcon[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_MingdeTeacherDeskIcon[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2342. }
  2343. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2344. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_lhsAdminDesktopIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_lhsAdminDesktopIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2361. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_lhsteacherDesktopIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_lhsteacherDesktopIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2378. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_zhoujiateacherDesktopIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2395. for (i = 0; i < _hanDeskIcon.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_hanDeskIcon[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_hanDeskIcon[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2410. }
  2411. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2412. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_orgStemDeskIcon[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_orgStemDeskIcon[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2427. }
  2428. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2429. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_szulsDeskIcon[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_szulsDeskIcon[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2444. }
  2445. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2446. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_orgDesktopIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_orgDesktopIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2463. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_schoolDesktopIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_schoolDesktopIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2480. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_GMteacherDesktopIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_GMteacherDesktopIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2497. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_SONGteacherDesktopIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SONGteacherDesktopIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2514. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_GMstudentDesktopIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_GMstudentDesktopIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2531. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_tcTeacherDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_tcTeacherDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2548. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_tcOrganizerDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tcOrganizerDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2565. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szscTeacherDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_szscTeacherDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2582. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_szscOrganizerDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_szscOrganizerDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else {
  2599. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_teacherDesktopIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_teacherDesktopIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. }
  2616. } else {
  2617. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. style: { 'width': '124px', 'height': '145px' },
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_easyDesktopIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_easyDesktopIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2633. }
  2634. }
  2635. if (type == 1) {
  2636. //加载好后给图标定位
  2637. U.MD.D.iconPostion($(_frag).Child());
  2638. } else {
  2639. //加载好后给图标定位
  2640. U.MD.D.iconPostion2($(_frag).Child());
  2641. }
  2642. //把图标加载到页面
  2643. el.appendChild(_frag);
  2644. }
  2645. /**
  2646. * 显示任务栏
  2647. *
  2648. * @param {element} 桌面元素
  2649. */
  2650. U.MD.D.I.displayTaskbar = function (el) {
  2651. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2652. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2653. //任务栏位置变化
  2654. U.selectEl(el).css({ "bottom": "0px" });
  2655. //桌面位置变话
  2656. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2657. }
  2658. }
  2659. //#region 桌面图标拖动逻辑
  2660. /**
  2661. * 桌面排列图标
  2662. *
  2663. * @param {element} 桌面元素
  2664. * @param {object} 上下相距的距离
  2665. * @param {object} 左右相距的距离
  2666. * @return {object} 命名空间
  2667. */
  2668. U.MD.D.iconPostion = function (childs, top, left) {
  2669. var i; //用于循环处理
  2670. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2671. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2672. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2673. for (i = 0; i < childs.length; i++) {
  2674. //如果竖排top超过了范围处理
  2675. if (top + 95 > US.height - 10) {
  2676. //left超过了页面范围处理,则向上重叠打印处理
  2677. if ((left + 180) > US.width) {
  2678. top -= 110;
  2679. left -= 90;
  2680. }
  2681. //没有超过范围,那么left+90添加到下一个竖排打印
  2682. else {
  2683. left += 90;
  2684. top = 15;
  2685. };
  2686. }
  2687. //给图标的位置赋值
  2688. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2689. if (i < childs.length - 1) {
  2690. //页面图标每次向下加95
  2691. top += 95;
  2692. }
  2693. }
  2694. //返回最后调用的图标的位置
  2695. return [top, left];
  2696. }
  2697. /**
  2698. * 桌面排列图标
  2699. *
  2700. * @param {element} 桌面元素
  2701. * @param {object} 上下相距的距离
  2702. * @param {object} 左右相距的距离
  2703. * @return {object} 命名空间
  2704. */
  2705. U.MD.D.iconPostion2 = function (childs, top, left) {
  2706. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2707. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2708. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2709. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2710. for (i = 0; i < childs.length; i++) {
  2711. //如果竖排top超过了范围处理
  2712. if (left + 150 > US.width - 10) {
  2713. //left超过了页面范围处理,则向上重叠打印处理
  2714. if ((top + 180) > US.Height) {
  2715. top -= 150;
  2716. left -= 150;
  2717. }
  2718. //没有超过范围,那么left+90添加到下一个竖排打印
  2719. else {
  2720. top += 150;
  2721. left = ol;
  2722. };
  2723. }
  2724. //给图标的位置赋值
  2725. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2726. if (i < childs.length - 1) {
  2727. //页面图标每次向下加95
  2728. left += 150;
  2729. }
  2730. }
  2731. //返回最后调用的图标的位置
  2732. return [top, left];
  2733. }
  2734. /**
  2735. * 桌面点击事件逻辑
  2736. *
  2737. * @param {element} 桌面元素
  2738. * @param {object} 上下相距的距离
  2739. * @param {object} 左右相距的距离
  2740. * @return {object} 命名空间
  2741. */
  2742. U.MD.D.click = function (el, obj) {
  2743. var _buttonnumber = event.button; //点击的按钮的事件值
  2744. var _userinfo = US.userInfo;
  2745. U.UF.EV.stopBubble(); //阻止向上冒泡
  2746. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2747. if (_buttonnumber < 2) {
  2748. //如果是click事件的处理
  2749. if (event.type == "click") {
  2750. //如果元素在mousemove事件中没有移动则出发click事件
  2751. if (!U.MD.D.I.IsDrag) {
  2752. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2753. U.alert("请先登录您的账号!");
  2754. setTimeout(() => {
  2755. U.MD.U.L.login();
  2756. }, 2000);
  2757. } else {
  2758. //打开应用处理
  2759. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2760. }
  2761. }
  2762. }
  2763. //如果是mouse事件的处理
  2764. else {
  2765. if (US.Config.type == '1') {
  2766. //拖动处理,添加拖动和拖动结束事件
  2767. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2768. }
  2769. }
  2770. U.MD.D.I.IsDrag = false;
  2771. }
  2772. }
  2773. /**
  2774. * 拖动的处理
  2775. *
  2776. */
  2777. U.MD.D.iconMove = function () {
  2778. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2779. U.MD.D.I.IsDrag = true;
  2780. }
  2781. /**
  2782. * 拖动结束后,这里是定位处理,以网状的形式定位
  2783. *
  2784. * @param {element} 拖动的元素
  2785. * @return {object} 命名空间
  2786. */
  2787. U.MD.D.iconUp = function (el) {
  2788. var _top = 15,
  2789. _left = 20,
  2790. _margin,
  2791. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2792. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2793. if (_positioninfo["OT"] > 15) {
  2794. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2795. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2796. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2797. }
  2798. if (_positioninfo["OL"] > 20) {
  2799. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2800. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2801. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2802. }
  2803. //while循环判断么一个重叠的元素
  2804. do {
  2805. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2806. _top = _positioninfo[0] + 95; //得到定位后的top
  2807. _left = _positioninfo[1]; //得到定位后的left
  2808. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2809. }
  2810. /**
  2811. * 判断拖动后图标是否重叠
  2812. *
  2813. * @param {element} 拖动的元素
  2814. * @param {element} 桌面所有的元素
  2815. * @param {array} 拖动元素的位置
  2816. ----------[0] 上 top
  2817. ----------[1] 左 left
  2818. * @return {object} 命名空间
  2819. */
  2820. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2821. //循环所有的图标
  2822. for (var i = 0; i < childs.length; i++) {
  2823. //判断有没有和该图标诶子重叠的元素
  2824. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2825. return childs[i]; //如果有返回
  2826. }
  2827. }
  2828. }
  2829. //#endregion
  2830. //#endregion
  2831. //#region 桌面应用
  2832. /**
  2833. * 打开应用
  2834. *
  2835. * @param {string} 类型
  2836. -----------------Disk 网盘系统
  2837. -----------------PDisk 学习系统网盘
  2838. -----------------Poto 图片
  2839. -----------------Video 视频
  2840. -----------------Music 音乐
  2841. -----------------Word word
  2842. -----------------Excel excel
  2843. -----------------Txt 记事本
  2844. -----------------PB 学习系统
  2845. -----------------Blog 朋友圈系统
  2846. -----------------FTP ftp系统
  2847. -----------------Group 好友群
  2848. -----------------SY 首页系统
  2849. -----------------Set 个人设置
  2850. -----------------XSet 系统设置
  2851. -----------------App 我们所有的app
  2852. -----------------BC c.1473.cn 平台
  2853. -----------------CWeb d.1473.cn 变成平台
  2854. -----------------其他的外联系统 我们统一用iframe打开
  2855. * @param {array} 类型
  2856. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2857. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2858. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2859. 如果第一个参数为其他,则无第二个参数
  2860. * @returns {array}
  2861. */
  2862. window.addEventListener('message', function (e) { // 监听 message 事件
  2863. // alert(e.data.type);
  2864. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2865. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2866. //3是展示全部阶段 2学生 1老师 4专家
  2867. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2869. //3是展示全部阶段 2学生 1老师 4专家
  2870. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2871. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2872. //3是展示全部阶段 2学生 1老师 4专家
  2873. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2875. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2876. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2878. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2879. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2881. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2882. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2883. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2884. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2885. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2886. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2887. //3是展示全部阶段 2学生 1老师 4专家
  2888. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2889. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2890. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2891. U.MD.D.I.selectUser();
  2892. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2893. var _formel = document.getElementById("study");
  2894. U.UF.F.windowZooming(_formel);
  2895. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2896. var _formel = document.getElementById("studyDetail");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2899. var _formel = document.getElementById("studyDetail");
  2900. U.UF.F.windowZooming(_formel);
  2901. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2902. var _formel = document.getElementById("studentStudy");
  2903. U.UF.F.windowZooming(_formel);
  2904. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2905. // var _formel = document.getElementById("study");
  2906. //如果最大化了,那么就把他缩小
  2907. // if (_formel.ismaximize) {
  2908. // return;
  2909. // }
  2910. // U.UF.F.windowZooming(_formel);
  2911. // U.UF.F.topWindow(_formel);
  2912. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2913. // var _formel = document.getElementById("studyDetail");
  2914. //如果最大化了,那么就把他缩小
  2915. // if (_formel.ismaximize) {
  2916. // return;
  2917. // }
  2918. // U.UF.F.windowZooming(_formel);
  2919. // U.UF.F.topWindow(_formel);
  2920. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2921. // var _formel = document.getElementById("studentStudy");
  2922. // if (_formel.ismaximize) {
  2923. // return;
  2924. // }
  2925. // U.UF.F.windowZooming(_formel);
  2926. // U.UF.F.topWindow(_formel);
  2927. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2928. var _formel = document.getElementById("study");
  2929. // if (_formel.ismaximize) {
  2930. // return;
  2931. // }
  2932. // U.UF.F.windowZooming(_formel);
  2933. U.UF.F.topWindow(_formel);
  2934. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2935. var _formel = document.getElementById("studentIndex");
  2936. U.UF.F.windowZooming(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2938. var _formel = document.getElementById("studyDetailS");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2941. var _formel = document.getElementById("studioIndex");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2944. var _formel = document.getElementById("studyDetailStudio");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2947. var _formel = document.getElementById("studyDetailStudio");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2950. var _formel = document.getElementById("studyDetailNT");
  2951. U.UF.F.windowZooming(_formel);
  2952. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2953. var _formel = document.getElementById("studyDetailS");
  2954. U.UF.F.windowZooming(_formel);
  2955. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2956. var _formel = document.getElementById("studyDetailS");
  2957. U.UF.F.topWindow(_formel);
  2958. } else if (e.data.tools && e.data.tools == "1") {
  2959. // U.MD.D.I.openApplication("whiteboard")
  2960. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2961. } else if (e.data.tools && e.data.tools == "2") {
  2962. U.MD.D.I.openApplication("note")
  2963. } else if (e.data.tools && e.data.tools == "3") {
  2964. // U.MD.D.I.openApplication("mind")
  2965. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2966. } else if (e.data.tools && e.data.tools == "4") {
  2967. U.MD.D.I.openApplication("investigation")
  2968. } else if (e.data.tools && e.data.tools == "6") {
  2969. // U.MD.D.I.openApplication("doc")
  2970. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2971. } else if (e.data.tools && e.data.tools == "7") {
  2972. // U.MD.D.I.openApplication("mindNetwork")
  2973. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2974. } else if (e.data.tools && e.data.tools == "8") {
  2975. U.MD.D.I.openApplication("library")
  2976. } else if (e.data.tools && e.data.tools == "17") {
  2977. U.MD.D.I.openApplication("stuLibrary")
  2978. } else if (e.data.tools && e.data.tools == "18") {
  2979. U.MD.D.I.openApplication("train")
  2980. } else if (e.data.tools && e.data.tools == "21") {
  2981. U.MD.D.I.openApplication("program")
  2982. } else if (e.data.tools && e.data.tools == "22") {
  2983. U.MD.D.I.openApplication("AIprogram2")
  2984. } else if (e.data.tools && e.data.tools == "23") {
  2985. U.MD.D.I.openApplication("Pythonprogram")
  2986. } else if (e.data.tools && e.data.tools == "24") {
  2987. U.MD.D.I.openApplication("AIprogram")
  2988. } else if (e.data.tools && e.data.tools == "25") {
  2989. U.MD.D.I.openApplication("sys")
  2990. } else if (e.data.tools && e.data.tools == "26") {
  2991. // U.MD.D.I.openApplication("courseDesign")
  2992. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2993. } else if (e.data.tools && e.data.tools == "31") {
  2994. U.MD.D.I.openApplication("netWorkPanel")
  2995. } else if (e.data.tools && e.data.tools == "32") {
  2996. U.MD.D.I.openApplication("codeEdit")
  2997. } else if (e.data.tools && e.data.tools == "57") {
  2998. U.MD.D.I.openApplication("CocoPi")
  2999. } else if (e.data.tools && e.data.tools == "63") {
  3000. U.MD.D.I.openApplication("Wood")
  3001. } else if (e.data.tools && e.data.tools == "58") {
  3002. U.MD.D.I.openApplication("car")
  3003. } else if (e.data.tools && e.data.tools == "59") {
  3004. U.MD.D.I.openApplication("lineSearch")
  3005. } else if (e.data.tools && e.data.tools == "60") {
  3006. U.MD.D.I.openApplication("deepLearning")
  3007. } else if (e.data.tools && e.data.tools == "61") {
  3008. U.MD.D.I.openApplication("allHistory")
  3009. } else if (e.data.tools && e.data.tools == "28") {
  3010. U.MD.D.I.openApplication("translation")
  3011. } else if (e.data.tools && e.data.tools == "37") {
  3012. U.MD.D.I.openApplication("mohe")
  3013. } else if (e.data.tools && e.data.tools == "38") {
  3014. U.MD.D.I.openApplication("24game")
  3015. } else if (e.data.tools && e.data.tools == "39") {
  3016. U.MD.D.I.openApplication("GeoGebra")
  3017. } else if (e.data.tools && e.data.tools == "43") {
  3018. U.MD.D.I.openApplication("studentEvaluate")
  3019. } else if (e.data.tools && e.data.tools == "44") {
  3020. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3021. } else if (e.data.tools && e.data.tools == "46") {
  3022. U.MD.D.I.openApplication("project")
  3023. } else if (e.data.tools && e.data.tools == "71") {
  3024. U.MD.D.I.openApplication("aigptCourse")
  3025. } else if (e.data.tools && e.data.tools == "1s") {
  3026. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3027. } else if (e.data.tools && e.data.tools == "3s") {
  3028. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "6s") {
  3030. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "1studio") {
  3032. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "3studio") {
  3034. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "6studio") {
  3036. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3037. } else if (e.data.tools && e.data.tools == "3y") {
  3038. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3039. } else if (e.data.tools && e.data.tools == "1y") {
  3040. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3041. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3042. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3043. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3044. U.MD.D.I.openApplication("AIAnalyse")
  3045. } else if (e.data.tools && e.data.tools == "1teacher") {
  3046. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3047. } else if (e.data.tools && e.data.tools == "3teacher") {
  3048. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "7teacher") {
  3050. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3051. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3052. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3053. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3054. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3055. } else if (e.data.tools && e.data.tools == "1E") {
  3056. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3057. } else if (e.data.tools && e.data.tools == "3E") {
  3058. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3059. } else if (e.data.tools && e.data.tools == "57y") {
  3060. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3061. } else if (e.data.tools && e.data.tools == "57u") {
  3062. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3063. } else if (e.data.tools && e.data.tools == "57teacher") {
  3064. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3065. } else if (e.data.tools && e.data.tools == "64") {
  3066. U.MD.D.I.openApplication("AIChat")
  3067. } else if (e.data.tools && e.data.tools == "66") {
  3068. U.MD.D.I.openApplication("formulaEdi")
  3069. } else if (e.data.tools && e.data.tools == "67") {
  3070. U.MD.D.I.openApplication("molStr")
  3071. } else if (e.data.tools && e.data.tools == "68") {
  3072. U.MD.D.I.openApplication("timeAxis")
  3073. } else if (e.data.tools && e.data.tools == "openCourse") {
  3074. let _data = {
  3075. typea: e.data.typea || '',
  3076. typeb: e.data.typeb || '',
  3077. typed: e.data.typed || '',
  3078. }
  3079. U.MD.D.I.openInApplication("index", _data)
  3080. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3081. let _data = {
  3082. classid: e.data.classid || '',
  3083. }
  3084. U.MD.D.I.openInApplication("dataClass", _data)
  3085. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3086. let _data = {
  3087. cid: e.data.cid || '',
  3088. gid: e.data.gid || '',
  3089. }
  3090. U.MD.D.I.openInApplication("opencCscl", _data)
  3091. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3092. U.MD.D.I.openApplication("dataBoardTest")
  3093. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3094. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3095. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3096. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3097. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3098. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3099. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3100. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3101. }else if (e.data.tools && e.data.tools == "loginSz") {
  3102. U.MD.D.I.openInApplication("loginSz")
  3103. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3104. if($('#classroom_observation_board')[0]){
  3105. // U.UF.F.closeWindow($('#classroom_observation_board'))
  3106. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3107. }
  3108. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3109. }
  3110. });
  3111. U.MD.D.I.selectUser = function () {
  3112. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3113. if (res.value[0].length > 0) {
  3114. US.userInfo = res.value[0][0];
  3115. $(".userName")[0].innerHTML = US.userInfo.username;
  3116. }
  3117. }, [], { "type": "GET", "withCredentials": true });
  3118. }
  3119. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3120. var _userinfo = US.userInfo, //登录用户信息
  3121. _userid = US.userInfo.userid, //登录用户id
  3122. _oid = _userinfo.organizeid,
  3123. _type = US.userInfo.type,
  3124. _org = US.userInfo.org,
  3125. _role = US.userInfo.role,
  3126. _classId = US.userInfo.classid;
  3127. if (_type == 4) {
  3128. tType = 4
  3129. }
  3130. switch (str) {
  3131. case "studyDetailNT": //无终端模式
  3132. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3133. setTimeout(() => {
  3134. U.MD.U.L.login();
  3135. }, 2000);
  3136. } else {
  3137. _formdiv = new U.UF.UI.form(
  3138. "课程详情",
  3139. $$("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 }), {
  3140. "id": "studyDetailNT",
  3141. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3142. "onresize": function () { }
  3143. }, {
  3144. closecallback: function () { }
  3145. }, { "style": { "height": "36px" } }).form; //创建窗体
  3146. _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); } }
  3147. break;
  3148. }
  3149. case "studyDetail":
  3150. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3151. setTimeout(() => {
  3152. U.MD.U.L.login();
  3153. }, 2000);
  3154. } else {
  3155. _formdiv = new U.UF.UI.form(
  3156. "课程详情",
  3157. $$("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 }), {
  3158. "id": "studyDetail",
  3159. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3160. "onresize": function () { }
  3161. }, {
  3162. closecallback: function () { }
  3163. }, { "style": { "height": "36px" } }).form; //创建窗体
  3164. _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); } }
  3165. break;
  3166. }
  3167. case "studyDetailTrain":
  3168. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3169. setTimeout(() => {
  3170. U.MD.U.L.login();
  3171. }, 2000);
  3172. } else {
  3173. _formdiv = new U.UF.UI.form(
  3174. "培训详情",
  3175. $$("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 }), {
  3176. "id": "studyDetailTrain",
  3177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3178. "onresize": function () { }
  3179. }, {
  3180. closecallback: function () { }
  3181. }, { "style": { "height": "36px" } }).form; //创建窗体
  3182. _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); } }
  3183. break;
  3184. }
  3185. case "studyDetailS":
  3186. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3187. setTimeout(() => {
  3188. U.MD.U.L.login();
  3189. }, 2000);
  3190. } else {
  3191. _formdiv = new U.UF.UI.form(
  3192. "项目详情",
  3193. $$("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 }), {
  3194. "id": "studyDetailS",
  3195. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3196. "onresize": function () { }
  3197. }, {
  3198. closecallback: function () { }
  3199. }, { "style": { "height": "36px" } }).form; //创建窗体
  3200. _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); } }
  3201. break;
  3202. }
  3203. case "studyDetailStudio":
  3204. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3205. setTimeout(() => {
  3206. U.MD.U.L.login();
  3207. }, 2000);
  3208. } else {
  3209. _formdiv = new U.UF.UI.form(
  3210. "工作详情",
  3211. $$("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 }), {
  3212. "id": "studyDetailStudio",
  3213. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3214. "onresize": function () { }
  3215. }, {
  3216. closecallback: function () { }
  3217. }, { "style": { "height": "36px" } }).form; //创建窗体
  3218. _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); } }
  3219. break;
  3220. }
  3221. case "studyDetailS5":
  3222. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3223. setTimeout(() => {
  3224. U.MD.U.L.login();
  3225. }, 2000);
  3226. } else {
  3227. _formdiv = new U.UF.UI.form(
  3228. "项目详情",
  3229. $$("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 }), {
  3230. "id": "studyDetailS",
  3231. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3232. "onresize": function () { }
  3233. }, {
  3234. closecallback: function () { }
  3235. }, { "style": { "height": "36px" } }).form; //创建窗体
  3236. _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); } }
  3237. break;
  3238. }
  3239. case "studyDetailGM":
  3240. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3241. setTimeout(() => {
  3242. U.MD.U.L.login();
  3243. }, 2000);
  3244. } else {
  3245. _formdiv = new U.UF.UI.form(
  3246. "课程详情",
  3247. $$("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 }), {
  3248. "id": "studyDetail",
  3249. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3250. "onresize": function () { }
  3251. }, {
  3252. closecallback: function () { }
  3253. }, { "style": { "height": "36px" } }).form; //创建窗体
  3254. _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); } }
  3255. break;
  3256. }
  3257. case "hanUrl":
  3258. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3259. setTimeout(() => {
  3260. U.MD.U.L.login();
  3261. }, 2000);
  3262. } else {
  3263. _formdiv = new U.UF.UI.form(
  3264. "汉字宫",
  3265. $$("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" }), {
  3266. "id": "hanUrl",
  3267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3268. "onresize": function () { }
  3269. }, {
  3270. closecallback: function () { }
  3271. }, { "style": { "height": "36px" } }).form; //创建窗体
  3272. _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); } }
  3273. break;
  3274. }
  3275. case "index":
  3276. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3277. setTimeout(() => {
  3278. U.MD.U.L.login();
  3279. }, 2000);
  3280. } else {
  3281. _formdiv = new U.UF.UI.form(
  3282. "课程中心",
  3283. $$("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 }), {
  3284. "id": "study",
  3285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3286. "onresize": function () { }
  3287. }, {
  3288. closecallback: function () { }
  3289. }, { "style": { "height": "36px" } }).form; //创建窗体
  3290. _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); } }
  3291. break;
  3292. }
  3293. case "dataClass":
  3294. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3295. setTimeout(() => {
  3296. U.MD.U.L.login();
  3297. }, 2000);
  3298. } else {
  3299. _formdiv = new U.UF.UI.form(
  3300. "数据报告",
  3301. $$("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 }), {
  3302. "id": "dataClass",
  3303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3304. "onresize": function () { }
  3305. }, {
  3306. closecallback: function () { }
  3307. }, { "style": { "height": "36px" } }).form; //创建窗体
  3308. _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); } }
  3309. break;
  3310. }
  3311. case "opencCscl":
  3312. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3313. setTimeout(() => {
  3314. U.MD.U.L.login();
  3315. }, 2000);
  3316. } else {
  3317. _formdiv = new U.UF.UI.form(
  3318. "协同建构",
  3319. $$("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 }), {
  3320. "id": "futureClass",
  3321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3322. "onresize": function () { }
  3323. }, {
  3324. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3325. }, { "style": { "height": "36px" } }).form; //创建窗体
  3326. _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); } }
  3327. break;
  3328. }
  3329. case "openCourseUpdate":
  3330. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3331. setTimeout(() => {
  3332. U.MD.U.L.login();
  3333. }, 2000);
  3334. } else {
  3335. _formdiv = new U.UF.UI.form(
  3336. "课程管理",
  3337. $$("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 }), {
  3338. "id": "openCourseUpdate",
  3339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3340. "onresize": function () { }
  3341. }, {
  3342. closecallback: function () { }
  3343. }, { "style": { "height": "36px" } }).form; //创建窗体
  3344. break;
  3345. }
  3346. case "openNewCourseUpdate":
  3347. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3348. setTimeout(() => {
  3349. U.MD.U.L.login();
  3350. }, 2000);
  3351. } else {
  3352. _formdiv = new U.UF.UI.form(
  3353. "课程管理",
  3354. $$("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 }), {
  3355. "id": "openCourseUpdate",
  3356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3357. "onresize": function () { }
  3358. }, {
  3359. closecallback: function () { }
  3360. }, { "style": { "height": "36px" } }).form; //创建窗体
  3361. break;
  3362. }
  3363. case "openCourseEUpdate":
  3364. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3365. setTimeout(() => {
  3366. U.MD.U.L.login();
  3367. }, 2000);
  3368. } else {
  3369. _formdiv = new U.UF.UI.form(
  3370. "课程管理",
  3371. $$("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 }), {
  3372. "id": "openCourseUpdate",
  3373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3374. "onresize": function () { }
  3375. }, {
  3376. closecallback: function () { }
  3377. }, { "style": { "height": "36px" } }).form; //创建窗体
  3378. break;
  3379. }
  3380. case "openCourseNewUpdate":
  3381. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3382. setTimeout(() => {
  3383. U.MD.U.L.login();
  3384. }, 2000);
  3385. } else {
  3386. _formdiv = new U.UF.UI.form(
  3387. "课程管理",
  3388. $$("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 }), {
  3389. "id": "openCourseUpdate",
  3390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3391. "onresize": function () { }
  3392. }, {
  3393. closecallback: function () { }
  3394. }, { "style": { "height": "36px" } }).form; //创建窗体
  3395. break;
  3396. }
  3397. case "inviteLoginSz":
  3398. _formdiv = new U.UF.UI.form(
  3399. "随机码登录",
  3400. $$("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 }), {
  3401. "id": "loginSz",
  3402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3403. "onresize": function () { }
  3404. }, {
  3405. closecallback: function () { }
  3406. }, { "style": { "height": "36px" } }).form; //创建窗体
  3407. break;
  3408. case "loginSz":
  3409. _formdiv = new U.UF.UI.form(
  3410. "教师登录",
  3411. $$("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" }), {
  3412. "id": "loginSz",
  3413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3414. "onresize": function () { }
  3415. }, {
  3416. closecallback: function () { }
  3417. }, { "style": { "height": "36px" } }).form; //创建窗体
  3418. break;
  3419. case "teacher":
  3420. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3421. setTimeout(() => {
  3422. U.MD.U.L.login();
  3423. }, 2000);
  3424. } else {
  3425. _formdiv = new U.UF.UI.form(
  3426. "教师管理",
  3427. $$("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 }), {
  3428. "id": "teacher",
  3429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3430. "onresize": function () { }
  3431. }, {
  3432. closecallback: function () { }
  3433. }, { "style": { "height": "36px" } }).form; //创建窗体
  3434. break;
  3435. }
  3436. case "dataBoardSZArea":
  3437. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3438. setTimeout(() => {
  3439. U.MD.U.L.login();
  3440. }, 2000);
  3441. } else {
  3442. _formdiv = new U.UF.UI.form(
  3443. "综合数据看板",
  3444. $$("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 }), {
  3445. "id": "dataBoardSZArea",
  3446. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3447. "onresize": function () { }
  3448. }, {
  3449. closecallback: function () { }
  3450. }, { "style": { "height": "36px" } }).form; //创建窗体
  3451. break;
  3452. }
  3453. case "dataBoardSZCity":
  3454. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3455. setTimeout(() => {
  3456. U.MD.U.L.login();
  3457. }, 2000);
  3458. } else {
  3459. _formdiv = new U.UF.UI.form(
  3460. "综合数据看板",
  3461. $$("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 }), {
  3462. "id": "dataBoardSZCity",
  3463. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3464. "onresize": function () { }
  3465. }, {
  3466. closecallback: function () { }
  3467. }, { "style": { "height": "36px" } }).form; //创建窗体
  3468. break;
  3469. }
  3470. case "classroom_observation_board":
  3471. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3472. setTimeout(() => {
  3473. U.MD.U.L.login();
  3474. }, 2000);
  3475. } else {
  3476. _formdiv = new U.UF.UI.form(
  3477. "课堂观察",
  3478. $$("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 }), {
  3479. "id": "classroom_observation_board",
  3480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3481. "onresize": function () { }
  3482. }, {
  3483. closecallback: function () { }
  3484. }, { "style": { "height": "36px" } }).form; //创建窗体
  3485. break;
  3486. }
  3487. }
  3488. }
  3489. U.MD.D.I.openApplication = function (str, obj, info) {
  3490. obj = obj || {};
  3491. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3492. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3493. _userinfo = US.userInfo, //登录用户信息
  3494. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3495. _oid = obj.organizeid || _userinfo.organizeid,
  3496. _type = US.userInfo.type,
  3497. _org = US.userInfo.org,
  3498. _role = US.userInfo.role,
  3499. _classId = US.userInfo.classid,
  3500. _TscreenType = 1
  3501. _screenType = 2,
  3502. _SscreenType = 3;
  3503. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3504. return;
  3505. }
  3506. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3507. switch (str) {
  3508. case "studnetProject": //好友打开
  3509. _formdiv = new U.UF.UI.form(
  3510. "我的项目",
  3511. $$("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 }), {
  3512. "id": "studnetProject",
  3513. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3514. "onresize": function () { }
  3515. }, {
  3516. closecallback: function () { }
  3517. }, { "style": { "height": "36px" } }).form; //创建窗体
  3518. _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); } }
  3519. break;
  3520. case "studentEvaluate": //好友打开
  3521. _formdiv = new U.UF.UI.form(
  3522. "我的评价",
  3523. $$("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 }), {
  3524. "id": "studentEvaluate",
  3525. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3526. "onresize": function () { }
  3527. }, {
  3528. closecallback: function () { }
  3529. }, { "style": { "height": "36px" } }).form; //创建窗体
  3530. _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); } }
  3531. break;
  3532. case "my":
  3533. _formdiv = new U.UF.UI.form(
  3534. "我的资料",
  3535. $$("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 }), {
  3536. "id": "my",
  3537. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3538. "onresize": function () { }
  3539. }, {
  3540. closecallback: function () { }
  3541. }, { "style": { "height": "36px" } }).form; //创建窗体
  3542. _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); } }
  3543. break;
  3544. case "program":
  3545. _formdiv = new U.UF.UI.form(
  3546. "编程平台",
  3547. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3548. "id": "program",
  3549. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3550. "onresize": function () { }
  3551. }, {
  3552. closecallback: function () { }
  3553. }, { "style": { "height": "36px" } }).form; //创建窗体
  3554. _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); } }
  3555. break;
  3556. case "library":
  3557. _formdiv = new U.UF.UI.form(
  3558. "素材库",
  3559. $$("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 }), {
  3560. "id": "library",
  3561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3562. "onresize": function () { }
  3563. }, {
  3564. closecallback: function () { }
  3565. }, { "style": { "height": "36px" } }).form; //创建窗体
  3566. _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); } }
  3567. break;
  3568. case "whiteboard":
  3569. _formdiv = new U.UF.UI.form(
  3570. "电子白板",
  3571. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3572. "id": "whiteboard",
  3573. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3574. "onresize": function () { }
  3575. }, {
  3576. closecallback: function () { }
  3577. }, { "style": { "height": "36px" } }).form; //创建窗体
  3578. _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); } }
  3579. break;
  3580. case "investigation":
  3581. _formdiv = new U.UF.UI.form(
  3582. "问卷调查",
  3583. $$("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 }), {
  3584. "id": "investigation",
  3585. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3586. "onresize": function () { }
  3587. }, {
  3588. closecallback: function () { }
  3589. }, { "style": { "height": "36px" } }).form; //创建窗体
  3590. _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); } }
  3591. break;
  3592. case "note":
  3593. _formdiv = new U.UF.UI.form(
  3594. "便签分类",
  3595. $$("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 }), {
  3596. "id": "note",
  3597. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3598. "onresize": function () { }
  3599. }, {
  3600. closecallback: function () { }
  3601. }, { "style": { "height": "36px" } }).form; //创建窗体
  3602. _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); } }
  3603. break;
  3604. // case "score":
  3605. // _formdiv = new U.UF.UI.form(
  3606. // "量规评分",
  3607. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3608. // "id": "score",
  3609. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3610. // "onresize": function() {}
  3611. // }, {
  3612. // closecallback: function() {}
  3613. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3614. // _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); } }
  3615. // break;
  3616. case "mind":
  3617. _formdiv = new U.UF.UI.form(
  3618. "思维导图",
  3619. $$("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"
  3620. "id": "mind",
  3621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3622. "onresize": function () { }
  3623. }, {
  3624. closecallback: function () { }
  3625. }, { "style": { "height": "36px" } }).form; //创建窗体
  3626. _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); } }
  3627. break;
  3628. case "doc":
  3629. // U.MD.D.I.isRoom();
  3630. _formdiv = new U.UF.UI.form(
  3631. "协同文档",
  3632. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3633. "id": "doc",
  3634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3635. "onresize": function () { }
  3636. }, {
  3637. closecallback: function () { }
  3638. }, { "style": { "height": "36px" } }).form; //创建窗体
  3639. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3640. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3641. // })
  3642. _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); } }
  3643. break;
  3644. case "studentStudy":
  3645. _formdiv = new U.UF.UI.form(
  3646. "课程中心",
  3647. $$("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
  3648. "id": "studentStudy",
  3649. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3650. "onresize": function () { }
  3651. }, {
  3652. closecallback: function () { }
  3653. }, { "style": { "height": "36px" } }).form; //创建窗体
  3654. _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); } }
  3655. break;
  3656. case "train": //好友打开
  3657. _formdiv = new U.UF.UI.form(
  3658. "训练平台",
  3659. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3660. "id": "train",
  3661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3662. "onresize": function () { }
  3663. }, {
  3664. closecallback: function () { }
  3665. }, { "style": { "height": "36px" } }).form; //创建窗体
  3666. _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); } }
  3667. break;
  3668. case "mindNetwork": //好友打开
  3669. _formdiv = new U.UF.UI.form(
  3670. "思维网格",
  3671. $$("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 }), {
  3672. "id": "mindNetwork",
  3673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3674. "onresize": function () { }
  3675. }, {
  3676. closecallback: function () { }
  3677. }, { "style": { "height": "36px" } }).form; //创建窗体
  3678. _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); } }
  3679. break;
  3680. case "studentClassRoom": //好友打开
  3681. _formdiv = new U.UF.UI.form(
  3682. "实时课堂",
  3683. $$("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 }), {
  3684. "id": "studentClassRoom",
  3685. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3686. "onresize": function () { }
  3687. }, {
  3688. closecallback: function () { }
  3689. }, { "style": { "height": "36px" } }).form; //创建窗体
  3690. _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); } }
  3691. setTimeout(() => {
  3692. U.UF.F.windowZooming(_formdiv)
  3693. }, 0);
  3694. break;
  3695. }
  3696. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3697. switch (str) {
  3698. case "studnetProject": //好友打开
  3699. _formdiv = new U.UF.UI.form(
  3700. "我的项目",
  3701. $$("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 }), {
  3702. "id": "studnetProject",
  3703. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3704. "onresize": function () { }
  3705. }, {
  3706. closecallback: function () { }
  3707. }, { "style": { "height": "36px" } }).form; //创建窗体
  3708. _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); } }
  3709. break;
  3710. case "studentEvaluate": //好友打开
  3711. _formdiv = new U.UF.UI.form(
  3712. "我的评价",
  3713. $$("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 }), {
  3714. "id": "studentEvaluate",
  3715. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3716. "onresize": function () { }
  3717. }, {
  3718. closecallback: function () { }
  3719. }, { "style": { "height": "36px" } }).form; //创建窗体
  3720. _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); } }
  3721. break;
  3722. case "my":
  3723. _formdiv = new U.UF.UI.form(
  3724. "我的资料",
  3725. $$("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 }), {
  3726. "id": "my",
  3727. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3728. "onresize": function () { }
  3729. }, {
  3730. closecallback: function () { }
  3731. }, { "style": { "height": "36px" } }).form; //创建窗体
  3732. _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); } }
  3733. break;
  3734. case "program":
  3735. _formdiv = new U.UF.UI.form(
  3736. "编程平台",
  3737. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3738. "id": "program",
  3739. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3740. "onresize": function () { }
  3741. }, {
  3742. closecallback: function () { }
  3743. }, { "style": { "height": "36px" } }).form; //创建窗体
  3744. _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); } }
  3745. break;
  3746. case "library":
  3747. _formdiv = new U.UF.UI.form(
  3748. "素材库",
  3749. $$("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 }), {
  3750. "id": "library",
  3751. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3752. "onresize": function () { }
  3753. }, {
  3754. closecallback: function () { }
  3755. }, { "style": { "height": "36px" } }).form; //创建窗体
  3756. _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); } }
  3757. break;
  3758. case "whiteboard":
  3759. _formdiv = new U.UF.UI.form(
  3760. "电子白板",
  3761. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  3762. "id": "whiteboard",
  3763. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3764. "onresize": function () { }
  3765. }, {
  3766. closecallback: function () { }
  3767. }, { "style": { "height": "36px" } }).form; //创建窗体
  3768. _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); } }
  3769. break;
  3770. case "investigation":
  3771. _formdiv = new U.UF.UI.form(
  3772. "问卷调查",
  3773. $$("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 }), {
  3774. "id": "investigation",
  3775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3776. "onresize": function () { }
  3777. }, {
  3778. closecallback: function () { }
  3779. }, { "style": { "height": "36px" } }).form; //创建窗体
  3780. _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); } }
  3781. break;
  3782. case "note":
  3783. _formdiv = new U.UF.UI.form(
  3784. "便签分类",
  3785. $$("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 }), {
  3786. "id": "note",
  3787. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3788. "onresize": function () { }
  3789. }, {
  3790. closecallback: function () { }
  3791. }, { "style": { "height": "36px" } }).form; //创建窗体
  3792. _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); } }
  3793. break;
  3794. // case "score":
  3795. // _formdiv = new U.UF.UI.form(
  3796. // "量规评分",
  3797. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3798. // "id": "score",
  3799. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3800. // "onresize": function() {}
  3801. // }, {
  3802. // closecallback: function() {}
  3803. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3804. // _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); } }
  3805. // break;
  3806. case "mind":
  3807. _formdiv = new U.UF.UI.form(
  3808. "思维导图",
  3809. $$("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"
  3810. "id": "mind",
  3811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3812. "onresize": function () { }
  3813. }, {
  3814. closecallback: function () { }
  3815. }, { "style": { "height": "36px" } }).form; //创建窗体
  3816. _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); } }
  3817. break;
  3818. case "doc":
  3819. // U.MD.D.I.isRoom();
  3820. _formdiv = new U.UF.UI.form(
  3821. "协同文档",
  3822. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3823. "id": "doc",
  3824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3825. "onresize": function () { }
  3826. }, {
  3827. closecallback: function () { }
  3828. }, { "style": { "height": "36px" } }).form; //创建窗体
  3829. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3830. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3831. })
  3832. _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); } }
  3833. break;
  3834. case "train": //好友打开
  3835. _formdiv = new U.UF.UI.form(
  3836. "训练平台",
  3837. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3838. "id": "train",
  3839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3840. "onresize": function () { }
  3841. }, {
  3842. closecallback: function () { }
  3843. }, { "style": { "height": "36px" } }).form; //创建窗体
  3844. _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); } }
  3845. break;
  3846. case "studentStudy":
  3847. _formdiv = new U.UF.UI.form(
  3848. "课程中心",
  3849. $$("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
  3850. "id": "studentStudy",
  3851. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3852. "onresize": function () { }
  3853. }, {
  3854. closecallback: function () { }
  3855. }, { "style": { "height": "36px" } }).form; //创建窗体
  3856. _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); } }
  3857. break;
  3858. case "mindNetwork": //好友打开
  3859. _formdiv = new U.UF.UI.form(
  3860. "思维网格",
  3861. $$("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 }), {
  3862. "id": "mindNetwork",
  3863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3864. "onresize": function () { }
  3865. }, {
  3866. closecallback: function () { }
  3867. }, { "style": { "height": "36px" } }).form; //创建窗体
  3868. _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); } }
  3869. break;
  3870. case "studentClassRoom": //好友打开
  3871. _formdiv = new U.UF.UI.form(
  3872. "实时课堂",
  3873. $$("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 }), {
  3874. "id": "studentClassRoom",
  3875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3876. "onresize": function () { }
  3877. }, {
  3878. closecallback: function () { }
  3879. }, { "style": { "height": "36px" } }).form; //创建窗体
  3880. _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); } }
  3881. setTimeout(() => {
  3882. U.UF.F.windowZooming(_formdiv)
  3883. }, 0);
  3884. break;
  3885. }
  3886. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3887. //选择应用处理
  3888. switch (str) {
  3889. case "project": //好友打开
  3890. _formdiv = new U.UF.UI.form(
  3891. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3892. $$("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 }), {
  3893. "id": "project",
  3894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3895. "onresize": function () { }
  3896. }, {
  3897. closecallback: function () { }
  3898. }, { "style": { "height": "36px" } }).form; //创建窗体
  3899. _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); } }
  3900. break;
  3901. case "student":
  3902. _formdiv = new U.UF.UI.form(
  3903. "学生管理",
  3904. $$("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 }), {
  3905. "id": "student",
  3906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3907. "onresize": function () { }
  3908. }, {
  3909. closecallback: function () { }
  3910. }, { "style": { "height": "36px" } }).form; //创建窗体
  3911. _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); } }
  3912. break;
  3913. case "evaluate":
  3914. _formdiv = new U.UF.UI.form(
  3915. "学生评价",
  3916. $$("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 }), {
  3917. "id": "evaluate",
  3918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3919. "onresize": function () { }
  3920. }, {
  3921. closecallback: function () { }
  3922. }, { "style": { "height": "36px" } }).form; //创建窗体
  3923. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3924. break;
  3925. case "sys":
  3926. _formdiv = new U.UF.UI.form(
  3927. "目标管理",
  3928. $$("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 }), {
  3929. "id": "sys",
  3930. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3931. "onresize": function () { }
  3932. }, {
  3933. closecallback: function () { }
  3934. }, { "style": { "height": "36px" } }).form; //创建窗体
  3935. _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); } }
  3936. break;
  3937. case "courseDesign":
  3938. _formdiv = new U.UF.UI.form(
  3939. "项目设计",
  3940. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3941. "id": "courseDesign",
  3942. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3943. "onresize": function () { }
  3944. }, {
  3945. closecallback: function () { }
  3946. }, { "style": { "height": "36px" } }).form; //创建窗体
  3947. _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); } }
  3948. break;
  3949. case "program":
  3950. _formdiv = new U.UF.UI.form(
  3951. "编程平台",
  3952. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3953. "id": "program",
  3954. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3955. "onresize": function () { }
  3956. }, {
  3957. closecallback: function () { }
  3958. }, { "style": { "height": "36px" } }).form; //创建窗体
  3959. _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); } }
  3960. break;
  3961. case "class":
  3962. _formdiv = new U.UF.UI.form(
  3963. "班级管理",
  3964. $$("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 }), {
  3965. "id": "class",
  3966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3967. "onresize": function () { }
  3968. }, {
  3969. closecallback: function () { }
  3970. }, { "style": { "height": "36px" } }).form; //创建窗体
  3971. _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); } }
  3972. break;
  3973. case "Grade":
  3974. _formdiv = new U.UF.UI.form(
  3975. "年级管理",
  3976. $$("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 }), {
  3977. "id": "Grade",
  3978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3979. "onresize": function () { }
  3980. }, {
  3981. closecallback: function () { }
  3982. }, { "style": { "height": "36px" } }).form; //创建窗体
  3983. _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); } }
  3984. break;
  3985. case "teacherOffice":
  3986. _formdiv = new U.UF.UI.form(
  3987. "教研室",
  3988. $$("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 }), {
  3989. "id": "teacherOffice",
  3990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3991. "onresize": function () { }
  3992. }, {
  3993. closecallback: function () { }
  3994. }, { "style": { "height": "36px" } }).form; //创建窗体
  3995. _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); } }
  3996. break;
  3997. case "my":
  3998. _formdiv = new U.UF.UI.form(
  3999. "我的资料",
  4000. $$("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 }), {
  4001. "id": "my",
  4002. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4003. "onresize": function () { }
  4004. }, {
  4005. closecallback: function () { }
  4006. }, { "style": { "height": "36px" } }).form; //创建窗体
  4007. _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); } }
  4008. break;
  4009. case "notice":
  4010. _formdiv = new U.UF.UI.form(
  4011. "通知公告",
  4012. $$("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 }), {
  4013. "id": "notice",
  4014. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4015. "onresize": function () { }
  4016. }, {
  4017. closecallback: function () { }
  4018. }, { "style": { "height": "36px" } }).form; //创建窗体
  4019. _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); } }
  4020. break;
  4021. case "library":
  4022. _formdiv = new U.UF.UI.form(
  4023. "素材库",
  4024. $$("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 }), {
  4025. "id": "library",
  4026. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4027. "onresize": function () { }
  4028. }, {
  4029. closecallback: function () { }
  4030. }, { "style": { "height": "36px" } }).form; //创建窗体
  4031. _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); } }
  4032. break;
  4033. case "whiteboard":
  4034. _formdiv = new U.UF.UI.form(
  4035. "电子白板",
  4036. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4037. "id": "whiteboard",
  4038. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4039. "onresize": function () { }
  4040. }, {
  4041. closecallback: function () { }
  4042. }, { "style": { "height": "36px" } }).form; //创建窗体
  4043. _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); } }
  4044. break;
  4045. case "investigation":
  4046. _formdiv = new U.UF.UI.form(
  4047. "问卷调查",
  4048. $$("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 }), {
  4049. "id": "investigation",
  4050. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4051. "onresize": function () { }
  4052. }, {
  4053. closecallback: function () { }
  4054. }, { "style": { "height": "36px" } }).form; //创建窗体
  4055. _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); } }
  4056. break;
  4057. case "note":
  4058. _formdiv = new U.UF.UI.form(
  4059. "便签分类",
  4060. $$("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 }), {
  4061. "id": "note",
  4062. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4063. "onresize": function () { }
  4064. }, {
  4065. closecallback: function () { }
  4066. }, { "style": { "height": "36px" } }).form; //创建窗体
  4067. _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); } }
  4068. break;
  4069. // case "score":
  4070. // _formdiv = new U.UF.UI.form(
  4071. // "量规评分",
  4072. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4073. // "id": "score",
  4074. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4075. // "onresize": function() {}
  4076. // }, {
  4077. // closecallback: function() {}
  4078. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4079. // _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); } }
  4080. // break;
  4081. case "mind":
  4082. _formdiv = new U.UF.UI.form(
  4083. "思维导图",
  4084. $$("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"
  4085. "id": "mind",
  4086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4087. "onresize": function () { }
  4088. }, {
  4089. closecallback: function () { }
  4090. }, { "style": { "height": "36px" } }).form; //创建窗体
  4091. _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); } }
  4092. break;
  4093. case "doc":
  4094. // U.MD.D.I.isRoom();
  4095. _formdiv = new U.UF.UI.form(
  4096. "协同文档",
  4097. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4098. "id": "doc",
  4099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4100. "onresize": function () { }
  4101. }, {
  4102. closecallback: function () { }
  4103. }, { "style": { "height": "36px" } }).form; //创建窗体
  4104. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4105. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4106. })
  4107. _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); } }
  4108. break;
  4109. case "study":
  4110. _formdiv = new U.UF.UI.form(
  4111. "课程中心",
  4112. $$("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
  4113. "id": "study",
  4114. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4115. "onresize": function () { }
  4116. }, {
  4117. closecallback: function () { }
  4118. }, { "style": { "height": "36px" } }).form; //创建窗体
  4119. _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); } }
  4120. break;
  4121. case "mindNetwork": //好友打开
  4122. _formdiv = new U.UF.UI.form(
  4123. "思维网格",
  4124. $$("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 }), {
  4125. "id": "mindNetwork",
  4126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4127. "onresize": function () { }
  4128. }, {
  4129. closecallback: function () { }
  4130. }, { "style": { "height": "36px" } }).form; //创建窗体
  4131. _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); } }
  4132. break;
  4133. case "train": //好友打开
  4134. _formdiv = new U.UF.UI.form(
  4135. "训练平台",
  4136. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4137. "id": "mindNetwork",
  4138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4139. "onresize": function () { }
  4140. }, {
  4141. closecallback: function () { }
  4142. }, { "style": { "height": "36px" } }).form; //创建窗体
  4143. _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); } }
  4144. break;
  4145. case "teacherClassRoom": //好友打开
  4146. _formdiv = new U.UF.UI.form(
  4147. "实时课堂",
  4148. $$("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 }), {
  4149. "id": "teacherClassRoom",
  4150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4151. "onresize": function () { }
  4152. }, {
  4153. closecallback: function () { }
  4154. }, { "style": { "height": "36px" } }).form; //创建窗体
  4155. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4156. setTimeout(() => {
  4157. U.UF.F.windowZooming(_formdiv)
  4158. }, 0);
  4159. break;
  4160. }
  4161. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4162. switch (str) {
  4163. case "project": //好友打开
  4164. _formdiv = new U.UF.UI.form(
  4165. "课程管理",
  4166. $$("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 }), {
  4167. "id": "project",
  4168. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4169. "onresize": function () { }
  4170. }, {
  4171. closecallback: function () { }
  4172. }, { "style": { "height": "36px" } }).form; //创建窗体
  4173. _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); } }
  4174. break;
  4175. case "evaluate":
  4176. _formdiv = new U.UF.UI.form(
  4177. "学生评价",
  4178. $$("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 }), {
  4179. "id": "evaluate",
  4180. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4181. "onresize": function () { }
  4182. }, {
  4183. closecallback: function () { }
  4184. }, { "style": { "height": "36px" } }).form; //创建窗体
  4185. _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); } }
  4186. break;
  4187. case "notice":
  4188. _formdiv = new U.UF.UI.form(
  4189. "通知公告",
  4190. $$("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 }), {
  4191. "id": "notice",
  4192. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4193. "onresize": function () { }
  4194. }, {
  4195. closecallback: function () { }
  4196. }, { "style": { "height": "36px" } }).form; //创建窗体
  4197. _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); } }
  4198. break;
  4199. case "stuLibrary":
  4200. _formdiv = new U.UF.UI.form(
  4201. "学习资料",
  4202. $$("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 }), {
  4203. "id": "stuLibrary",
  4204. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4205. "onresize": function () { }
  4206. }, {
  4207. closecallback: function () { }
  4208. }, { "style": { "height": "36px" } }).form; //创建窗体
  4209. _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); } }
  4210. break;
  4211. case "program":
  4212. _formdiv = new U.UF.UI.form(
  4213. "编程平台",
  4214. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4215. "id": "program",
  4216. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4217. "onresize": function () { }
  4218. }, {
  4219. closecallback: function () { }
  4220. }, { "style": { "height": "36px" } }).form; //创建窗体
  4221. _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); } }
  4222. break;
  4223. case "whiteboard":
  4224. _formdiv = new U.UF.UI.form(
  4225. "电子白板",
  4226. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4227. "id": "whiteboard",
  4228. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4229. "onresize": function () { }
  4230. }, {
  4231. closecallback: function () { }
  4232. }, { "style": { "height": "36px" } }).form; //创建窗体
  4233. _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); } }
  4234. break;
  4235. case "investigation":
  4236. _formdiv = new U.UF.UI.form(
  4237. "问卷调查",
  4238. $$("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 }), {
  4239. "id": "investigation",
  4240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4241. "onresize": function () { }
  4242. }, {
  4243. closecallback: function () { }
  4244. }, { "style": { "height": "36px" } }).form; //创建窗体
  4245. _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); } }
  4246. break;
  4247. case "mind":
  4248. _formdiv = new U.UF.UI.form(
  4249. "思维导图",
  4250. $$("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"
  4251. "id": "mind",
  4252. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4253. "onresize": function () { }
  4254. }, {
  4255. closecallback: function () { }
  4256. }, { "style": { "height": "36px" } }).form; //创建窗体
  4257. _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); } }
  4258. break;
  4259. case "doc":
  4260. // U.MD.D.I.isRoom();
  4261. _formdiv = new U.UF.UI.form(
  4262. "协同文档",
  4263. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4264. "id": "doc",
  4265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4266. "onresize": function () { }
  4267. }, {
  4268. closecallback: function () { }
  4269. }, { "style": { "height": "36px" } }).form; //创建窗体
  4270. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4271. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4272. })
  4273. _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); } }
  4274. break;
  4275. case "study":
  4276. _formdiv = new U.UF.UI.form(
  4277. "课程中心",
  4278. $$("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
  4279. "id": "study",
  4280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4281. "onresize": function () { }
  4282. }, {
  4283. closecallback: function () { }
  4284. }, { "style": { "height": "36px" } }).form; //创建窗体
  4285. _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); } }
  4286. break;
  4287. case "mindNetwork": //好友打开
  4288. _formdiv = new U.UF.UI.form(
  4289. "思维网格",
  4290. $$("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 }), {
  4291. "id": "mindNetwork",
  4292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4293. "onresize": function () { }
  4294. }, {
  4295. closecallback: function () { }
  4296. }, { "style": { "height": "36px" } }).form; //创建窗体
  4297. _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); } }
  4298. break;
  4299. case "train": //好友打开
  4300. _formdiv = new U.UF.UI.form(
  4301. "训练平台",
  4302. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4303. "id": "train",
  4304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4305. "onresize": function () { }
  4306. }, {
  4307. closecallback: function () { }
  4308. }, { "style": { "height": "36px" } }).form; //创建窗体
  4309. _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); } }
  4310. break;
  4311. case "sys":
  4312. _formdiv = new U.UF.UI.form(
  4313. "目标管理",
  4314. $$("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 }), {
  4315. "id": "sys",
  4316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4317. "onresize": function () { }
  4318. }, {
  4319. closecallback: function () { }
  4320. }, { "style": { "height": "36px" } }).form; //创建窗体
  4321. _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); } }
  4322. break;
  4323. case "courseDesign":
  4324. _formdiv = new U.UF.UI.form(
  4325. "项目设计",
  4326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4327. "id": "courseDesign",
  4328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4329. "onresize": function () { }
  4330. }, {
  4331. closecallback: function () { }
  4332. }, { "style": { "height": "36px" } }).form; //创建窗体
  4333. _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); } }
  4334. break;
  4335. }
  4336. } else if (!_type) {
  4337. switch (str) {
  4338. case "my":
  4339. _formdiv = new U.UF.UI.form(
  4340. "我的资料",
  4341. $$("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 }), {
  4342. "id": "my",
  4343. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4344. "onresize": function () { }
  4345. }, {
  4346. closecallback: function () { }
  4347. }, { "style": { "height": "36px" } }).form; //创建窗体
  4348. _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); } }
  4349. break;
  4350. }
  4351. }
  4352. switch (str) {
  4353. // AIprogram2 AI体验 aihub.cocorobo.cn
  4354. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4355. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4356. case "formulaEdi": //公式编辑
  4357. _formdiv = new U.UF.UI.form(
  4358. "公式编辑",
  4359. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4360. "id": "formulaEdi",
  4361. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4362. "onresize": function () { }
  4363. }, {
  4364. closecallback: function () { }
  4365. }, { "style": { "height": "36px" } }).form; //创建窗体
  4366. _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); } }
  4367. break;
  4368. case "molStr": //分子结构
  4369. _formdiv = new U.UF.UI.form(
  4370. "分子结构",
  4371. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4372. "id": "molStr",
  4373. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4374. "onresize": function () { }
  4375. }, {
  4376. closecallback: function () { }
  4377. }, { "style": { "height": "36px" } }).form; //创建窗体
  4378. _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); } }
  4379. break;
  4380. case "timeAxis": //时间轴
  4381. _formdiv = new U.UF.UI.form(
  4382. "时间轴",
  4383. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4384. "id": "timeAxis",
  4385. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4386. "onresize": function () { }
  4387. }, {
  4388. closecallback: function () { }
  4389. }, { "style": { "height": "36px" } }).form; //创建窗体
  4390. _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); } }
  4391. break;
  4392. case "AIprogram2": //AI体验
  4393. _formdiv = new U.UF.UI.form(
  4394. "AI体验",
  4395. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4396. "id": "AIprogram2",
  4397. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4398. "onresize": function () { }
  4399. }, {
  4400. closecallback: function () { }
  4401. }, { "style": { "height": "36px" } }).form; //创建窗体
  4402. _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); } }
  4403. break;
  4404. case "Pythonprogram": //python编程
  4405. _formdiv = new U.UF.UI.form(
  4406. "Python编程",
  4407. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4408. "id": "Pythonprogram",
  4409. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4410. "onresize": function () { }
  4411. }, {
  4412. closecallback: function () { }
  4413. }, { "style": { "height": "36px" } }).form; //创建窗体
  4414. _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); } }
  4415. break;
  4416. case "AIprogram": //ai编程
  4417. _formdiv = new U.UF.UI.form(
  4418. "AI编程平台",
  4419. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4420. "id": "AIprogram",
  4421. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4422. "onresize": function () { }
  4423. }, {
  4424. closecallback: function () { }
  4425. }, { "style": { "height": "36px" } }).form; //创建窗体
  4426. _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); } }
  4427. break;
  4428. case "CocoPi": //CocoPi
  4429. _formdiv = new U.UF.UI.form(
  4430. "CocoPi",
  4431. $$("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" }), {
  4432. "id": "CocoPi",
  4433. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4434. "onresize": function () { }
  4435. }, {
  4436. closecallback: function () { }
  4437. }, { "style": { "height": "36px" } }).form; //创建窗体
  4438. _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); } }
  4439. break;
  4440. case "Wood": //Wood
  4441. _formdiv = new U.UF.UI.form(
  4442. "海龟编程",
  4443. $$("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/" }), {
  4444. "id": "Wood",
  4445. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4446. "onresize": function () { }
  4447. }, {
  4448. closecallback: function () { }
  4449. }, { "style": { "height": "36px" } }).form; //创建窗体
  4450. _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); } }
  4451. break;
  4452. case "car": //模拟驾驶
  4453. _formdiv = new U.UF.UI.form(
  4454. "模拟驾驶",
  4455. $$("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/" }), {
  4456. "id": "car",
  4457. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4458. "onresize": function () { }
  4459. }, {
  4460. closecallback: function () { }
  4461. }, { "style": { "height": "36px" } }).form; //创建窗体
  4462. _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); } }
  4463. break;
  4464. case "lineSearch": //路径搜索
  4465. _formdiv = new U.UF.UI.form(
  4466. "路径搜索",
  4467. $$("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/" }), {
  4468. "id": "lineSearch",
  4469. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. _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); } }
  4475. break;
  4476. case "deepLearning": //深度学习
  4477. _formdiv = new U.UF.UI.form(
  4478. "深度学习",
  4479. $$("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/#" }), {
  4480. "id": "deepLearning",
  4481. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4482. "onresize": function () { }
  4483. }, {
  4484. closecallback: function () { }
  4485. }, { "style": { "height": "36px" } }).form; //创建窗体
  4486. _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); } }
  4487. break;
  4488. case "allHistory": //深度学习
  4489. _formdiv = new U.UF.UI.form(
  4490. "全历史",
  4491. $$("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/" }), {
  4492. "id": "allHistory",
  4493. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4494. "onresize": function () { }
  4495. }, {
  4496. closecallback: function () { }
  4497. }, { "style": { "height": "36px" } }).form; //创建窗体
  4498. _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); } }
  4499. break;
  4500. case "chatPDF": //ai编程
  4501. _formdiv = new U.UF.UI.form(
  4502. "chatPDF",
  4503. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4504. "id": "chatPDF",
  4505. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4506. "onresize": function () { }
  4507. }, {
  4508. closecallback: function () { }
  4509. }, { "style": { "height": "36px" } }).form; //创建窗体
  4510. _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); } }
  4511. break;
  4512. case "resources": //国家教育
  4513. _formdiv = new U.UF.UI.form(
  4514. "国家教育",
  4515. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4516. "id": "resources",
  4517. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4518. "onresize": function () { }
  4519. }, {
  4520. closecallback: function () { }
  4521. }, { "style": { "height": "36px" } }).form; //创建窗体
  4522. _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); } }
  4523. break;
  4524. case "codeEdit": //源码编辑
  4525. _formdiv = new U.UF.UI.form(
  4526. "源码编辑",
  4527. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4528. "id": "codeEdit",
  4529. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4530. "onresize": function () { }
  4531. }, {
  4532. closecallback: function () { }
  4533. }, { "style": { "height": "36px" } }).form; //创建窗体
  4534. _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); } }
  4535. break; //
  4536. case "MindMap": //MindMap
  4537. _formdiv = new U.UF.UI.form(
  4538. "MindMap",
  4539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4540. "id": "MindMap",
  4541. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4542. "onresize": function () { }
  4543. }, {
  4544. closecallback: function () { }
  4545. }, { "style": { "height": "36px" } }).form; //创建窗体
  4546. _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); } }
  4547. break;
  4548. case "netWorkPanel": //netWorkPanel
  4549. _formdiv = new U.UF.UI.form(
  4550. "netWorkPanel",
  4551. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4552. "id": "netWorkPanel",
  4553. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4554. "onresize": function () { }
  4555. }, {
  4556. closecallback: function () { }
  4557. }, { "style": { "height": "36px" } }).form; //创建窗体
  4558. _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); } }
  4559. break;
  4560. case "GeoGebra": //GeoGebra
  4561. _formdiv = new U.UF.UI.form(
  4562. "GeoGebra",
  4563. $$("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" }), {
  4564. "id": "GeoGebra",
  4565. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4566. "onresize": function () { }
  4567. }, {
  4568. closecallback: function () { }
  4569. }, { "style": { "height": "36px" } }).form; //创建窗体
  4570. _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); } }
  4571. break;
  4572. case "translation": //翻译
  4573. _formdiv = new U.UF.UI.form(
  4574. "翻译",
  4575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4576. "id": "translation",
  4577. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4578. "onresize": function () { }
  4579. }, {
  4580. closecallback: function () { }
  4581. }, { "style": { "height": "36px" } }).form; //创建窗体
  4582. _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); } }
  4583. break;
  4584. case "mohe": //魔盒
  4585. _formdiv = new U.UF.UI.form(
  4586. "魔盒识字",
  4587. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4588. "id": "mohe",
  4589. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4590. "onresize": function () { }
  4591. }, {
  4592. closecallback: function () { }
  4593. }, { "style": { "height": "36px" } }).form; //创建窗体
  4594. _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); } }
  4595. break;
  4596. case "24game": //24点
  4597. _formdiv = new U.UF.UI.form(
  4598. "24点",
  4599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4600. "id": "24game",
  4601. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4602. "onresize": function () { }
  4603. }, {
  4604. closecallback: function () { }
  4605. }, { "style": { "height": "36px" } }).form; //创建窗体
  4606. _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); } }
  4607. break;
  4608. case "case":
  4609. _formdiv = new U.UF.UI.form(
  4610. "课程进展",
  4611. $$("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 }), {
  4612. "id": "case",
  4613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4614. "onresize": function () { }
  4615. }, {
  4616. closecallback: function () { }
  4617. }, { "style": { "height": "36px" } }).form; //创建窗体
  4618. _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); } }
  4619. break;
  4620. case "snf":
  4621. _formdiv = new U.UF.UI.form(
  4622. "赛诺梵",
  4623. $$("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" }), {
  4624. "id": "snf",
  4625. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4626. "onresize": function () { }
  4627. }, {
  4628. closecallback: function () { }
  4629. }, { "style": { "height": "36px" } }).form; //创建窗体
  4630. _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); } }
  4631. break;
  4632. case "hanFamily":
  4633. _formdiv = new U.UF.UI.form(
  4634. "汉字家族",
  4635. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4636. "id": "hanFamily",
  4637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4638. "onresize": function () { }
  4639. }, {
  4640. closecallback: function () { }
  4641. }, { "style": { "height": "36px" } }).form; //创建窗体
  4642. _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); } }
  4643. break;
  4644. case "hanClassics":
  4645. _formdiv = new U.UF.UI.form(
  4646. "国学经典",
  4647. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4648. "id": "hanClassics",
  4649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4650. "onresize": function () { }
  4651. }, {
  4652. closecallback: function () { }
  4653. }, { "style": { "height": "36px" } }).form; //创建窗体
  4654. _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); } }
  4655. break;
  4656. case "hanTraining":
  4657. _formdiv = new U.UF.UI.form(
  4658. "笔画训练",
  4659. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4660. "id": "hanTraining",
  4661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4662. "onresize": function () { }
  4663. }, {
  4664. closecallback: function () { }
  4665. }, { "style": { "height": "36px" } }).form; //创建窗体
  4666. _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); } }
  4667. break;
  4668. case "hanClass":
  4669. _formdiv = new U.UF.UI.form(
  4670. "书法课堂",
  4671. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4672. "id": "hanClass",
  4673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4674. "onresize": function () { }
  4675. }, {
  4676. closecallback: function () { }
  4677. }, { "style": { "height": "36px" } }).form; //创建窗体
  4678. _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); } }
  4679. break;
  4680. case "han":
  4681. _formdiv = new U.UF.UI.form(
  4682. "汉字宫",
  4683. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4684. "id": "han",
  4685. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4686. "onresize": function () { }
  4687. }, {
  4688. closecallback: function () { }
  4689. }, { "style": { "height": "36px" } }).form; //创建窗体
  4690. _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); } }
  4691. break;
  4692. case "projectGM": //课程管理
  4693. _formdiv = new U.UF.UI.form(
  4694. "课程管理",
  4695. $$("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 }), {
  4696. "id": "projectGM",
  4697. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4698. "onresize": function () { }
  4699. }, {
  4700. closecallback: function () { }
  4701. }, { "style": { "height": "36px" } }).form; //创建窗体
  4702. _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); } }
  4703. break;
  4704. case "studyGM": //课程中心
  4705. _formdiv = new U.UF.UI.form(
  4706. "课程中心",
  4707. $$("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
  4708. "id": "study",
  4709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4710. "onresize": function () { }
  4711. }, {
  4712. closecallback: function () { }
  4713. }, { "style": { "height": "36px" } }).form; //创建窗体
  4714. _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); } }
  4715. break;
  4716. // studentGM
  4717. case "studentGM": //学生管理
  4718. _formdiv = new U.UF.UI.form(
  4719. "学生管理",
  4720. $$("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 }), {
  4721. "id": "studentGM",
  4722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4723. "onresize": function () { }
  4724. }, {
  4725. closecallback: function () { }
  4726. }, { "style": { "height": "36px" } }).form; //创建窗体
  4727. _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); } }
  4728. break;
  4729. case "evaluateGM": //学生评价
  4730. _formdiv = new U.UF.UI.form(
  4731. "学生评价",
  4732. $$("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 }), {
  4733. "id": "evaluateGM",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. // classGM
  4742. case "classGM": //班级管理
  4743. _formdiv = new U.UF.UI.form(
  4744. "班级管理",
  4745. $$("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 }), {
  4746. "id": "classGM",
  4747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. _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); } }
  4753. break;
  4754. // dataGM
  4755. case "dataGM":
  4756. _formdiv = new U.UF.UI.form(
  4757. "我的资料",
  4758. $$("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 }), {
  4759. "id": "dataGM",
  4760. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4761. "onresize": function () { }
  4762. }, {
  4763. closecallback: function () { }
  4764. }, { "style": { "height": "36px" } }).form; //创建窗体
  4765. _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); } }
  4766. break;
  4767. // caseGM
  4768. case "caseGM": //课程进展
  4769. _formdiv = new U.UF.UI.form(
  4770. "课程进展",
  4771. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4772. "id": "caseGM",
  4773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4774. "onresize": function () { }
  4775. }, {
  4776. closecallback: function () { }
  4777. }, { "style": { "height": "36px" } }).form; //创建窗体
  4778. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4779. break;
  4780. // meterialGM
  4781. case "meterialGM": //素材库
  4782. _formdiv = new U.UF.UI.form(
  4783. "素材库",
  4784. $$("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 }), {
  4785. "id": "meterialGM",
  4786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _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); } }
  4792. break;
  4793. // evaluateSGM
  4794. case "evaluateSGM": //我的评价
  4795. _formdiv = new U.UF.UI.form(
  4796. "我的评价",
  4797. $$("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 }), {
  4798. "id": "evaluateSGM",
  4799. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4800. "onresize": function () { }
  4801. }, {
  4802. closecallback: function () { }
  4803. }, { "style": { "height": "36px" } }).form; //创建窗体
  4804. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4805. break;
  4806. case "jupyter": //jupyter
  4807. _formdiv = new U.UF.UI.form(
  4808. "jupyter",
  4809. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4810. "id": "jupyter",
  4811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //创建窗体
  4816. _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); } }
  4817. break;
  4818. case "number": //数字实验室
  4819. _formdiv = new U.UF.UI.form(
  4820. "数字实验室",
  4821. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4822. "id": "number",
  4823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4824. "onresize": function () { }
  4825. }, {
  4826. closecallback: function () { }
  4827. }, { "style": { "height": "36px" } }).form; //创建窗体
  4828. _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); } }
  4829. break;
  4830. case "studentCourse": //项目管理 学生
  4831. _formdiv = new U.UF.UI.form(
  4832. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4833. $$("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 }), {
  4834. "id": "studentCourse",
  4835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4836. "onresize": function () { }
  4837. }, {
  4838. closecallback: function () { }
  4839. }, { "style": { "height": "36px" } }).form; //创建窗体
  4840. _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); } }
  4841. break;
  4842. case "studentCourseS": //项目管理 老师
  4843. _formdiv = new U.UF.UI.form(
  4844. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4845. $$("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 }), {
  4846. "id": "studentCourseS",
  4847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //创建窗体
  4852. _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); } }
  4853. break;
  4854. case "studentIndex": //项目中心
  4855. _formdiv = new U.UF.UI.form(
  4856. "项目中心",
  4857. $$("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 }), {
  4858. "id": "studentIndex",
  4859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4860. "onresize": function () { }
  4861. }, {
  4862. closecallback: function () { }
  4863. }, { "style": { "height": "36px" } }).form; //创建窗体
  4864. _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); } }
  4865. break;
  4866. case "CaseDesignS":
  4867. _formdiv = new U.UF.UI.form(
  4868. "项目进展",
  4869. $$("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 }), {
  4870. "id": "case",
  4871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4872. "onresize": function () { }
  4873. }, {
  4874. closecallback: function () { }
  4875. }, { "style": { "height": "36px" } }).form; //创建窗体
  4876. _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); } }
  4877. break;
  4878. case "tcStudent": //腾讯学生管理
  4879. _formdiv = new U.UF.UI.form(
  4880. "学生管理",
  4881. $$("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 }), {
  4882. "id": "tcStudent",
  4883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4884. "onresize": function () { }
  4885. }, {
  4886. closecallback: function () { }
  4887. }, { "style": { "height": "36px" } }).form; //创建窗体
  4888. _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); } }
  4889. break;
  4890. case "tcSchool": //腾讯学校管理
  4891. _formdiv = new U.UF.UI.form(
  4892. "学校管理",
  4893. $$("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 }), {
  4894. "id": "tcSchool",
  4895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4896. "onresize": function () { }
  4897. }, {
  4898. closecallback: function () { }
  4899. }, { "style": { "height": "36px" } }).form; //创建窗体
  4900. _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); } }
  4901. break;
  4902. case "tcTeacher": //腾讯学校管理
  4903. _formdiv = new U.UF.UI.form(
  4904. "教师管理",
  4905. $$("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 }), {
  4906. "id": "tcTeacher",
  4907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4908. "onresize": function () { }
  4909. }, {
  4910. closecallback: function () { }
  4911. }, { "style": { "height": "36px" } }).form; //创建窗体
  4912. _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); } }
  4913. break;
  4914. case "tcData": //腾讯我的资料
  4915. _formdiv = new U.UF.UI.form(
  4916. "我的资料",
  4917. $$("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 }), {
  4918. "id": "tcData",
  4919. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4920. "onresize": function () { }
  4921. }, {
  4922. closecallback: function () { }
  4923. }, { "style": { "height": "36px" } }).form; //创建窗体
  4924. _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); } }
  4925. break;
  4926. case "tcNotice": //腾讯消息通知
  4927. _formdiv = new U.UF.UI.form(
  4928. "消息通知",
  4929. $$("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 }), {
  4930. "id": "tcNotice",
  4931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. _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); } }
  4937. break;
  4938. case "myReport": //好友打开
  4939. _formdiv = new U.UF.UI.form(
  4940. "我的评价",
  4941. $$("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 }), {
  4942. "id": "myReport",
  4943. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4944. "onresize": function () { }
  4945. }, {
  4946. closecallback: function () { }
  4947. }, { "style": { "height": "36px" } }).form; //创建窗体
  4948. _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); } }
  4949. break;
  4950. case "learnAna": //好友打开
  4951. _formdiv = new U.UF.UI.form(
  4952. "学习分析",
  4953. $$("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 }), {
  4954. "id": "learnAna",
  4955. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4956. "onresize": function () { }
  4957. }, {
  4958. closecallback: function () { }
  4959. }, { "style": { "height": "36px" } }).form; //创建窗体
  4960. _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); } }
  4961. break;
  4962. case "AIChat": //AI共创
  4963. _formdiv = new U.UF.UI.form(
  4964. "AI共创",
  4965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4966. "id": "AIChat",
  4967. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. istop: true,
  4971. closecallback: function () { $("#aichat_icon").remove(); },
  4972. narrowcallback: function () {
  4973. if (!$("#aichat_icon")[0]) {
  4974. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4975. }
  4976. },
  4977. }, { "style": { "height": "36px" } }).form; //创建窗体
  4978. _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); } }
  4979. break;
  4980. case "ainew": //AI共创
  4981. _formdiv = new U.UF.UI.form(
  4982. "AI协同",
  4983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4984. "id": "ainew",
  4985. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4986. "onresize": function () { }
  4987. }, {
  4988. closecallback: function () { }
  4989. }, { "style": { "height": "36px" } }).form; //创建窗体
  4990. _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); } }
  4991. break;
  4992. case "gpt4": //gpt4
  4993. _formdiv = new U.UF.UI.form(
  4994. "AI助手",
  4995. $$("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 }), {
  4996. "id": "gpt4",
  4997. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4998. "onresize": function () { }
  4999. }, {
  5000. closecallback: function () { }
  5001. }, { "style": { "height": "36px" } }).form; //创建窗体
  5002. _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); } }
  5003. break;
  5004. case "aigpt": //gpt4
  5005. _formdiv = new U.UF.UI.form(
  5006. "AI助手+",
  5007. $$("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 }), {
  5008. "id": "aigpt",
  5009. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //创建窗体
  5014. _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); } }
  5015. break;
  5016. case "futureClass": //AI共创
  5017. _formdiv = new U.UF.UI.form(
  5018. "协同建构",
  5019. $$("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
  5020. "id": "synergyCourse",
  5021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () {
  5025. $("iframe", _formdiv)[0].contentWindow.loginout();
  5026. }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _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); } }
  5029. break;
  5030. case "aiagent": //ai agent
  5031. _formdiv = new U.UF.UI.form(
  5032. "AI Agent",
  5033. $$("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" }), {
  5034. "id": "AIAgent",
  5035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //创建窗体
  5040. _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); } }
  5041. break;
  5042. case "dataBoard": //数据看板
  5043. _formdiv = new U.UF.UI.form(
  5044. "数据看板",
  5045. $$("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 }), {
  5046. "id": "dataBoard",
  5047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. _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); } }
  5053. break;
  5054. case "dataBoardSies": //数据融合
  5055. _formdiv = new U.UF.UI.form(
  5056. "数据融合",
  5057. $$("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 }), {
  5058. "id": "dataBoardSies",
  5059. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. _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); } }
  5065. break;
  5066. case "dataBoardNew": //数据看板
  5067. _formdiv = new U.UF.UI.form(
  5068. "综合看板",
  5069. $$("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 }), {
  5070. "id": "dataBoardNew",
  5071. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. _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); } }
  5077. break;
  5078. case "dataBoardTest": //数据看板
  5079. _formdiv = new U.UF.UI.form(
  5080. "评测看板",
  5081. $$("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 }), {
  5082. "id": "dataBoardTest",
  5083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //创建窗体
  5088. _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); } }
  5089. break;
  5090. case "AIAnalyse": //AI共创
  5091. _formdiv = new U.UF.UI.form(
  5092. "AI分析",
  5093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5094. "id": "AIAnalyse",
  5095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5096. "onresize": function () { }
  5097. }, {
  5098. closecallback: function () { }
  5099. }, { "style": { "height": "36px" } }).form; //创建窗体
  5100. _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); } }
  5101. break;
  5102. case "studioCourse": //AI共创
  5103. _formdiv = new U.UF.UI.form(
  5104. "工作管理",
  5105. $$("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 }), {
  5106. "id": "studioCourse",
  5107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5108. "onresize": function () { }
  5109. }, {
  5110. closecallback: function () { }
  5111. }, { "style": { "height": "36px" } }).form; //创建窗体
  5112. _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); } }
  5113. break;
  5114. case "studioIndex": //AI共创
  5115. _formdiv = new U.UF.UI.form(
  5116. "工作中心",
  5117. $$("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 }), {
  5118. "id": "studioIndex",
  5119. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _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); } }
  5125. break;
  5126. case "source":
  5127. _formdiv = new U.UF.UI.form(
  5128. "教学资源",
  5129. $$("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 }), {
  5130. "id": "source",
  5131. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _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); } }
  5137. break;
  5138. case "testTeacher":
  5139. _formdiv = new U.UF.UI.form(
  5140. "教师管理",
  5141. $$("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 }), {
  5142. "id": "testTeacher",
  5143. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _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); } }
  5149. break;
  5150. case "testStudent":
  5151. _formdiv = new U.UF.UI.form(
  5152. "教师中心",
  5153. $$("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 }), {
  5154. "id": "testStudent",
  5155. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _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); } }
  5161. break;
  5162. case "testTeacherSies":
  5163. _formdiv = new U.UF.UI.form(
  5164. "教师管理",
  5165. $$("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 }), {
  5166. "id": "testTeacherSies",
  5167. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _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); } }
  5173. break;
  5174. case "testStudentSies":
  5175. _formdiv = new U.UF.UI.form(
  5176. "教师中心",
  5177. $$("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 }), {
  5178. "id": "testStudentSies",
  5179. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _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); } }
  5185. break;
  5186. case "ytpbl": //消息通知
  5187. _formdiv = new U.UF.UI.form(
  5188. "案例征集",
  5189. $$("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 }), {
  5190. "id": "ytpbl",
  5191. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _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); } }
  5197. // 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");
  5198. break;
  5199. case "aiCourseResource": //人工智能窗体
  5200. _formdiv = new U.UF.UI.form(
  5201. false,
  5202. $$("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 }), {
  5203. "id": "aiCourseResource",
  5204. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5205. "onresize": function () { },
  5206. "isdrag": false,
  5207. }, {
  5208. closecallback: function () { }
  5209. }, { "style": { "height": "36px" } }).form; //创建窗体
  5210. _taskbar = ''
  5211. break;
  5212. case "szdjgCocooroboX": //图形化编程
  5213. _formdiv = new U.UF.UI.form(
  5214. "图形化编程",
  5215. $$("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" }), {
  5216. "id": "szdjgCocooroboX",
  5217. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //创建窗体
  5222. _taskbar = ''
  5223. break;
  5224. case "szdjgPython": //python编程
  5225. _formdiv = new U.UF.UI.form(
  5226. "Python编程",
  5227. $$("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" }), {
  5228. "id": "szdjgPython",
  5229. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _taskbar = ''
  5235. break;
  5236. case "Record":
  5237. _formdiv = new U.UF.UI.form(
  5238. "观察记录",
  5239. $$("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 }), {
  5240. "id": "Record",
  5241. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5242. "onresize": function () { }
  5243. }, {
  5244. closecallback: function () { }
  5245. }, { "style": { "height": "36px" } }).form; //创建窗体
  5246. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5247. break;
  5248. case "aigptCourse":
  5249. _formdiv = new U.UF.UI.form(
  5250. "AI智能体",
  5251. $$("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' }), {
  5252. "id": "aigptCourse",
  5253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5259. break;
  5260. case "classroomObservation":
  5261. _formdiv = new U.UF.UI.form(
  5262. "课堂观察",
  5263. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5264. "id": "classroomObservation",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5271. break;
  5272. }
  5273. //U.MD.D.I.openClick(str);
  5274. //如果有任务栏信息
  5275. if (_taskbar) {
  5276. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5277. }
  5278. }
  5279. // U.MD.D.I.openClick = function(str){
  5280. // var click = '';
  5281. // switch(str){
  5282. // case 'friend':
  5283. // click = '我的好友';
  5284. // break;
  5285. // case 'domain':
  5286. // click = '域名管理';
  5287. // break;
  5288. // case 'disk':
  5289. // click = '我的云盘';
  5290. // break;
  5291. // case 'word':
  5292. // click = 'Word';
  5293. // break;
  5294. // case 'excel':
  5295. // click = 'Execl';
  5296. // break;
  5297. // case 'txt':
  5298. // click = '文本文件';
  5299. // break;
  5300. // case 'lookupFriend':
  5301. // click = '查找好友';
  5302. // break;
  5303. // case 'ftp':
  5304. // click = 'FTP';
  5305. // break;
  5306. // case 'group':
  5307. // click = '群组';
  5308. // break;
  5309. // case 'set':
  5310. // click = '我的设置';
  5311. // break;
  5312. // case 'systemSet':
  5313. // click = '系统设置';
  5314. // break;
  5315. // case 'boomYun':
  5316. // click = '互联办公';
  5317. // break;
  5318. // case 'xz':
  5319. // click = '云端下载';
  5320. // break;
  5321. // case 'client':
  5322. // click = '有思浏览器';
  5323. // break;
  5324. // case 'backEndProgramming':
  5325. // click = '在线后台编程';
  5326. // break;
  5327. // case 'frontEndProgramming':
  5328. // click = '在线前端编程';
  5329. // break;
  5330. // default: break;
  5331. // }
  5332. // if(U.MD.D.I.Ip && click){
  5333. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5334. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5335. // })
  5336. // }
  5337. // }
  5338. /**
  5339. *函数作用:ajax简易函数,使用post格式
  5340. *@param url {data} 后台地址
  5341. *@param data {data} 参数json
  5342. *@param fn {data} 回调函数
  5343. *
  5344. */
  5345. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5346. // var xhr = new XMLHttpRequest();
  5347. // xhr.open("GET",url,true);
  5348. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5349. // xhr.onreadystatechange = function(){
  5350. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5351. // fn.call(this,xhr.responseText);
  5352. // }
  5353. // };
  5354. // xhr.send();
  5355. // }
  5356. /*判断是否是内网IP*/
  5357. // U.MD.D.I.isInnerIPFn = function(str){
  5358. // var curPageUrl = str;
  5359. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5360. // curPageUrl =curPageUrl.replace(reg1,'');
  5361. // // console.log('curPageUrl-1 '+curPageUrl);
  5362. // var reg2 = /\:+/g;//替换冒号为一点
  5363. // curPageUrl =curPageUrl.replace(reg2,'.');
  5364. // // console.log('curPageUrl-2 '+curPageUrl);
  5365. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5366. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5367. // if(curPageUrl[2] != '16'){
  5368. // return ipAddress;
  5369. // }else{
  5370. // return false;
  5371. // }
  5372. // }
  5373. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5374. // //compatibility for firefox and chrome
  5375. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5376. // var pc = new myPeerConnection({
  5377. // iceServers: []
  5378. // }),
  5379. // noop = function() {},
  5380. // localIPs = {},
  5381. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5382. // key;
  5383. // function iterateIP(ip) {
  5384. // if (!localIPs[ip]) onNewIP(ip);
  5385. // localIPs[ip] = true;
  5386. // }
  5387. // //create a bogus data channel
  5388. // pc.createDataChannel("");
  5389. // // create offer and set local description
  5390. // pc.createOffer().then(function(sdp) {
  5391. // sdp.sdp.split('\n').forEach(function(line) {
  5392. // if (line.indexOf('candidate') < 0) return;
  5393. // line.match(ipRegex).forEach(iterateIP);
  5394. // });
  5395. // pc.setLocalDescription(sdp, noop, noop);
  5396. // }).catch(function(reason) {
  5397. // // An error occurred, so handle the failure to connect
  5398. // });
  5399. // //sten for candidate events
  5400. // pc.onicecandidate = function(ice) {
  5401. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5402. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5403. // };
  5404. // }
  5405. // U.MD.D.I.getUserIpBool = function(callback){
  5406. // U.MD.D.I.getUserIP(function(ip){
  5407. // alert("Got IP! :" + ip);
  5408. // });
  5409. //}
  5410. //#endregion
  5411. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5412. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5413. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5414. _userinfo = US.userInfo, //登录用户信息
  5415. _userid = US.userInfo.userid //登录用户id
  5416. let _iframe;
  5417. let _cid = cid,
  5418. _stage = stage,
  5419. _task = task,
  5420. _tool = tool;
  5421. var _jie = $$("div", {
  5422. "style": {
  5423. "position": "absolute",
  5424. "bottom": "50px",
  5425. "right": "50px",
  5426. "zIndex": "9999",
  5427. "backgroundColor": "#2268bc",
  5428. "color": "#fff",
  5429. "padding": "12px 20px",
  5430. "cursor": "pointer",
  5431. "borderRadius": "4px",
  5432. },
  5433. "innerHTML": "提交作业"
  5434. })
  5435. let aTool = ''
  5436. let _loading = document.createElement('div')
  5437. _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;"
  5438. // _loading.id = "";
  5439. let _lchild = document.createElement('div')
  5440. let _limg = document.createElement('img')
  5441. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5442. _limg.style = "width: 26px;margin-right: 10px;"
  5443. _lchild.appendChild(_limg)
  5444. let _lspan = document.createElement('span')
  5445. _lspan.innerHTML = "上传中..."
  5446. _lchild.appendChild(_lspan)
  5447. _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%);"
  5448. _loading.appendChild(_lchild)
  5449. var _box = $$('div', {
  5450. "style": {
  5451. "position": "relative",
  5452. "width": "100%",
  5453. "height": "100%",
  5454. },
  5455. })
  5456. _box.appendChild(_loading)
  5457. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5458. switch (str) {
  5459. case "whiteboard":
  5460. aTool = 1;
  5461. _iframe = $$("iframe", {
  5462. "frameborder": "no",
  5463. "border": "0",
  5464. "scrolling ": "no",
  5465. "style": {
  5466. "cssText": "border:0;width:100%;height:100%"
  5467. },
  5468. "src": "https://beta.iwb.cocorobo.cn/"
  5469. })
  5470. _box.appendChild(_iframe);
  5471. _box.appendChild(_jie);
  5472. _formdiv = new U.UF.UI.form(
  5473. "电子白板",
  5474. _box, {
  5475. "id": "whiteboard" + cid + stage + task + tool,
  5476. "style": {
  5477. "width": "90%",
  5478. "height": "90%",
  5479. "overflow": 'hidden'
  5480. },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, {
  5485. "style": {
  5486. "height": "36px"
  5487. }
  5488. }).form; //创建窗体
  5489. _taskbar = {
  5490. "id": str + _formdiv.id,
  5491. "style": {
  5492. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5493. },
  5494. "name": "电子白板",
  5495. "forms": _formdiv,
  5496. "click": function () {
  5497. U.MD.D.I.openApplication(str, obj, info);
  5498. }
  5499. }
  5500. break;
  5501. case "mind":
  5502. aTool = 3;
  5503. _iframe = $$("iframe", {
  5504. "frameborder": "no",
  5505. "border": "0",
  5506. "scrolling ": "no",
  5507. "style": {
  5508. "cssText": "border:0;width:100%;height:100%"
  5509. },
  5510. "src": "/kityminder-editor/dist/index.html"
  5511. })
  5512. _box.appendChild(_iframe);
  5513. _box.appendChild(_jie);
  5514. _formdiv = new U.UF.UI.form(
  5515. "思维导图",
  5516. _box, { //"/jsmind/example/demo.html"
  5517. "id": "mind" + cid + stage + task + tool,
  5518. "style": {
  5519. "width": "90%",
  5520. "height": "90%",
  5521. "overflow": 'hidden'
  5522. },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, {
  5527. "style": {
  5528. "height": "36px"
  5529. }
  5530. }).form; //创建窗体
  5531. _taskbar = {
  5532. "id": str + _formdiv.id,
  5533. "style": {
  5534. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5535. },
  5536. "name": "思维导图",
  5537. "forms": _formdiv,
  5538. "click": function () {
  5539. U.MD.D.I.openApplication(str, obj, info);
  5540. }
  5541. }
  5542. break;
  5543. case "MindMap":
  5544. aTool = 3;
  5545. _iframe = $$("iframe", {
  5546. "frameborder": "no",
  5547. "border": "0",
  5548. "scrolling ": "no",
  5549. "style": {
  5550. "cssText": "border:0;width:100%;height:100%"
  5551. },
  5552. "src": "//cloud.cocorobo.cn/mind/"
  5553. })
  5554. _box.appendChild(_iframe);
  5555. _box.appendChild(_jie);
  5556. _formdiv = new U.UF.UI.form(
  5557. "思维导图",
  5558. _box, { //"/jsmind/example/demo.html"
  5559. "id": "mind" + cid + stage + task + tool,
  5560. "style": {
  5561. "width": "90%",
  5562. "height": "90%",
  5563. "overflow": 'hidden'
  5564. },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, {
  5569. "style": {
  5570. "height": "36px"
  5571. }
  5572. }).form; //创建窗体
  5573. _taskbar = {
  5574. "id": str + _formdiv.id,
  5575. "style": {
  5576. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5577. },
  5578. "name": "思维导图",
  5579. "forms": _formdiv,
  5580. "click": function () {
  5581. U.MD.D.I.openApplication(str, obj, info);
  5582. }
  5583. }
  5584. break;
  5585. case "doc":
  5586. aTool = 6;
  5587. _iframe = $$("iframe", {
  5588. "frameborder": "no",
  5589. "border": "0",
  5590. "scrolling ": "no",
  5591. "style": {
  5592. "cssText": "border:0;width:100%;height:100%"
  5593. },
  5594. "src": "/Office/Word/WordEditArea.htm"
  5595. })
  5596. _box.appendChild(_iframe);
  5597. _box.appendChild(_jie);
  5598. _formdiv = new U.UF.UI.form(
  5599. "协同文档",
  5600. _box, {
  5601. "id": "doc" + cid + stage + task + tool,
  5602. "style": {
  5603. "width": "90%",
  5604. "height": "90%",
  5605. "overflow": 'hidden'
  5606. },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, {
  5611. "style": {
  5612. "height": "36px"
  5613. }
  5614. }).form; //创建窗体
  5615. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5616. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5617. })
  5618. _taskbar = {
  5619. "id": str + _formdiv.id,
  5620. "style": {
  5621. "backgroundImage": "url(/img/icon/doc.png)"
  5622. },
  5623. "name": "协同文档",
  5624. "forms": _formdiv,
  5625. "click": function () {
  5626. U.MD.D.I.openApplication(str, obj, info);
  5627. }
  5628. }
  5629. break;
  5630. case "mindNetwork": //好友打开
  5631. aTool = 7;
  5632. _iframe = $$("iframe", {
  5633. "webkitallowfullscreen": "",
  5634. "mozallowfullscreen": "",
  5635. "allowfullscreen": "",
  5636. "frameborder": "no",
  5637. "border": "0",
  5638. "scrolling ": "no",
  5639. "style": {
  5640. "cssText": "border:0; width:100%; height:100%;"
  5641. },
  5642. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5643. })
  5644. _box.appendChild(_iframe);
  5645. _box.appendChild(_jie);
  5646. _formdiv = new U.UF.UI.form(
  5647. "思维网格",
  5648. _box, {
  5649. "id": "mindNetwork" + cid + stage + task + tool,
  5650. "style": {
  5651. "width": "90%",
  5652. "height": "90%",
  5653. "overflow": 'hidden'
  5654. },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, {
  5659. "style": {
  5660. "height": "36px"
  5661. }
  5662. }).form; //创建窗体
  5663. _taskbar = {
  5664. "id": str + _formdiv.id,
  5665. "style": {
  5666. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5667. },
  5668. "name": "思维网格",
  5669. "forms": _formdiv,
  5670. "click": function () {
  5671. U.MD.D.I.openApplication(str, obj, info);
  5672. }
  5673. }
  5674. break;
  5675. case "courseDesign":
  5676. _iframe = $$("iframe", {
  5677. "webkitallowfullscreen": "",
  5678. "mozallowfullscreen": "",
  5679. "allowfullscreen": "",
  5680. "frameborder": "no",
  5681. "border": "0",
  5682. "scrolling ": "no",
  5683. "style": {
  5684. "cssText": "border:0; width:100%; height:100%;"
  5685. },
  5686. "src": "/course-design-vue"
  5687. })
  5688. _box.appendChild(_iframe);
  5689. _box.appendChild(_jie);
  5690. _formdiv = new U.UF.UI.form(
  5691. "项目设计",
  5692. _box, {
  5693. "id": "courseDesign" + cid + stage + task + tool,
  5694. "style": {
  5695. "width": "90%",
  5696. "height": "90%",
  5697. "overflow": 'hidden'
  5698. },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, {
  5703. "style": {
  5704. "height": "36px"
  5705. }
  5706. }).form; //创建窗体
  5707. _taskbar = {
  5708. "id": str + _formdiv.id,
  5709. "style": {
  5710. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5711. },
  5712. "name": "项目设计",
  5713. "forms": _formdiv,
  5714. "click": function () {
  5715. U.MD.D.I.openApplication(str, obj, info);
  5716. }
  5717. }
  5718. break;
  5719. }
  5720. const script1 = document.createElement("script");
  5721. script1.type = "text/javascript";
  5722. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5723. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5724. const script2 = document.createElement("script");
  5725. script2.type = "text/javascript";
  5726. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5727. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5728. const script3 = document.createElement("script");
  5729. script3.type = "text/javascript";
  5730. script3.charset = "UTF-8";
  5731. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5732. const script4 = document.createElement("script");
  5733. script4.type = "text/javascript";
  5734. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5735. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5736. if (_iframe) {
  5737. if (str == 'doc') {
  5738. _iframe = _formdiv.querySelector('iframe')
  5739. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5740. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5741. _iframe.contentWindow.document.body.appendChild(script1);
  5742. _iframe.contentWindow.document.body.appendChild(script2);
  5743. // _iframe.contentWindow.document.body.appendChild(script3);
  5744. _iframe.contentWindow.document.body.appendChild(script4);
  5745. })
  5746. if (onloadListener) {
  5747. _iframe.contentDocument.location.reload()
  5748. } else {
  5749. _iframe.contentDocument.location.reload()
  5750. }
  5751. } else if (str == 'courseDesign') {
  5752. U.UF.DL.iframeLoad(_iframe, function () {
  5753. // _iframe.contentWindow.U.MD.O.W.load();
  5754. // _iframe.contentWindow.document.body.appendChild(script1);
  5755. _iframe.contentWindow.document.body.appendChild(script2);
  5756. _iframe.contentWindow.document.body.appendChild(script4);
  5757. })
  5758. } else if (str == 'mind') {
  5759. _iframe = _formdiv.querySelector('iframe')
  5760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5761. //
  5762. _iframe.contentWindow.document.body.appendChild(script1);
  5763. _iframe.contentWindow.document.body.appendChild(script2);
  5764. _iframe.contentWindow.document.body.appendChild(script4);
  5765. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5766. })
  5767. if (onloadListener) {
  5768. _iframe.contentDocument.location.reload()
  5769. } else {
  5770. _iframe.contentDocument.location.reload()
  5771. }
  5772. } else if (str == 'whiteboard') {
  5773. _iframe = _formdiv.querySelector('iframe')
  5774. let onloadListener = _iframe.onload = () => {
  5775. _iframe.contentWindow.document.body.appendChild(script1);
  5776. _iframe.contentWindow.document.body.appendChild(script2);
  5777. _iframe.contentWindow.document.body.appendChild(script4);
  5778. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5779. };
  5780. if (onloadListener) {
  5781. _iframe.contentDocument.location.reload()
  5782. } else {
  5783. _iframe.contentDocument.location.reload()
  5784. }
  5785. } else {
  5786. _iframe.onload = () => {
  5787. _iframe.contentWindow.document.body.appendChild(script1);
  5788. _iframe.contentWindow.document.body.appendChild(script2);
  5789. // _iframe.contentWindow.document.body.appendChild(script3);
  5790. _iframe.contentWindow.document.body.appendChild(script4);
  5791. };
  5792. }
  5793. _jie.onclick = async () => {
  5794. let text = ''
  5795. if (aTool == 1) {
  5796. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5797. } else if (aTool == 6) {
  5798. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5799. } else if (aTool == 3) {
  5800. text = await U.MD.D.I.getEditorContent(_iframe);
  5801. }
  5802. _loading.style.display = 'flex'
  5803. console.log(_loading);
  5804. var _ajs = _iframe.contentWindow.document.createElement("script");
  5805. _ajs.type = "text/javascript";
  5806. _ajs.innerHTML =
  5807. // 'console.log(' + _loading + ');\n' +
  5808. 'var _js = document.createElement("script");\n' +
  5809. '_js.type="text/javascript";\n' +
  5810. '_js.charset="UTF-8";\n' +
  5811. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5812. "_js.onload = function(){\n" +
  5813. ' var a = document.getElementsByTagName("img")\n' +
  5814. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5815. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5816. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5817. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5818. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5819. "beforeUpload_shishi(file," +
  5820. "'" +
  5821. _userid +
  5822. "'" +
  5823. ", " +
  5824. "'" +
  5825. _cid +
  5826. "'" +
  5827. ", " +
  5828. "'" +
  5829. _stage +
  5830. "'" +
  5831. ", " +
  5832. "'" +
  5833. _task +
  5834. "'" +
  5835. ", " +
  5836. "'" +
  5837. _tool +
  5838. "'" +
  5839. ", " +
  5840. "'" +
  5841. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5842. "'" +
  5843. ", " +
  5844. "'" +
  5845. aTool +
  5846. "'" +
  5847. ", " +
  5848. "`" +
  5849. text +
  5850. "`" +
  5851. ")\n" +
  5852. " });\n" +
  5853. "}\n" +
  5854. "document.head.appendChild(_js);\n";
  5855. _iframe.contentWindow.document.head.appendChild(_ajs);
  5856. }
  5857. }
  5858. //U.MD.D.I.openClick(str);
  5859. //如果有任务栏信息
  5860. // if (_taskbar) {
  5861. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5862. // }
  5863. }
  5864. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5865. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5866. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5867. _userinfo = US.userInfo, //登录用户信息
  5868. _userid = US.userInfo.userid //登录用户id
  5869. let _iframe;
  5870. let _cid = cid,
  5871. _stage = stage,
  5872. _task = task,
  5873. _tool = tool;
  5874. var _jie = $$("div", {
  5875. "style": {
  5876. "position": "absolute",
  5877. "bottom": "50px",
  5878. "right": "50px",
  5879. "zIndex": "9999",
  5880. "backgroundColor": "#2268bc",
  5881. "color": "#fff",
  5882. "padding": "12px 20px",
  5883. "cursor": "pointer",
  5884. "borderRadius": "4px",
  5885. },
  5886. "innerHTML": "提交作业"
  5887. })
  5888. let aTool = ''
  5889. let _loading = document.createElement('div')
  5890. _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;"
  5891. // _loading.id = "";
  5892. let _lchild = document.createElement('div')
  5893. let _limg = document.createElement('img')
  5894. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5895. _limg.style = "width: 26px;margin-right: 10px;"
  5896. _lchild.appendChild(_limg)
  5897. let _lspan = document.createElement('span')
  5898. _lspan.innerHTML = "上传中..."
  5899. _lchild.appendChild(_lspan)
  5900. _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%);"
  5901. _loading.appendChild(_lchild)
  5902. var _box = $$('div', {
  5903. "style": {
  5904. "position": "relative",
  5905. "width": "100%",
  5906. "height": "100%",
  5907. },
  5908. })
  5909. _box.appendChild(_loading)
  5910. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5911. switch (str) {
  5912. case "whiteboard":
  5913. aTool = 1;
  5914. _iframe = $$("iframe", {
  5915. "frameborder": "no",
  5916. "border": "0",
  5917. "scrolling ": "no",
  5918. "style": {
  5919. "cssText": "border:0;width:100%;height:100%"
  5920. },
  5921. "src": "https://beta.iwb.cocorobo.cn/"
  5922. })
  5923. _box.appendChild(_iframe);
  5924. _box.appendChild(_jie);
  5925. _formdiv = new U.UF.UI.form(
  5926. "电子白板",
  5927. _box, {
  5928. "id": "whiteboard" + cid + stage + task + tool,
  5929. "style": {
  5930. "width": "90%",
  5931. "height": "90%",
  5932. "overflow": 'hidden'
  5933. },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, {
  5938. "style": {
  5939. "height": "36px"
  5940. }
  5941. }).form; //创建窗体
  5942. _taskbar = {
  5943. "id": str + _formdiv.id,
  5944. "style": {
  5945. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5946. },
  5947. "name": "电子白板",
  5948. "forms": _formdiv,
  5949. "click": function () {
  5950. U.MD.D.I.openApplication(str, obj, info);
  5951. }
  5952. }
  5953. break;
  5954. case "mind":
  5955. aTool = 3;
  5956. _iframe = $$("iframe", {
  5957. "frameborder": "no",
  5958. "border": "0",
  5959. "scrolling ": "no",
  5960. "style": {
  5961. "cssText": "border:0;width:100%;height:100%"
  5962. },
  5963. "src": "/kityminder-editor/dist/index.html"
  5964. })
  5965. _box.appendChild(_iframe);
  5966. _box.appendChild(_jie);
  5967. _formdiv = new U.UF.UI.form(
  5968. "思维导图",
  5969. _box, { //"/jsmind/example/demo.html"
  5970. "id": "mind" + cid + stage + task + tool,
  5971. "style": {
  5972. "width": "90%",
  5973. "height": "90%",
  5974. "overflow": 'hidden'
  5975. },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, {
  5980. "style": {
  5981. "height": "36px"
  5982. }
  5983. }).form; //创建窗体
  5984. _taskbar = {
  5985. "id": str + _formdiv.id,
  5986. "style": {
  5987. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5988. },
  5989. "name": "思维导图",
  5990. "forms": _formdiv,
  5991. "click": function () {
  5992. U.MD.D.I.openApplication(str, obj, info);
  5993. }
  5994. }
  5995. break;
  5996. case "MindMap":
  5997. aTool = 3;
  5998. _iframe = $$("iframe", {
  5999. "frameborder": "no",
  6000. "border": "0",
  6001. "scrolling ": "no",
  6002. "style": {
  6003. "cssText": "border:0;width:100%;height:100%"
  6004. },
  6005. "src": "//cloud.cocorobo.cn/mind/"
  6006. })
  6007. _box.appendChild(_iframe);
  6008. _box.appendChild(_jie);
  6009. _formdiv = new U.UF.UI.form(
  6010. "思维导图",
  6011. _box, { //"/jsmind/example/demo.html"
  6012. "id": "mind" + cid + stage + task + tool,
  6013. "style": {
  6014. "width": "90%",
  6015. "height": "90%",
  6016. "overflow": 'hidden'
  6017. },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, {
  6022. "style": {
  6023. "height": "36px"
  6024. }
  6025. }).form; //创建窗体
  6026. _taskbar = {
  6027. "id": str + _formdiv.id,
  6028. "style": {
  6029. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6030. },
  6031. "name": "思维导图",
  6032. "forms": _formdiv,
  6033. "click": function () {
  6034. U.MD.D.I.openApplication(str, obj, info);
  6035. }
  6036. }
  6037. break;
  6038. case "doc":
  6039. aTool = 6;
  6040. _iframe = $$("iframe", {
  6041. "frameborder": "no",
  6042. "border": "0",
  6043. "scrolling ": "no",
  6044. "style": {
  6045. "cssText": "border:0;width:100%;height:100%"
  6046. },
  6047. "src": "/Office/Word/WordEditArea.htm"
  6048. })
  6049. _box.appendChild(_iframe);
  6050. _box.appendChild(_jie);
  6051. _formdiv = new U.UF.UI.form(
  6052. "协同文档",
  6053. _box, {
  6054. "id": "doc" + cid + stage + task + tool,
  6055. "style": {
  6056. "width": "90%",
  6057. "height": "90%",
  6058. "overflow": 'hidden'
  6059. },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, {
  6064. "style": {
  6065. "height": "36px"
  6066. }
  6067. }).form; //创建窗体
  6068. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6069. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6070. })
  6071. _taskbar = {
  6072. "id": str + _formdiv.id,
  6073. "style": {
  6074. "backgroundImage": "url(/img/icon/doc.png)"
  6075. },
  6076. "name": "协同文档",
  6077. "forms": _formdiv,
  6078. "click": function () {
  6079. U.MD.D.I.openApplication(str, obj, info);
  6080. }
  6081. }
  6082. break;
  6083. case "mindNetwork": //好友打开
  6084. aTool = 7;
  6085. _iframe = $$("iframe", {
  6086. "webkitallowfullscreen": "",
  6087. "mozallowfullscreen": "",
  6088. "allowfullscreen": "",
  6089. "frameborder": "no",
  6090. "border": "0",
  6091. "scrolling ": "no",
  6092. "style": {
  6093. "cssText": "border:0; width:100%; height:100%;"
  6094. },
  6095. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6096. })
  6097. _box.appendChild(_iframe);
  6098. _box.appendChild(_jie);
  6099. _formdiv = new U.UF.UI.form(
  6100. "思维网格",
  6101. _box, {
  6102. "id": "mindNetwork" + cid + stage + task + tool,
  6103. "style": {
  6104. "width": "90%",
  6105. "height": "90%",
  6106. "overflow": 'hidden'
  6107. },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, {
  6112. "style": {
  6113. "height": "36px"
  6114. }
  6115. }).form; //创建窗体
  6116. _taskbar = {
  6117. "id": str + _formdiv.id,
  6118. "style": {
  6119. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6120. },
  6121. "name": "思维网格",
  6122. "forms": _formdiv,
  6123. "click": function () {
  6124. U.MD.D.I.openApplication(str, obj, info);
  6125. }
  6126. }
  6127. break;
  6128. case "courseDesign":
  6129. _iframe = $$("iframe", {
  6130. "webkitallowfullscreen": "",
  6131. "mozallowfullscreen": "",
  6132. "allowfullscreen": "",
  6133. "frameborder": "no",
  6134. "border": "0",
  6135. "scrolling ": "no",
  6136. "style": {
  6137. "cssText": "border:0; width:100%; height:100%;"
  6138. },
  6139. "src": "/course-design-vue"
  6140. })
  6141. _box.appendChild(_iframe);
  6142. _box.appendChild(_jie);
  6143. _formdiv = new U.UF.UI.form(
  6144. "项目设计",
  6145. _box, {
  6146. "id": "courseDesign" + cid + stage + task + tool,
  6147. "style": {
  6148. "width": "90%",
  6149. "height": "90%",
  6150. "overflow": 'hidden'
  6151. },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, {
  6156. "style": {
  6157. "height": "36px"
  6158. }
  6159. }).form; //创建窗体
  6160. _taskbar = {
  6161. "id": str + _formdiv.id,
  6162. "style": {
  6163. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6164. },
  6165. "name": "项目设计",
  6166. "forms": _formdiv,
  6167. "click": function () {
  6168. U.MD.D.I.openApplication(str, obj, info);
  6169. }
  6170. }
  6171. break;
  6172. }
  6173. const script1 = document.createElement("script");
  6174. script1.type = "text/javascript";
  6175. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6176. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6177. const script2 = document.createElement("script");
  6178. script2.type = "text/javascript";
  6179. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6180. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6181. const script3 = document.createElement("script");
  6182. script3.type = "text/javascript";
  6183. script3.charset = "UTF-8";
  6184. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6185. const script4 = document.createElement("script");
  6186. script4.type = "text/javascript";
  6187. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6188. script4.src = window.origin + "/js/Common/jietu2E.js";
  6189. if (_iframe) {
  6190. if (str == 'doc') {
  6191. _iframe = _formdiv.querySelector('iframe')
  6192. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6193. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6194. _iframe.contentWindow.document.body.appendChild(script1);
  6195. _iframe.contentWindow.document.body.appendChild(script2);
  6196. // _iframe.contentWindow.document.body.appendChild(script3);
  6197. _iframe.contentWindow.document.body.appendChild(script4);
  6198. })
  6199. if (onloadListener) {
  6200. _iframe.contentDocument.location.reload()
  6201. } else {
  6202. _iframe.contentDocument.location.reload()
  6203. }
  6204. } else if (str == 'courseDesign') {
  6205. U.UF.DL.iframeLoad(_iframe, function () {
  6206. // _iframe.contentWindow.U.MD.O.W.load();
  6207. // _iframe.contentWindow.document.body.appendChild(script1);
  6208. _iframe.contentWindow.document.body.appendChild(script2);
  6209. _iframe.contentWindow.document.body.appendChild(script4);
  6210. })
  6211. } else if (str == 'mind') {
  6212. _iframe = _formdiv.querySelector('iframe')
  6213. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6214. //
  6215. _iframe.contentWindow.document.body.appendChild(script1);
  6216. _iframe.contentWindow.document.body.appendChild(script2);
  6217. _iframe.contentWindow.document.body.appendChild(script4);
  6218. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6219. })
  6220. if (onloadListener) {
  6221. _iframe.contentDocument.location.reload()
  6222. } else {
  6223. _iframe.contentDocument.location.reload()
  6224. }
  6225. } else if (str == 'whiteboard') {
  6226. _iframe = _formdiv.querySelector('iframe')
  6227. let onloadListener = _iframe.onload = () => {
  6228. _iframe.contentWindow.document.body.appendChild(script1);
  6229. _iframe.contentWindow.document.body.appendChild(script2);
  6230. _iframe.contentWindow.document.body.appendChild(script4);
  6231. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6232. };
  6233. if (onloadListener) {
  6234. _iframe.contentDocument.location.reload()
  6235. } else {
  6236. _iframe.contentDocument.location.reload()
  6237. }
  6238. } else {
  6239. _iframe.onload = () => {
  6240. _iframe.contentWindow.document.body.appendChild(script1);
  6241. _iframe.contentWindow.document.body.appendChild(script2);
  6242. // _iframe.contentWindow.document.body.appendChild(script3);
  6243. _iframe.contentWindow.document.body.appendChild(script4);
  6244. };
  6245. }
  6246. _jie.onclick = async () => {
  6247. let text = ''
  6248. if (aTool == 1) {
  6249. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6250. } else if (aTool == 6) {
  6251. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6252. } else if (aTool == 3) {
  6253. text = await U.MD.D.I.getEditorContent(_iframe);
  6254. }
  6255. _loading.style.display = 'flex'
  6256. console.log(_loading);
  6257. var _ajs = _iframe.contentWindow.document.createElement("script");
  6258. _ajs.type = "text/javascript";
  6259. _ajs.innerHTML =
  6260. // 'console.log(' + _loading + ');\n' +
  6261. 'var _js = document.createElement("script");\n' +
  6262. '_js.type="text/javascript";\n' +
  6263. '_js.charset="UTF-8";\n' +
  6264. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6265. "_js.onload = function(){\n" +
  6266. ' var a = document.getElementsByTagName("img")\n' +
  6267. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6268. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6269. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6270. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6271. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6272. "beforeUpload_shishi(file," +
  6273. "'" +
  6274. _userid +
  6275. "'" +
  6276. ", " +
  6277. "'" +
  6278. _cid +
  6279. "'" +
  6280. ", " +
  6281. "'" +
  6282. _stage +
  6283. "'" +
  6284. ", " +
  6285. "'" +
  6286. _task +
  6287. "'" +
  6288. ", " +
  6289. "'" +
  6290. _tool +
  6291. "'" +
  6292. ", " +
  6293. "'" +
  6294. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6295. "'" +
  6296. ", " +
  6297. "'" +
  6298. aTool +
  6299. "'" +
  6300. ", " +
  6301. "`" +
  6302. text +
  6303. "`" +
  6304. ")\n" +
  6305. " });\n" +
  6306. "}\n" +
  6307. "document.head.appendChild(_js);\n";
  6308. _iframe.contentWindow.document.head.appendChild(_ajs);
  6309. }
  6310. }
  6311. //U.MD.D.I.openClick(str);
  6312. //如果有任务栏信息
  6313. // if (_taskbar) {
  6314. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6315. // }
  6316. }
  6317. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6318. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6319. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6320. _userid = student.userid, //登录用户id
  6321. _username = student.student //用户名字
  6322. let _iframe;
  6323. let _cid = cid,
  6324. _stage = stage,
  6325. _task = task,
  6326. _tool = tool;
  6327. var _jie = $$("div", {
  6328. "style": {
  6329. "position": "absolute",
  6330. "bottom": "50px",
  6331. "right": "50px",
  6332. "zIndex": "9999",
  6333. "backgroundColor": "#2268bc",
  6334. "color": "#fff",
  6335. "padding": "12px 20px",
  6336. "cursor": "pointer",
  6337. "borderRadius": "4px",
  6338. },
  6339. "innerHTML": "提交作业"
  6340. })
  6341. let aTool = ''
  6342. let _loading = document.createElement('div')
  6343. _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;"
  6344. // _loading.id = "";
  6345. let _lchild = document.createElement('div')
  6346. let _limg = document.createElement('img')
  6347. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6348. _limg.style = "width: 26px;margin-right: 10px;"
  6349. _lchild.appendChild(_limg)
  6350. let _lspan = document.createElement('span')
  6351. _lspan.innerHTML = "上传中..."
  6352. _lchild.appendChild(_lspan)
  6353. _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%);"
  6354. _loading.appendChild(_lchild)
  6355. var _box = $$('div', {
  6356. "style": {
  6357. "position": "relative",
  6358. "width": "100%",
  6359. "height": "100%",
  6360. },
  6361. })
  6362. _box.appendChild(_loading)
  6363. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6364. switch (str) {
  6365. case "whiteboard":
  6366. aTool = 1;
  6367. _iframe = $$("iframe", {
  6368. "frameborder": "no",
  6369. "border": "0",
  6370. "scrolling ": "no",
  6371. "style": {
  6372. "cssText": "border:0;width:100%;height:100%"
  6373. },
  6374. "src": "https://beta.iwb.cocorobo.cn/"
  6375. })
  6376. _box.appendChild(_iframe);
  6377. _box.appendChild(_jie);
  6378. _formdiv = new U.UF.UI.form(
  6379. "电子白板-" + _username,
  6380. _box, {
  6381. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6382. "style": {
  6383. "width": "90%",
  6384. "height": "90%",
  6385. "overflow": 'hidden'
  6386. },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, {
  6391. "style": {
  6392. "height": "36px"
  6393. }
  6394. }).form; //创建窗体
  6395. _taskbar = {
  6396. "id": str + _formdiv.id,
  6397. "style": {
  6398. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6399. },
  6400. "name": "电子白板",
  6401. "forms": _formdiv,
  6402. "click": function () {
  6403. U.MD.D.I.openApplication(str, obj, info);
  6404. }
  6405. }
  6406. break;
  6407. case "mind":
  6408. aTool = 3;
  6409. _iframe = $$("iframe", {
  6410. "frameborder": "no",
  6411. "border": "0",
  6412. "scrolling ": "no",
  6413. "style": {
  6414. "cssText": "border:0;width:100%;height:100%"
  6415. },
  6416. "src": "/kityminder-editor/dist/index.html"
  6417. })
  6418. _box.appendChild(_iframe);
  6419. _box.appendChild(_jie);
  6420. _formdiv = new U.UF.UI.form(
  6421. "思维导图-" + _username,
  6422. _box, { //"/jsmind/example/demo.html"
  6423. "id": "mind" + cid + stage + task + tool + _userid,
  6424. "style": {
  6425. "width": "90%",
  6426. "height": "90%",
  6427. "overflow": 'hidden'
  6428. },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, {
  6433. "style": {
  6434. "height": "36px"
  6435. }
  6436. }).form; //创建窗体
  6437. _taskbar = {
  6438. "id": str + _formdiv.id,
  6439. "style": {
  6440. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6441. },
  6442. "name": "思维导图",
  6443. "forms": _formdiv,
  6444. "click": function () {
  6445. U.MD.D.I.openApplication(str, obj, info);
  6446. }
  6447. }
  6448. break;
  6449. case "MindMap":
  6450. aTool = 3;
  6451. _iframe = $$("iframe", {
  6452. "frameborder": "no",
  6453. "border": "0",
  6454. "scrolling ": "no",
  6455. "style": {
  6456. "cssText": "border:0;width:100%;height:100%"
  6457. },
  6458. "src": "//cloud.cocorobo.cn/mind/"
  6459. })
  6460. _box.appendChild(_iframe);
  6461. _box.appendChild(_jie);
  6462. _formdiv = new U.UF.UI.form(
  6463. "思维导图-" + _username,
  6464. _box, { //"/jsmind/example/demo.html"
  6465. "id": "mind" + cid + stage + task + tool + _userid,
  6466. "style": {
  6467. "width": "90%",
  6468. "height": "90%",
  6469. "overflow": 'hidden'
  6470. },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, {
  6475. "style": {
  6476. "height": "36px"
  6477. }
  6478. }).form; //创建窗体
  6479. _taskbar = {
  6480. "id": str + _formdiv.id,
  6481. "style": {
  6482. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6483. },
  6484. "name": "思维导图",
  6485. "forms": _formdiv,
  6486. "click": function () {
  6487. U.MD.D.I.openApplication(str, obj, info);
  6488. }
  6489. }
  6490. break;
  6491. case "doc":
  6492. aTool = 6;
  6493. _iframe = $$("iframe", {
  6494. "frameborder": "no",
  6495. "border": "0",
  6496. "scrolling ": "no",
  6497. "style": {
  6498. "cssText": "border:0;width:100%;height:100%"
  6499. },
  6500. "src": "/Office/Word/WordEditArea.htm"
  6501. })
  6502. _box.appendChild(_iframe);
  6503. _box.appendChild(_jie);
  6504. _formdiv = new U.UF.UI.form(
  6505. "协同文档-" + _username,
  6506. _box, {
  6507. "id": "doc" + cid + stage + task + tool + _userid,
  6508. "style": {
  6509. "width": "90%",
  6510. "height": "90%",
  6511. "overflow": 'hidden'
  6512. },
  6513. "onresize": function () { }
  6514. }, {
  6515. closecallback: function () { }
  6516. }, {
  6517. "style": {
  6518. "height": "36px"
  6519. }
  6520. }).form; //创建窗体
  6521. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6522. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6523. })
  6524. _taskbar = {
  6525. "id": str + _formdiv.id,
  6526. "style": {
  6527. "backgroundImage": "url(/img/icon/doc.png)"
  6528. },
  6529. "name": "协同文档",
  6530. "forms": _formdiv,
  6531. "click": function () {
  6532. U.MD.D.I.openApplication(str, obj, info);
  6533. }
  6534. }
  6535. break;
  6536. case "mindNetwork": //好友打开
  6537. aTool = 7;
  6538. _iframe = $$("iframe", {
  6539. "webkitallowfullscreen": "",
  6540. "mozallowfullscreen": "",
  6541. "allowfullscreen": "",
  6542. "frameborder": "no",
  6543. "border": "0",
  6544. "scrolling ": "no",
  6545. "style": {
  6546. "cssText": "border:0; width:100%; height:100%;"
  6547. },
  6548. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6549. })
  6550. _box.appendChild(_iframe);
  6551. _box.appendChild(_jie);
  6552. _formdiv = new U.UF.UI.form(
  6553. "思维网格-" + _username,
  6554. _box, {
  6555. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6556. "style": {
  6557. "width": "90%",
  6558. "height": "90%",
  6559. "overflow": 'hidden'
  6560. },
  6561. "onresize": function () { }
  6562. }, {
  6563. closecallback: function () { }
  6564. }, {
  6565. "style": {
  6566. "height": "36px"
  6567. }
  6568. }).form; //创建窗体
  6569. _taskbar = {
  6570. "id": str + _formdiv.id,
  6571. "style": {
  6572. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6573. },
  6574. "name": "思维网格",
  6575. "forms": _formdiv,
  6576. "click": function () {
  6577. U.MD.D.I.openApplication(str, obj, info);
  6578. }
  6579. }
  6580. break;
  6581. case "courseDesign":
  6582. _iframe = $$("iframe", {
  6583. "webkitallowfullscreen": "",
  6584. "mozallowfullscreen": "",
  6585. "allowfullscreen": "",
  6586. "frameborder": "no",
  6587. "border": "0",
  6588. "scrolling ": "no",
  6589. "style": {
  6590. "cssText": "border:0; width:100%; height:100%;"
  6591. },
  6592. "src": "/course-design-vue"
  6593. })
  6594. _box.appendChild(_iframe);
  6595. _box.appendChild(_jie);
  6596. _formdiv = new U.UF.UI.form(
  6597. "项目设计-" + _username,
  6598. _box, {
  6599. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6600. "style": {
  6601. "width": "90%",
  6602. "height": "90%",
  6603. "overflow": 'hidden'
  6604. },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, {
  6609. "style": {
  6610. "height": "36px"
  6611. }
  6612. }).form; //创建窗体
  6613. _taskbar = {
  6614. "id": str + _formdiv.id,
  6615. "style": {
  6616. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6617. },
  6618. "name": "项目设计",
  6619. "forms": _formdiv,
  6620. "click": function () {
  6621. U.MD.D.I.openApplication(str, obj, info);
  6622. }
  6623. }
  6624. break;
  6625. }
  6626. const script1 = document.createElement("script");
  6627. script1.type = "text/javascript";
  6628. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6629. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6630. const script2 = document.createElement("script");
  6631. script2.type = "text/javascript";
  6632. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6633. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6634. const script3 = document.createElement("script");
  6635. script3.type = "text/javascript";
  6636. script3.charset = "UTF-8";
  6637. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6638. const script4 = document.createElement("script");
  6639. script4.type = "text/javascript";
  6640. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6641. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6642. if (_iframe) {
  6643. if (str == 'doc') {
  6644. _iframe = _formdiv.querySelector('iframe')
  6645. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6646. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6647. _iframe.contentWindow.document.body.appendChild(script1);
  6648. _iframe.contentWindow.document.body.appendChild(script2);
  6649. // _iframe.contentWindow.document.body.appendChild(script3);
  6650. _iframe.contentWindow.document.body.appendChild(script4);
  6651. })
  6652. if (onloadListener) {
  6653. _iframe.contentDocument.location.reload()
  6654. } else {
  6655. _iframe.contentDocument.location.reload()
  6656. }
  6657. } else if (str == 'courseDesign') {
  6658. U.UF.DL.iframeLoad(_iframe, function () {
  6659. // _iframe.contentWindow.U.MD.O.W.load();
  6660. // _iframe.contentWindow.document.body.appendChild(script1);
  6661. _iframe.contentWindow.document.body.appendChild(script2);
  6662. _iframe.contentWindow.document.body.appendChild(script4);
  6663. })
  6664. } else if (str == 'mind') {
  6665. _iframe = _formdiv.querySelector('iframe')
  6666. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6667. //
  6668. _iframe.contentWindow.document.body.appendChild(script1);
  6669. _iframe.contentWindow.document.body.appendChild(script2);
  6670. _iframe.contentWindow.document.body.appendChild(script4);
  6671. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6672. })
  6673. if (onloadListener) {
  6674. _iframe.contentDocument.location.reload()
  6675. } else {
  6676. _iframe.contentDocument.location.reload()
  6677. }
  6678. } else if (str == 'whiteboard') {
  6679. _iframe = _formdiv.querySelector('iframe')
  6680. let onloadListener = _iframe.onload = () => {
  6681. _iframe.contentWindow.document.body.appendChild(script1);
  6682. _iframe.contentWindow.document.body.appendChild(script2);
  6683. _iframe.contentWindow.document.body.appendChild(script4);
  6684. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6685. };
  6686. if (onloadListener) {
  6687. _iframe.contentDocument.location.reload()
  6688. } else {
  6689. _iframe.contentDocument.location.reload()
  6690. }
  6691. } else {
  6692. _iframe.onload = () => {
  6693. _iframe.contentWindow.document.body.appendChild(script1);
  6694. _iframe.contentWindow.document.body.appendChild(script2);
  6695. // _iframe.contentWindow.document.body.appendChild(script3);
  6696. _iframe.contentWindow.document.body.appendChild(script4);
  6697. };
  6698. }
  6699. _jie.onclick = async () => {
  6700. let text = ''
  6701. if (aTool == 1) {
  6702. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6703. } else if (aTool == 6) {
  6704. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6705. } else if (aTool == 3) {
  6706. text = await U.MD.D.I.getEditorContent(_iframe);
  6707. }
  6708. _loading.style.display = 'flex'
  6709. console.log(_loading);
  6710. var _ajs = _iframe.contentWindow.document.createElement("script");
  6711. _ajs.type = "text/javascript";
  6712. _ajs.innerHTML =
  6713. // 'console.log(' + _loading + ');\n' +
  6714. 'var _js = document.createElement("script");\n' +
  6715. '_js.type="text/javascript";\n' +
  6716. '_js.charset="UTF-8";\n' +
  6717. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6718. "_js.onload = function(){\n" +
  6719. ' var a = document.getElementsByTagName("img")\n' +
  6720. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6721. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6722. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6723. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6724. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6725. "beforeUpload_shishi(file," +
  6726. "'" +
  6727. _userid +
  6728. "'" +
  6729. ", " +
  6730. "'" +
  6731. _cid +
  6732. "'" +
  6733. ", " +
  6734. "'" +
  6735. _stage +
  6736. "'" +
  6737. ", " +
  6738. "'" +
  6739. _task +
  6740. "'" +
  6741. ", " +
  6742. "'" +
  6743. _tool +
  6744. "'" +
  6745. ", " +
  6746. "'" +
  6747. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6748. "'" +
  6749. ", " +
  6750. "'" +
  6751. aTool +
  6752. "'" +
  6753. ", " +
  6754. "`" +
  6755. text +
  6756. "`" +
  6757. ")\n" +
  6758. " });\n" +
  6759. "}\n" +
  6760. "document.head.appendChild(_js);\n";
  6761. _iframe.contentWindow.document.head.appendChild(_ajs);
  6762. }
  6763. }
  6764. }
  6765. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6766. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6767. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6768. _userid = student.userid, //登录用户id
  6769. _username = student.student //用户名字
  6770. let _iframe;
  6771. let _cid = cid,
  6772. _stage = stage,
  6773. _task = task,
  6774. _tool = tool;
  6775. var _jie = $$("div", {
  6776. "style": {
  6777. "position": "absolute",
  6778. "bottom": "50px",
  6779. "right": "50px",
  6780. "zIndex": "9999",
  6781. "backgroundColor": "#2268bc",
  6782. "color": "#fff",
  6783. "padding": "12px 20px",
  6784. "cursor": "pointer",
  6785. "borderRadius": "4px",
  6786. },
  6787. "innerHTML": "提交作业"
  6788. })
  6789. let aTool = ''
  6790. let _loading = document.createElement('div')
  6791. _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;"
  6792. // _loading.id = "";
  6793. let _lchild = document.createElement('div')
  6794. let _limg = document.createElement('img')
  6795. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6796. _limg.style = "width: 26px;margin-right: 10px;"
  6797. _lchild.appendChild(_limg)
  6798. let _lspan = document.createElement('span')
  6799. _lspan.innerHTML = "上传中..."
  6800. _lchild.appendChild(_lspan)
  6801. _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%);"
  6802. _loading.appendChild(_lchild)
  6803. var _box = $$('div', {
  6804. "style": {
  6805. "position": "relative",
  6806. "width": "100%",
  6807. "height": "100%",
  6808. },
  6809. })
  6810. _box.appendChild(_loading)
  6811. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6812. switch (str) {
  6813. case "whiteboard":
  6814. aTool = 1;
  6815. _iframe = $$("iframe", {
  6816. "frameborder": "no",
  6817. "border": "0",
  6818. "scrolling ": "no",
  6819. "style": {
  6820. "cssText": "border:0;width:100%;height:100%"
  6821. },
  6822. "src": "https://beta.iwb.cocorobo.cn/"
  6823. })
  6824. _box.appendChild(_iframe);
  6825. _box.appendChild(_jie);
  6826. _formdiv = new U.UF.UI.form(
  6827. "电子白板-" + _username,
  6828. _box, {
  6829. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6830. "style": {
  6831. "width": "90%",
  6832. "height": "90%",
  6833. "overflow": 'hidden'
  6834. },
  6835. "onresize": function () { }
  6836. }, {
  6837. closecallback: function () { }
  6838. }, {
  6839. "style": {
  6840. "height": "36px"
  6841. }
  6842. }).form; //创建窗体
  6843. _taskbar = {
  6844. "id": str + _formdiv.id,
  6845. "style": {
  6846. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6847. },
  6848. "name": "电子白板",
  6849. "forms": _formdiv,
  6850. "click": function () {
  6851. U.MD.D.I.openApplication(str, obj, info);
  6852. }
  6853. }
  6854. break;
  6855. case "mind":
  6856. aTool = 3;
  6857. _iframe = $$("iframe", {
  6858. "frameborder": "no",
  6859. "border": "0",
  6860. "scrolling ": "no",
  6861. "style": {
  6862. "cssText": "border:0;width:100%;height:100%"
  6863. },
  6864. "src": "/kityminder-editor/dist/index.html"
  6865. })
  6866. _box.appendChild(_iframe);
  6867. _box.appendChild(_jie);
  6868. _formdiv = new U.UF.UI.form(
  6869. "思维导图-" + _username,
  6870. _box, { //"/jsmind/example/demo.html"
  6871. "id": "mind" + cid + stage + task + tool + _userid,
  6872. "style": {
  6873. "width": "90%",
  6874. "height": "90%",
  6875. "overflow": 'hidden'
  6876. },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, {
  6881. "style": {
  6882. "height": "36px"
  6883. }
  6884. }).form; //创建窗体
  6885. _taskbar = {
  6886. "id": str + _formdiv.id,
  6887. "style": {
  6888. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6889. },
  6890. "name": "思维导图",
  6891. "forms": _formdiv,
  6892. "click": function () {
  6893. U.MD.D.I.openApplication(str, obj, info);
  6894. }
  6895. }
  6896. break;
  6897. case "MindMap":
  6898. aTool = 3;
  6899. _iframe = $$("iframe", {
  6900. "frameborder": "no",
  6901. "border": "0",
  6902. "scrolling ": "no",
  6903. "style": {
  6904. "cssText": "border:0;width:100%;height:100%"
  6905. },
  6906. "src": "//cloud.cocorobo.cn/mind/"
  6907. })
  6908. _box.appendChild(_iframe);
  6909. _box.appendChild(_jie);
  6910. _formdiv = new U.UF.UI.form(
  6911. "思维导图-" + _username,
  6912. _box, { //"/jsmind/example/demo.html"
  6913. "id": "mind" + cid + stage + task + tool + _userid,
  6914. "style": {
  6915. "width": "90%",
  6916. "height": "90%",
  6917. "overflow": 'hidden'
  6918. },
  6919. "onresize": function () { }
  6920. }, {
  6921. closecallback: function () { }
  6922. }, {
  6923. "style": {
  6924. "height": "36px"
  6925. }
  6926. }).form; //创建窗体
  6927. _taskbar = {
  6928. "id": str + _formdiv.id,
  6929. "style": {
  6930. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6931. },
  6932. "name": "思维导图",
  6933. "forms": _formdiv,
  6934. "click": function () {
  6935. U.MD.D.I.openApplication(str, obj, info);
  6936. }
  6937. }
  6938. break;
  6939. case "doc":
  6940. aTool = 6;
  6941. _iframe = $$("iframe", {
  6942. "frameborder": "no",
  6943. "border": "0",
  6944. "scrolling ": "no",
  6945. "style": {
  6946. "cssText": "border:0;width:100%;height:100%"
  6947. },
  6948. "src": "/Office/Word/WordEditArea.htm"
  6949. })
  6950. _box.appendChild(_iframe);
  6951. _box.appendChild(_jie);
  6952. _formdiv = new U.UF.UI.form(
  6953. "协同文档-" + _username,
  6954. _box, {
  6955. "id": "doc" + cid + stage + task + tool + _userid,
  6956. "style": {
  6957. "width": "90%",
  6958. "height": "90%",
  6959. "overflow": 'hidden'
  6960. },
  6961. "onresize": function () { }
  6962. }, {
  6963. closecallback: function () { }
  6964. }, {
  6965. "style": {
  6966. "height": "36px"
  6967. }
  6968. }).form; //创建窗体
  6969. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6970. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6971. })
  6972. _taskbar = {
  6973. "id": str + _formdiv.id,
  6974. "style": {
  6975. "backgroundImage": "url(/img/icon/doc.png)"
  6976. },
  6977. "name": "协同文档",
  6978. "forms": _formdiv,
  6979. "click": function () {
  6980. U.MD.D.I.openApplication(str, obj, info);
  6981. }
  6982. }
  6983. break;
  6984. case "mindNetwork": //好友打开
  6985. aTool = 7;
  6986. _iframe = $$("iframe", {
  6987. "webkitallowfullscreen": "",
  6988. "mozallowfullscreen": "",
  6989. "allowfullscreen": "",
  6990. "frameborder": "no",
  6991. "border": "0",
  6992. "scrolling ": "no",
  6993. "style": {
  6994. "cssText": "border:0; width:100%; height:100%;"
  6995. },
  6996. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6997. })
  6998. _box.appendChild(_iframe);
  6999. _box.appendChild(_jie);
  7000. _formdiv = new U.UF.UI.form(
  7001. "思维网格-" + _username,
  7002. _box, {
  7003. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7004. "style": {
  7005. "width": "90%",
  7006. "height": "90%",
  7007. "overflow": 'hidden'
  7008. },
  7009. "onresize": function () { }
  7010. }, {
  7011. closecallback: function () { }
  7012. }, {
  7013. "style": {
  7014. "height": "36px"
  7015. }
  7016. }).form; //创建窗体
  7017. _taskbar = {
  7018. "id": str + _formdiv.id,
  7019. "style": {
  7020. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7021. },
  7022. "name": "思维网格",
  7023. "forms": _formdiv,
  7024. "click": function () {
  7025. U.MD.D.I.openApplication(str, obj, info);
  7026. }
  7027. }
  7028. break;
  7029. case "courseDesign":
  7030. _iframe = $$("iframe", {
  7031. "webkitallowfullscreen": "",
  7032. "mozallowfullscreen": "",
  7033. "allowfullscreen": "",
  7034. "frameborder": "no",
  7035. "border": "0",
  7036. "scrolling ": "no",
  7037. "style": {
  7038. "cssText": "border:0; width:100%; height:100%;"
  7039. },
  7040. "src": "/course-design-vue"
  7041. })
  7042. _box.appendChild(_iframe);
  7043. _box.appendChild(_jie);
  7044. _formdiv = new U.UF.UI.form(
  7045. "项目设计-" + _username,
  7046. _box, {
  7047. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7048. "style": {
  7049. "width": "90%",
  7050. "height": "90%",
  7051. "overflow": 'hidden'
  7052. },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, {
  7057. "style": {
  7058. "height": "36px"
  7059. }
  7060. }).form; //创建窗体
  7061. _taskbar = {
  7062. "id": str + _formdiv.id,
  7063. "style": {
  7064. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7065. },
  7066. "name": "项目设计",
  7067. "forms": _formdiv,
  7068. "click": function () {
  7069. U.MD.D.I.openApplication(str, obj, info);
  7070. }
  7071. }
  7072. break;
  7073. }
  7074. const script1 = document.createElement("script");
  7075. script1.type = "text/javascript";
  7076. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7077. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7078. const script2 = document.createElement("script");
  7079. script2.type = "text/javascript";
  7080. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7081. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7082. const script3 = document.createElement("script");
  7083. script3.type = "text/javascript";
  7084. script3.charset = "UTF-8";
  7085. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7086. const script4 = document.createElement("script");
  7087. script4.type = "text/javascript";
  7088. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7089. script4.src = window.origin + "/js/Common/jietu2E.js";
  7090. if (_iframe) {
  7091. if (str == 'doc') {
  7092. _iframe = _formdiv.querySelector('iframe')
  7093. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7094. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7095. _iframe.contentWindow.document.body.appendChild(script1);
  7096. _iframe.contentWindow.document.body.appendChild(script2);
  7097. // _iframe.contentWindow.document.body.appendChild(script3);
  7098. _iframe.contentWindow.document.body.appendChild(script4);
  7099. })
  7100. if (onloadListener) {
  7101. _iframe.contentDocument.location.reload()
  7102. } else {
  7103. _iframe.contentDocument.location.reload()
  7104. }
  7105. } else if (str == 'courseDesign') {
  7106. U.UF.DL.iframeLoad(_iframe, function () {
  7107. // _iframe.contentWindow.U.MD.O.W.load();
  7108. // _iframe.contentWindow.document.body.appendChild(script1);
  7109. _iframe.contentWindow.document.body.appendChild(script2);
  7110. _iframe.contentWindow.document.body.appendChild(script4);
  7111. })
  7112. } else if (str == 'mind') {
  7113. _iframe = _formdiv.querySelector('iframe')
  7114. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7115. //
  7116. _iframe.contentWindow.document.body.appendChild(script1);
  7117. _iframe.contentWindow.document.body.appendChild(script2);
  7118. _iframe.contentWindow.document.body.appendChild(script4);
  7119. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7120. })
  7121. if (onloadListener) {
  7122. _iframe.contentDocument.location.reload()
  7123. } else {
  7124. _iframe.contentDocument.location.reload()
  7125. }
  7126. } else if (str == 'whiteboard') {
  7127. _iframe = _formdiv.querySelector('iframe')
  7128. let onloadListener = _iframe.onload = () => {
  7129. _iframe.contentWindow.document.body.appendChild(script1);
  7130. _iframe.contentWindow.document.body.appendChild(script2);
  7131. _iframe.contentWindow.document.body.appendChild(script4);
  7132. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7133. };
  7134. if (onloadListener) {
  7135. _iframe.contentDocument.location.reload()
  7136. } else {
  7137. _iframe.contentDocument.location.reload()
  7138. }
  7139. } else {
  7140. _iframe.onload = () => {
  7141. _iframe.contentWindow.document.body.appendChild(script1);
  7142. _iframe.contentWindow.document.body.appendChild(script2);
  7143. // _iframe.contentWindow.document.body.appendChild(script3);
  7144. _iframe.contentWindow.document.body.appendChild(script4);
  7145. };
  7146. }
  7147. _jie.onclick = async () => {
  7148. let text = ''
  7149. if (aTool == 1) {
  7150. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7151. } else if (aTool == 6) {
  7152. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7153. } else if (aTool == 3) {
  7154. text = await U.MD.D.I.getEditorContent(_iframe);
  7155. }
  7156. _loading.style.display = 'flex'
  7157. console.log(_loading);
  7158. var _ajs = _iframe.contentWindow.document.createElement("script");
  7159. _ajs.type = "text/javascript";
  7160. _ajs.innerHTML =
  7161. // 'console.log(' + _loading + ');\n' +
  7162. 'var _js = document.createElement("script");\n' +
  7163. '_js.type="text/javascript";\n' +
  7164. '_js.charset="UTF-8";\n' +
  7165. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7166. "_js.onload = function(){\n" +
  7167. ' var a = document.getElementsByTagName("img")\n' +
  7168. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7169. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7170. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7171. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7172. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7173. "beforeUpload_shishi(file," +
  7174. "'" +
  7175. _userid +
  7176. "'" +
  7177. ", " +
  7178. "'" +
  7179. _cid +
  7180. "'" +
  7181. ", " +
  7182. "'" +
  7183. _stage +
  7184. "'" +
  7185. ", " +
  7186. "'" +
  7187. _task +
  7188. "'" +
  7189. ", " +
  7190. "'" +
  7191. _tool +
  7192. "'" +
  7193. ", " +
  7194. "'" +
  7195. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7196. "'" +
  7197. ", " +
  7198. "'" +
  7199. aTool +
  7200. "'" +
  7201. ", " +
  7202. "`" +
  7203. text +
  7204. "`" +
  7205. ")\n" +
  7206. " });\n" +
  7207. "}\n" +
  7208. "document.head.appendChild(_js);\n";
  7209. _iframe.contentWindow.document.head.appendChild(_ajs);
  7210. }
  7211. }
  7212. }
  7213. U.MD.D.I.getEditorContent = function (iframe) {
  7214. return new Promise((resolve, reject) => {
  7215. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7216. console.log(content);
  7217. resolve(content)
  7218. });
  7219. });
  7220. }
  7221. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7222. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7223. // if (res.value[0].length > 0) {
  7224. // // resolve(res.value[0][0].text);
  7225. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7226. // $(fileInput).val('');
  7227. // });
  7228. // }
  7229. // }, [], { "type": "GET", "withCredentials": true });
  7230. var xmlhttp;
  7231. var Mac, Sn, DeviceId
  7232. if (window.XMLHttpRequest) {
  7233. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7234. xmlhttp = new XMLHttpRequest();
  7235. } else {
  7236. // IE6, IE5 浏览器执行代码
  7237. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7238. }
  7239. xmlhttp.onreadystatechange = function () {
  7240. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7241. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7242. // resolve(res.value[0][0].text);
  7243. if (type == '2') {
  7244. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7245. } else if (type == '3') {
  7246. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7247. }
  7248. } else {
  7249. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7250. }
  7251. }
  7252. }
  7253. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7254. xmlhttp.send();
  7255. }
  7256. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7257. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7258. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7259. _userinfo = US.userInfo, //登录用户信息
  7260. _userid = US.userInfo.userid //登录用户id
  7261. let _iframe;
  7262. let _cid = cid,
  7263. _stage = stage,
  7264. _task = task,
  7265. _tool = tool;
  7266. var _jie = $$("div", {
  7267. "style": {
  7268. "position": "absolute",
  7269. "bottom": "50px",
  7270. "right": "50px",
  7271. "zIndex": "9999",
  7272. "backgroundColor": "#2268bc",
  7273. "color": "#fff",
  7274. "padding": "12px 20px",
  7275. "cursor": "pointer",
  7276. "borderRadius": "4px",
  7277. },
  7278. "innerHTML": "确认并提交"
  7279. })
  7280. let aTool = ''
  7281. let _loading = document.createElement('div')
  7282. _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;"
  7283. // _loading.id = "";
  7284. let _lchild = document.createElement('div')
  7285. let _limg = document.createElement('img')
  7286. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7287. _limg.style = "width: 26px;margin-right: 10px;"
  7288. _lchild.appendChild(_limg)
  7289. let _lspan = document.createElement('span')
  7290. _lspan.innerHTML = "上传中..."
  7291. _lchild.appendChild(_lspan)
  7292. _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%);"
  7293. _loading.appendChild(_lchild)
  7294. var _box = $$('div', {
  7295. "style": {
  7296. "position": "relative",
  7297. "width": "100%",
  7298. "height": "100%",
  7299. },
  7300. })
  7301. _box.appendChild(_loading)
  7302. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7303. switch (str) {
  7304. case "whiteboard":
  7305. aTool = 1;
  7306. _iframe = $$("iframe", {
  7307. "frameborder": "no",
  7308. "border": "0",
  7309. "scrolling ": "no",
  7310. "style": {
  7311. "cssText": "border:0;width:100%;height:100%"
  7312. },
  7313. "src": "https://beta.iwb.cocorobo.cn/"
  7314. })
  7315. _box.appendChild(_iframe);
  7316. _box.appendChild(_jie);
  7317. _formdiv = new U.UF.UI.form(
  7318. "电子白板",
  7319. _box, {
  7320. "id": "whiteboards" + cid + stage + task + tool,
  7321. "style": {
  7322. "width": "90%",
  7323. "height": "90%",
  7324. "overflow": 'hidden'
  7325. },
  7326. "onresize": function () { }
  7327. }, {
  7328. closecallback: function () { }
  7329. }, {
  7330. "style": {
  7331. "height": "36px"
  7332. }
  7333. }).form; //创建窗体
  7334. _taskbar = {
  7335. "id": str + _formdiv.id,
  7336. "style": {
  7337. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7338. },
  7339. "name": "电子白板",
  7340. "forms": _formdiv,
  7341. "click": function () {
  7342. U.MD.D.I.openApplication(str, obj, info);
  7343. }
  7344. }
  7345. break;
  7346. case "mind":
  7347. aTool = 3;
  7348. _iframe = $$("iframe", {
  7349. "frameborder": "no",
  7350. "border": "0",
  7351. "scrolling ": "no",
  7352. "style": {
  7353. "cssText": "border:0;width:100%;height:100%"
  7354. },
  7355. "src": "/kityminder-editor/dist/index.html"
  7356. });
  7357. _box.appendChild(_iframe);
  7358. _box.appendChild(_jie);
  7359. _formdiv = new U.UF.UI.form(
  7360. "思维导图",
  7361. _box, { //"/jsmind/example/demo.html"
  7362. "id": "minds" + cid + stage + task + tool,
  7363. "style": {
  7364. "width": "90%",
  7365. "height": "90%",
  7366. "overflow": 'hidden'
  7367. },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, {
  7372. "style": {
  7373. "height": "36px"
  7374. }
  7375. }).form; //创建窗体
  7376. _taskbar = {
  7377. "id": str + _formdiv.id,
  7378. "style": {
  7379. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7380. },
  7381. "name": "思维导图",
  7382. "forms": _formdiv,
  7383. "click": function () {
  7384. U.MD.D.I.openApplication(str, obj, info);
  7385. }
  7386. }
  7387. break;
  7388. case "doc":
  7389. aTool = 6;
  7390. _iframe = $$("iframe", {
  7391. "frameborder": "no",
  7392. "border": "0",
  7393. "scrolling ": "no",
  7394. "style": {
  7395. "cssText": "border:0;width:100%;height:100%"
  7396. },
  7397. "src": "/Office/Word/WordEditArea.htm"
  7398. })
  7399. _box.appendChild(_iframe);
  7400. _box.appendChild(_jie);
  7401. _formdiv = new U.UF.UI.form(
  7402. "协同文档",
  7403. _box, {
  7404. "id": "docs" + cid + stage + task + tool,
  7405. "style": {
  7406. "width": "90%",
  7407. "height": "90%",
  7408. "overflow": 'hidden'
  7409. },
  7410. "onresize": function () { }
  7411. }, {
  7412. closecallback: function () { }
  7413. }, {
  7414. "style": {
  7415. "height": "36px"
  7416. }
  7417. }).form; //创建窗体
  7418. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7419. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7420. })
  7421. _taskbar = {
  7422. "id": str + _formdiv.id,
  7423. "style": {
  7424. "backgroundImage": "url(/img/icon/doc.png)"
  7425. },
  7426. "name": "协同文档",
  7427. "forms": _formdiv,
  7428. "click": function () {
  7429. U.MD.D.I.openApplication(str, obj, info);
  7430. }
  7431. }
  7432. break;
  7433. }
  7434. const script1 = document.createElement("script");
  7435. script1.type = "text/javascript";
  7436. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7437. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7438. const script2 = document.createElement("script");
  7439. script2.type = "text/javascript";
  7440. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7441. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7442. const script3 = document.createElement("script");
  7443. script3.type = "text/javascript";
  7444. script3.charset = "UTF-8";
  7445. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7446. const script4 = document.createElement("script");
  7447. script4.type = "text/javascript";
  7448. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7449. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7450. if (_iframe) {
  7451. if (str == 'doc') {
  7452. _iframe = _formdiv.querySelector('iframe')
  7453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7454. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7455. _iframe.contentWindow.document.body.appendChild(script1);
  7456. _iframe.contentWindow.document.body.appendChild(script2);
  7457. // _iframe.contentWindow.document.body.appendChild(script3);
  7458. _iframe.contentWindow.document.body.appendChild(script4);
  7459. })
  7460. if (onloadListener) {
  7461. _iframe.contentDocument.location.reload()
  7462. } else {
  7463. _iframe.contentDocument.location.reload()
  7464. }
  7465. } else if (str == 'mind') {
  7466. _iframe = _formdiv.querySelector('iframe')
  7467. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7468. _iframe.contentWindow.document.body.appendChild(script1);
  7469. _iframe.contentWindow.document.body.appendChild(script2);
  7470. _iframe.contentWindow.document.body.appendChild(script4);
  7471. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7472. })
  7473. if (onloadListener) {
  7474. _iframe.contentDocument.location.reload()
  7475. } else {
  7476. _iframe.contentDocument.location.reload()
  7477. }
  7478. } else {
  7479. _iframe.onload = () => {
  7480. _iframe.contentWindow.document.body.appendChild(script1);
  7481. _iframe.contentWindow.document.body.appendChild(script2);
  7482. // _iframe.contentWindow.document.body.appendChild(script3);
  7483. _iframe.contentWindow.document.body.appendChild(script4);
  7484. };
  7485. }
  7486. _jie.onclick = async () => {
  7487. let text = ''
  7488. if (aTool == 6) {
  7489. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7490. } else if (aTool == 3) {
  7491. text = await U.MD.D.I.getEditorContent(_iframe);
  7492. }
  7493. _loading.style.display = 'flex'
  7494. console.log(_loading);
  7495. var _ajs = _iframe.contentWindow.document.createElement("script");
  7496. _ajs.type = "text/javascript";
  7497. _ajs.innerHTML =
  7498. // 'console.log(' + _loading + ');\n' +
  7499. 'var _js = document.createElement("script");\n' +
  7500. '_js.type="text/javascript";\n' +
  7501. '_js.charset="UTF-8";\n' +
  7502. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7503. "_js.onload = function(){\n" +
  7504. ' var a = document.getElementsByTagName("img")\n' +
  7505. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7506. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7507. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7508. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7509. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7510. "beforeUpload_shishi(file," +
  7511. "'" +
  7512. _userid +
  7513. "'" +
  7514. ", " +
  7515. "'" +
  7516. _cid +
  7517. "'" +
  7518. ", " +
  7519. "'" +
  7520. _stage +
  7521. "'" +
  7522. ", " +
  7523. "'" +
  7524. _task +
  7525. "'" +
  7526. ", " +
  7527. "'" +
  7528. _tool +
  7529. "'" +
  7530. ", " +
  7531. "'" +
  7532. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7533. "'" +
  7534. ", " +
  7535. "'" +
  7536. aTool +
  7537. "'" +
  7538. ", " +
  7539. "`" +
  7540. text +
  7541. "`" +
  7542. ")\n" +
  7543. " });\n" +
  7544. "}\n" +
  7545. "document.head.appendChild(_js);\n";
  7546. _iframe.contentWindow.document.head.appendChild(_ajs);
  7547. }
  7548. }
  7549. //U.MD.D.I.openClick(str);
  7550. //如果有任务栏信息
  7551. // if (_taskbar) {
  7552. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7553. // }
  7554. }
  7555. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7556. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7557. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7558. _userinfo = US.userInfo, //登录用户信息
  7559. _userid = US.userInfo.userid //登录用户id
  7560. let _iframe;
  7561. let _cid = cid,
  7562. _stage = stage,
  7563. _task = task,
  7564. _tool = tool;
  7565. var _jie = $$("div", {
  7566. "style": {
  7567. "position": "absolute",
  7568. "bottom": "50px",
  7569. "right": "50px",
  7570. "zIndex": "9999",
  7571. "backgroundColor": "#2268bc",
  7572. "color": "#fff",
  7573. "padding": "12px 20px",
  7574. "cursor": "pointer",
  7575. "borderRadius": "4px",
  7576. },
  7577. "innerHTML": "确认并提交"
  7578. })
  7579. let aTool = ''
  7580. let _loading = document.createElement('div')
  7581. _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;"
  7582. // _loading.id = "";
  7583. let _lchild = document.createElement('div')
  7584. let _limg = document.createElement('img')
  7585. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7586. _limg.style = "width: 26px;margin-right: 10px;"
  7587. _lchild.appendChild(_limg)
  7588. let _lspan = document.createElement('span')
  7589. _lspan.innerHTML = "上传中..."
  7590. _lchild.appendChild(_lspan)
  7591. _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%);"
  7592. _loading.appendChild(_lchild)
  7593. var _box = $$('div', {
  7594. "style": {
  7595. "position": "relative",
  7596. "width": "100%",
  7597. "height": "100%",
  7598. },
  7599. })
  7600. _box.appendChild(_loading)
  7601. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7602. switch (str) {
  7603. case "whiteboard":
  7604. aTool = 1;
  7605. _iframe = $$("iframe", {
  7606. "frameborder": "no",
  7607. "border": "0",
  7608. "scrolling ": "no",
  7609. "style": {
  7610. "cssText": "border:0;width:100%;height:100%"
  7611. },
  7612. "src": "https://beta.iwb.cocorobo.cn/"
  7613. })
  7614. _box.appendChild(_iframe);
  7615. _box.appendChild(_jie);
  7616. _formdiv = new U.UF.UI.form(
  7617. "电子白板",
  7618. _box, {
  7619. "id": "whiteboards" + cid + stage + task + tool,
  7620. "style": {
  7621. "width": "90%",
  7622. "height": "90%",
  7623. "overflow": 'hidden'
  7624. },
  7625. "onresize": function () { }
  7626. }, {
  7627. closecallback: function () { }
  7628. }, {
  7629. "style": {
  7630. "height": "36px"
  7631. }
  7632. }).form; //创建窗体
  7633. _taskbar = {
  7634. "id": str + _formdiv.id,
  7635. "style": {
  7636. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7637. },
  7638. "name": "电子白板",
  7639. "forms": _formdiv,
  7640. "click": function () {
  7641. U.MD.D.I.openApplication(str, obj, info);
  7642. }
  7643. }
  7644. break;
  7645. case "mind":
  7646. aTool = 3;
  7647. _iframe = $$("iframe", {
  7648. "frameborder": "no",
  7649. "border": "0",
  7650. "scrolling ": "no",
  7651. "style": {
  7652. "cssText": "border:0;width:100%;height:100%"
  7653. },
  7654. "src": "/kityminder-editor/dist/index.html"
  7655. });
  7656. _box.appendChild(_iframe);
  7657. _box.appendChild(_jie);
  7658. _formdiv = new U.UF.UI.form(
  7659. "思维导图",
  7660. _box, { //"/jsmind/example/demo.html"
  7661. "id": "minds" + cid + stage + task + tool,
  7662. "style": {
  7663. "width": "90%",
  7664. "height": "90%",
  7665. "overflow": 'hidden'
  7666. },
  7667. "onresize": function () { }
  7668. }, {
  7669. closecallback: function () { }
  7670. }, {
  7671. "style": {
  7672. "height": "36px"
  7673. }
  7674. }).form; //创建窗体
  7675. _taskbar = {
  7676. "id": str + _formdiv.id,
  7677. "style": {
  7678. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7679. },
  7680. "name": "思维导图",
  7681. "forms": _formdiv,
  7682. "click": function () {
  7683. U.MD.D.I.openApplication(str, obj, info);
  7684. }
  7685. }
  7686. break;
  7687. case "doc":
  7688. aTool = 6;
  7689. _iframe = $$("iframe", {
  7690. "frameborder": "no",
  7691. "border": "0",
  7692. "scrolling ": "no",
  7693. "style": {
  7694. "cssText": "border:0;width:100%;height:100%"
  7695. },
  7696. "src": "/Office/Word/WordEditArea.htm"
  7697. })
  7698. _box.appendChild(_iframe);
  7699. _box.appendChild(_jie);
  7700. _formdiv = new U.UF.UI.form(
  7701. "协同文档",
  7702. _box, {
  7703. "id": "docs" + cid + stage + task + tool,
  7704. "style": {
  7705. "width": "90%",
  7706. "height": "90%",
  7707. "overflow": 'hidden'
  7708. },
  7709. "onresize": function () { }
  7710. }, {
  7711. closecallback: function () { }
  7712. }, {
  7713. "style": {
  7714. "height": "36px"
  7715. }
  7716. }).form; //创建窗体
  7717. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7718. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7719. })
  7720. _taskbar = {
  7721. "id": str + _formdiv.id,
  7722. "style": {
  7723. "backgroundImage": "url(/img/icon/doc.png)"
  7724. },
  7725. "name": "协同文档",
  7726. "forms": _formdiv,
  7727. "click": function () {
  7728. U.MD.D.I.openApplication(str, obj, info);
  7729. }
  7730. }
  7731. break;
  7732. }
  7733. const script1 = document.createElement("script");
  7734. script1.type = "text/javascript";
  7735. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7736. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7737. const script2 = document.createElement("script");
  7738. script2.type = "text/javascript";
  7739. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7740. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7741. const script3 = document.createElement("script");
  7742. script3.type = "text/javascript";
  7743. script3.charset = "UTF-8";
  7744. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7745. const script4 = document.createElement("script");
  7746. script4.type = "text/javascript";
  7747. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7748. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7749. if (_iframe) {
  7750. if (str == 'doc') {
  7751. _iframe = _formdiv.querySelector('iframe')
  7752. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7753. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7754. _iframe.contentWindow.document.body.appendChild(script1);
  7755. _iframe.contentWindow.document.body.appendChild(script2);
  7756. // _iframe.contentWindow.document.body.appendChild(script3);
  7757. _iframe.contentWindow.document.body.appendChild(script4);
  7758. })
  7759. if (onloadListener) {
  7760. _iframe.contentDocument.location.reload()
  7761. } else {
  7762. _iframe.contentDocument.location.reload()
  7763. }
  7764. } else if (str == 'mind') {
  7765. _iframe = _formdiv.querySelector('iframe')
  7766. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7767. _iframe.contentWindow.document.body.appendChild(script1);
  7768. _iframe.contentWindow.document.body.appendChild(script2);
  7769. _iframe.contentWindow.document.body.appendChild(script4);
  7770. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7771. })
  7772. if (onloadListener) {
  7773. _iframe.contentDocument.location.reload()
  7774. } else {
  7775. _iframe.contentDocument.location.reload()
  7776. }
  7777. } else {
  7778. _iframe.onload = () => {
  7779. _iframe.contentWindow.document.body.appendChild(script1);
  7780. _iframe.contentWindow.document.body.appendChild(script2);
  7781. // _iframe.contentWindow.document.body.appendChild(script3);
  7782. _iframe.contentWindow.document.body.appendChild(script4);
  7783. };
  7784. }
  7785. _jie.onclick = async () => {
  7786. let text = ''
  7787. if (aTool == 6) {
  7788. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7789. } else if (aTool == 3) {
  7790. text = await U.MD.D.I.getEditorContent(_iframe);
  7791. }
  7792. _loading.style.display = 'flex'
  7793. console.log(_loading);
  7794. var _ajs = _iframe.contentWindow.document.createElement("script");
  7795. _ajs.type = "text/javascript";
  7796. _ajs.innerHTML =
  7797. // 'console.log(' + _loading + ');\n' +
  7798. 'var _js = document.createElement("script");\n' +
  7799. '_js.type="text/javascript";\n' +
  7800. '_js.charset="UTF-8";\n' +
  7801. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7802. "_js.onload = function(){\n" +
  7803. ' var a = document.getElementsByTagName("img")\n' +
  7804. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7805. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7806. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7807. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7808. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7809. "beforeUpload_shishi(file," +
  7810. "'" +
  7811. _userid +
  7812. "'" +
  7813. ", " +
  7814. "'" +
  7815. _cid +
  7816. "'" +
  7817. ", " +
  7818. "'" +
  7819. _stage +
  7820. "'" +
  7821. ", " +
  7822. "'" +
  7823. _task +
  7824. "'" +
  7825. ", " +
  7826. "'" +
  7827. _tool +
  7828. "'" +
  7829. ", " +
  7830. "'" +
  7831. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7832. "'" +
  7833. ", " +
  7834. "'" +
  7835. aTool +
  7836. "'" +
  7837. ", " +
  7838. "`" +
  7839. text +
  7840. "`" +
  7841. ")\n" +
  7842. " });\n" +
  7843. "}\n" +
  7844. "document.head.appendChild(_js);\n";
  7845. _iframe.contentWindow.document.head.appendChild(_ajs);
  7846. }
  7847. }
  7848. //U.MD.D.I.openClick(str);
  7849. //如果有任务栏信息
  7850. // if (_taskbar) {
  7851. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7852. // }
  7853. }
  7854. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7855. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7856. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7857. _userinfo = US.userInfo, //登录用户信息
  7858. _userid = US.userInfo.userid //登录用户id
  7859. let _iframe;
  7860. let _cid = cid,
  7861. _stage = stage,
  7862. _task = task,
  7863. _tool = tool;
  7864. var _jie = $$("div", {
  7865. "style": {
  7866. "position": "absolute",
  7867. "bottom": "50px",
  7868. "right": "50px",
  7869. "zIndex": "9999",
  7870. "backgroundColor": "#2268bc",
  7871. "color": "#fff",
  7872. "padding": "12px 20px",
  7873. "cursor": "pointer",
  7874. "borderRadius": "4px",
  7875. },
  7876. "innerHTML": "上传模板"
  7877. })
  7878. let aTool = ''
  7879. let _loading = document.createElement('div')
  7880. _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;"
  7881. // _loading.id = "";
  7882. let _lchild = document.createElement('div')
  7883. let _limg = document.createElement('img')
  7884. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7885. _limg.style = "width: 26px;margin-right: 10px;"
  7886. _lchild.appendChild(_limg)
  7887. let _lspan = document.createElement('span')
  7888. _lspan.innerHTML = "上传中..."
  7889. _lchild.appendChild(_lspan)
  7890. _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%);"
  7891. _loading.appendChild(_lchild)
  7892. var _box = $$('div', {
  7893. "style": {
  7894. "position": "relative",
  7895. "width": "100%",
  7896. "height": "100%",
  7897. },
  7898. })
  7899. _box.appendChild(_loading)
  7900. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7901. switch (str) {
  7902. case "whiteboard":
  7903. aTool = 1;
  7904. _iframe = $$("iframe", {
  7905. "frameborder": "no",
  7906. "border": "0",
  7907. "scrolling ": "no",
  7908. "style": {
  7909. "cssText": "border:0;width:100%;height:100%"
  7910. },
  7911. "src": "https://beta.iwb.cocorobo.cn/"
  7912. })
  7913. _box.appendChild(_iframe);
  7914. _box.appendChild(_jie);
  7915. _formdiv = new U.UF.UI.form(
  7916. "电子白板",
  7917. _box, {
  7918. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7919. "style": {
  7920. "width": "90%",
  7921. "height": "90%",
  7922. "overflow": 'hidden'
  7923. },
  7924. "onresize": function () { }
  7925. }, {
  7926. closecallback: function () { }
  7927. }, {
  7928. "style": {
  7929. "height": "36px"
  7930. }
  7931. }).form; //创建窗体
  7932. _taskbar = {
  7933. "id": str + _formdiv.id,
  7934. "style": {
  7935. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7936. },
  7937. "name": "电子白板",
  7938. "forms": _formdiv,
  7939. "click": function () {
  7940. U.MD.D.I.openApplication(str, obj, info);
  7941. }
  7942. }
  7943. break;
  7944. case "mind":
  7945. aTool = 3;
  7946. _iframe = $$("iframe", {
  7947. "frameborder": "no",
  7948. "border": "0",
  7949. "scrolling ": "no",
  7950. "style": {
  7951. "cssText": "border:0;width:100%;height:100%"
  7952. },
  7953. "src": "/kityminder-editor/dist/index.html"
  7954. });
  7955. _box.appendChild(_iframe);
  7956. _box.appendChild(_jie);
  7957. _formdiv = new U.UF.UI.form(
  7958. "思维导图",
  7959. _box, { //"/jsmind/example/demo.html"
  7960. "id": "minds_Yu" + cid + stage + task + tool,
  7961. "style": {
  7962. "width": "90%",
  7963. "height": "90%",
  7964. "overflow": 'hidden'
  7965. },
  7966. "onresize": function () { }
  7967. }, {
  7968. closecallback: function () { }
  7969. }, {
  7970. "style": {
  7971. "height": "36px"
  7972. }
  7973. }).form; //创建窗体
  7974. _taskbar = {
  7975. "id": str + _formdiv.id,
  7976. "style": {
  7977. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7978. },
  7979. "name": "思维导图",
  7980. "forms": _formdiv,
  7981. "click": function () {
  7982. U.MD.D.I.openApplication(str, obj, info);
  7983. }
  7984. }
  7985. break;
  7986. case "doc":
  7987. aTool = 6;
  7988. _iframe = $$("iframe", {
  7989. "frameborder": "no",
  7990. "border": "0",
  7991. "scrolling ": "no",
  7992. "style": {
  7993. "cssText": "border:0;width:100%;height:100%"
  7994. },
  7995. "src": "/Office/Word/WordEditArea.htm"
  7996. })
  7997. _box.appendChild(_iframe);
  7998. _box.appendChild(_jie);
  7999. _formdiv = new U.UF.UI.form(
  8000. "协同文档",
  8001. _box, {
  8002. "id": "docs_Yu" + cid + stage + task + tool,
  8003. "style": {
  8004. "width": "90%",
  8005. "height": "90%",
  8006. "overflow": 'hidden'
  8007. },
  8008. "onresize": function () { }
  8009. }, {
  8010. closecallback: function () { }
  8011. }, {
  8012. "style": {
  8013. "height": "36px"
  8014. }
  8015. }).form; //创建窗体
  8016. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8017. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8018. })
  8019. _taskbar = {
  8020. "id": str + _formdiv.id,
  8021. "style": {
  8022. "backgroundImage": "url(/img/icon/doc.png)"
  8023. },
  8024. "name": "协同文档",
  8025. "forms": _formdiv,
  8026. "click": function () {
  8027. U.MD.D.I.openApplication(str, obj, info);
  8028. }
  8029. }
  8030. break;
  8031. case "CocoPi":
  8032. aTool = 57;
  8033. _iframe = $$("iframe", {
  8034. "allowpaymentrequest": "allowpaymentrequest",
  8035. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8036. "webkitallowfullscreen": "",
  8037. "mozallowfullscreen": "",
  8038. "frameborder": "no",
  8039. "border": "0",
  8040. "scrolling ": "no",
  8041. "style": {
  8042. "cssText": "border:0;width:100%;height:100%"
  8043. },
  8044. "src": "https://pi.cocorobo.cn/"
  8045. })
  8046. _box.appendChild(_iframe);
  8047. _box.appendChild(_jie);
  8048. _formdiv = new U.UF.UI.form(
  8049. "CocoPi",
  8050. _box, {
  8051. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8052. "style": {
  8053. "width": "90%",
  8054. "height": "90%",
  8055. "overflow": 'hidden'
  8056. },
  8057. "onresize": function () { }
  8058. }, {
  8059. closecallback: function () { }
  8060. }, {
  8061. "style": {
  8062. "height": "36px"
  8063. }
  8064. }).form; //创建窗体
  8065. _taskbar = {
  8066. "id": str + _formdiv.id,
  8067. "style": {
  8068. "backgroundImage": "url(/img/icon/cocopi.png)"
  8069. },
  8070. "name": "CocoPi",
  8071. "forms": _formdiv,
  8072. "click": function () {
  8073. U.MD.D.I.openApplication(str, obj, info);
  8074. }
  8075. }
  8076. break;
  8077. }
  8078. if (_iframe) {
  8079. if (str == 'doc') {
  8080. _iframe = _formdiv.querySelector('iframe')
  8081. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8082. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8083. })
  8084. if (onloadListener) {
  8085. _iframe.contentDocument.location.reload()
  8086. } else {
  8087. _iframe.contentDocument.location.reload()
  8088. }
  8089. } else if (str == 'mind') {
  8090. _iframe = _formdiv.querySelector('iframe')
  8091. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8092. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8093. })
  8094. if (onloadListener) {
  8095. _iframe.contentDocument.location.reload()
  8096. } else {
  8097. _iframe.contentDocument.location.reload()
  8098. }
  8099. } else if (str == 'whiteboard') {
  8100. _iframe = _formdiv.querySelector('iframe')
  8101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8102. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8103. })
  8104. if (onloadListener) {
  8105. _iframe.contentDocument.location.reload()
  8106. } else {
  8107. _iframe.contentDocument.location.reload()
  8108. }
  8109. } else if (str == 'CocoPi') {
  8110. _iframe = _formdiv.querySelector('iframe')
  8111. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8112. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8113. })
  8114. if (onloadListener) {
  8115. _iframe.contentDocument.location.reload()
  8116. } else {
  8117. _iframe.contentDocument.location.reload()
  8118. }
  8119. } else {
  8120. _iframe.onload = () => { };
  8121. }
  8122. _jie.onclick = async () => {
  8123. let text = ''
  8124. let type = '2'
  8125. if (aTool == 1) {
  8126. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8127. type = '3'
  8128. } else if (aTool == 6) {
  8129. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8130. type = '1'
  8131. } else if (aTool == 3) {
  8132. text = await U.MD.D.I.getEditorContent(_iframe);
  8133. type = '2'
  8134. } else if (aTool == 57) {
  8135. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8136. type = '4'
  8137. }
  8138. _loading.style.display = 'flex'
  8139. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8140. }
  8141. }
  8142. //U.MD.D.I.openClick(str);
  8143. //如果有任务栏信息
  8144. // if (_taskbar) {
  8145. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8146. // }
  8147. }
  8148. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8149. var xmlhttp;
  8150. var Mac, Sn, DeviceId
  8151. if (window.XMLHttpRequest) {
  8152. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8153. xmlhttp = new XMLHttpRequest();
  8154. } else {
  8155. // IE6, IE5 浏览器执行代码
  8156. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8157. }
  8158. xmlhttp.onreadystatechange = function () {
  8159. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8160. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8161. // resolve(res.value[0][0].text);
  8162. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8163. }
  8164. }
  8165. }
  8166. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8167. xmlhttp.send();
  8168. }
  8169. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8170. var xmlhttp;
  8171. var Mac, Sn, DeviceId
  8172. if (window.XMLHttpRequest) {
  8173. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8174. xmlhttp = new XMLHttpRequest();
  8175. } else {
  8176. // IE6, IE5 浏览器执行代码
  8177. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8178. }
  8179. xmlhttp.onreadystatechange = function () {
  8180. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8181. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8182. // resolve(res.value[0][0].text);
  8183. if (type == '2') {
  8184. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8185. } else if (type == '3') {
  8186. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8187. } else if (type == '4') {
  8188. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8189. }
  8190. } else {
  8191. if (type == '2') {
  8192. iframe.contentWindow.editor.minder.importData('json', '')
  8193. } else if (type == '3') {
  8194. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8195. } else if (type == '4') {
  8196. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8197. }
  8198. }
  8199. }
  8200. }
  8201. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8202. xmlhttp.send();
  8203. }
  8204. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8205. var xmlhttp;
  8206. var Mac, Sn, DeviceId
  8207. if (window.XMLHttpRequest) {
  8208. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8209. xmlhttp = new XMLHttpRequest();
  8210. } else {
  8211. // IE6, IE5 浏览器执行代码
  8212. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8213. }
  8214. xmlhttp.onreadystatechange = function () {
  8215. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8216. if (xmlhttp.response) {
  8217. // resolve(res.value[0][0].text);
  8218. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8219. // $(fileInput).val('');
  8220. // });
  8221. span.innerHTML = '上传成功'
  8222. setTimeout(() => {
  8223. loading.style.display = 'none'
  8224. }, 1000);
  8225. }
  8226. }
  8227. }
  8228. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8229. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8230. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8231. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8232. // 设置请求头,表示请求体的编码格式
  8233. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8234. // 设置请求体,使用url-encoded格式的数据
  8235. }
  8236. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8237. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8238. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8239. _userinfo = US.userInfo, //登录用户信息
  8240. _userid = US.userInfo.userid //登录用户id
  8241. let _iframe;
  8242. let _cid = cid,
  8243. _stage = stage,
  8244. _task = task,
  8245. _tool = tool;
  8246. var _jie = $$("div", {
  8247. "style": {
  8248. "position": "absolute",
  8249. "bottom": "50px",
  8250. "right": "50px",
  8251. "zIndex": "9999",
  8252. "backgroundColor": "#2268bc",
  8253. "color": "#fff",
  8254. "padding": "12px 20px",
  8255. "cursor": "pointer",
  8256. "borderRadius": "4px",
  8257. },
  8258. "innerHTML": "提交作业"
  8259. })
  8260. let aTool = ''
  8261. let _loading = document.createElement('div')
  8262. _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;"
  8263. // _loading.id = "";
  8264. let _lchild = document.createElement('div')
  8265. let _limg = document.createElement('img')
  8266. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8267. _limg.style = "width: 26px;margin-right: 10px;"
  8268. _lchild.appendChild(_limg)
  8269. let _lspan = document.createElement('span')
  8270. _lspan.innerHTML = "上传中..."
  8271. _lchild.appendChild(_lspan)
  8272. _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%);"
  8273. _loading.appendChild(_lchild)
  8274. var _box = $$('div', {
  8275. "style": {
  8276. "position": "relative",
  8277. "width": "100%",
  8278. "height": "100%",
  8279. },
  8280. })
  8281. _box.appendChild(_loading)
  8282. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8283. switch (str) {
  8284. case "CocoPi":
  8285. aTool = 57;
  8286. _iframe = $$("iframe", {
  8287. "allowpaymentrequest": "allowpaymentrequest",
  8288. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8289. "webkitallowfullscreen": "",
  8290. "mozallowfullscreen": "",
  8291. "frameborder": "no",
  8292. "border": "0",
  8293. "scrolling ": "no",
  8294. "style": {
  8295. "cssText": "border:0;width:100%;height:100%"
  8296. },
  8297. "src": "https://pi.cocorobo.cn/"
  8298. })
  8299. _box.appendChild(_iframe);
  8300. _box.appendChild(_jie);
  8301. _formdiv = new U.UF.UI.form(
  8302. "CocoPi",
  8303. _box, {
  8304. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8305. "style": {
  8306. "width": "90%",
  8307. "height": "90%",
  8308. "overflow": 'hidden'
  8309. },
  8310. "onresize": function () { }
  8311. }, {
  8312. closecallback: function () { }
  8313. }, {
  8314. "style": {
  8315. "height": "36px"
  8316. }
  8317. }).form; //创建窗体
  8318. _taskbar = {
  8319. "id": str + _formdiv.id,
  8320. "style": {
  8321. "backgroundImage": "url(/img/icon/cocopi.png)"
  8322. },
  8323. "name": "CocoPi",
  8324. "forms": _formdiv,
  8325. "click": function () {
  8326. U.MD.D.I.openApplication(str, obj, info);
  8327. }
  8328. }
  8329. break;
  8330. }
  8331. if (_iframe) {
  8332. if (str == 'CocoPi') {
  8333. _iframe = _formdiv.querySelector('iframe')
  8334. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8335. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8336. })
  8337. if (onloadListener) {
  8338. _iframe.contentDocument.location.reload()
  8339. } else {
  8340. _iframe.contentDocument.location.reload()
  8341. }
  8342. }
  8343. _jie.onclick = async () => {
  8344. let text = ''
  8345. if (aTool == 57) {
  8346. text = _iframe.contentWindow.getLoadXmlStr()
  8347. }
  8348. _loading.style.display = 'flex'
  8349. console.log(_loading);
  8350. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8351. _loading.style.display = 'none'
  8352. let _div = document.createElement('div')
  8353. _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;"
  8354. let _inner = document.createElement('div')
  8355. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8356. _inner.innerHTML = "上传成功"
  8357. _div.appendChild(_inner)
  8358. _iframe.contentWindow.window.document.body.appendChild(_div)
  8359. _div.onclick = () => {
  8360. _iframe.contentWindow.window.document.body.removeChild(_div)
  8361. }
  8362. setTimeout(() => {
  8363. _iframe.contentWindow.window.document.body.removeChild(_div)
  8364. }, 1000);
  8365. }, [], { "type": "POST", "withCredentials": true });
  8366. }
  8367. }
  8368. }
  8369. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8370. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8371. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8372. _userid = student.userid, //登录用户id
  8373. _username = student.student //用户名字
  8374. let _iframe;
  8375. let _cid = cid,
  8376. _stage = stage,
  8377. _task = task,
  8378. _tool = tool;
  8379. var _jie = $$("div", {
  8380. "style": {
  8381. "position": "absolute",
  8382. "bottom": "50px",
  8383. "right": "50px",
  8384. "zIndex": "9999",
  8385. "backgroundColor": "#2268bc",
  8386. "color": "#fff",
  8387. "padding": "12px 20px",
  8388. "cursor": "pointer",
  8389. "borderRadius": "4px",
  8390. },
  8391. "innerHTML": "提交作业"
  8392. })
  8393. let aTool = ''
  8394. let _loading = document.createElement('div')
  8395. _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;"
  8396. // _loading.id = "";
  8397. let _lchild = document.createElement('div')
  8398. let _limg = document.createElement('img')
  8399. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8400. _limg.style = "width: 26px;margin-right: 10px;"
  8401. _lchild.appendChild(_limg)
  8402. let _lspan = document.createElement('span')
  8403. _lspan.innerHTML = "上传中..."
  8404. _lchild.appendChild(_lspan)
  8405. _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%);"
  8406. _loading.appendChild(_lchild)
  8407. var _box = $$('div', {
  8408. "style": {
  8409. "position": "relative",
  8410. "width": "100%",
  8411. "height": "100%",
  8412. },
  8413. })
  8414. _box.appendChild(_loading)
  8415. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8416. switch (str) {
  8417. case "CocoPi":
  8418. aTool = 57;
  8419. _iframe = $$("iframe", {
  8420. "allowpaymentrequest": "allowpaymentrequest",
  8421. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8422. "webkitallowfullscreen": "",
  8423. "mozallowfullscreen": "",
  8424. "frameborder": "no",
  8425. "border": "0",
  8426. "scrolling ": "no",
  8427. "style": {
  8428. "cssText": "border:0;width:100%;height:100%"
  8429. },
  8430. "src": "https://pi.cocorobo.cn/"
  8431. })
  8432. _box.appendChild(_iframe);
  8433. _box.appendChild(_jie);
  8434. _formdiv = new U.UF.UI.form(
  8435. "CocoPi-" + _username,
  8436. _box, {
  8437. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8438. "style": {
  8439. "width": "90%",
  8440. "height": "90%",
  8441. "overflow": 'hidden'
  8442. },
  8443. "onresize": function () { }
  8444. }, {
  8445. closecallback: function () { }
  8446. }, {
  8447. "style": {
  8448. "height": "36px"
  8449. }
  8450. }).form; //创建窗体
  8451. _taskbar = {
  8452. "id": str + _formdiv.id,
  8453. "style": {
  8454. "backgroundImage": "url(/img/icon/cocopi.png)"
  8455. },
  8456. "name": "CocoPi",
  8457. "forms": _formdiv,
  8458. "click": function () {
  8459. U.MD.D.I.openApplication(str, obj, info);
  8460. }
  8461. }
  8462. break;
  8463. }
  8464. if (_iframe) {
  8465. if (str == 'CocoPi') {
  8466. _iframe = _formdiv.querySelector('iframe')
  8467. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8468. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8469. })
  8470. if (onloadListener) {
  8471. _iframe.contentDocument.location.reload()
  8472. } else {
  8473. _iframe.contentDocument.location.reload()
  8474. }
  8475. }
  8476. _jie.onclick = async () => {
  8477. let text = ''
  8478. if (aTool == 57) {
  8479. text = _iframe.contentWindow.getLoadXmlStr()
  8480. }
  8481. _loading.style.display = 'flex'
  8482. console.log(_loading);
  8483. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8484. _loading.style.display = 'none'
  8485. let _div = document.createElement('div')
  8486. _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;"
  8487. let _inner = document.createElement('div')
  8488. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8489. _inner.innerHTML = "上传成功"
  8490. _div.appendChild(_inner)
  8491. _iframe.contentWindow.window.document.body.appendChild(_div)
  8492. _div.onclick = () => {
  8493. _iframe.contentWindow.window.document.body.removeChild(_div)
  8494. }
  8495. setTimeout(() => {
  8496. _iframe.contentWindow.window.document.body.removeChild(_div)
  8497. }, 1000);
  8498. }, [], { "type": "POST", "withCredentials": true });
  8499. }
  8500. }
  8501. }
  8502. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8503. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8504. if (res.value[0].length > 0) {
  8505. if (atool == 57) {
  8506. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8507. }
  8508. } else {
  8509. if (atool == 57) {
  8510. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8511. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8512. }
  8513. }
  8514. }, [], { "type": "POST", "withCredentials": true });
  8515. }