DeskTop.js 580 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. ];
  986. //未来教育基地
  987. U.MD.D.I.szjkyAdminDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1000. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1006. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1007. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1009. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1010. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1011. ];
  1012. //未来教育基地
  1013. U.MD.D.I.szjkyStudentDeskIcon = [
  1014. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1015. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. ];
  1019. //成华教育局
  1020. U.MD.D.I.chjyjTeacherDeskIcon = [
  1021. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1022. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1026. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1027. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1028. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1029. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1030. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1031. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1032. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1035. ];
  1036. //成华教育局chjyj
  1037. U.MD.D.I.chjyjAdminDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1043. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1044. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1045. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1046. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1047. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1048. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //成华教育局chjyj
  1055. U.MD.D.I.chjyjStudentDeskIcon = [
  1056. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1060. ];
  1061. //tpc
  1062. U.MD.D.I.tpcStudentDeskIcon = [
  1063. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1067. ];
  1068. //tpc
  1069. U.MD.D.I.tpcTeacherDeskIcon = [
  1070. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1071. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1072. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1073. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1077. ];
  1078. //tpc
  1079. U.MD.D.I.tpcAdminDeskIcon = [
  1080. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1081. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1082. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1085. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1086. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1087. ];
  1088. //THU-IOE
  1089. U.MD.D.I.thuioeTeacherDeskIcon = [
  1090. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1091. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1092. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1093. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1094. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1095. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1096. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1097. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1098. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1099. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1100. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1101. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1102. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1103. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1104. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1105. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1106. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1107. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1108. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1109. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1110. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1111. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1112. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1113. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1114. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1115. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1116. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1117. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1118. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1119. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1120. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1121. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1122. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1123. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. ];
  1130. //THU-IOE
  1131. U.MD.D.I.thuioeStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //jccssyl
  1138. U.MD.D.I.jccssylTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //jccssyl
  1160. U.MD.D.I.jccssylStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //cale
  1167. U.MD.D.I.caleTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1175. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1180. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1181. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1182. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1184. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1186. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1187. ];
  1188. //cale
  1189. U.MD.D.I.caleStudentDeskIcon = [
  1190. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1191. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1192. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1197. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1198. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1204. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1205. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1206. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1207. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1208. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1209. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1210. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1211. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1212. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1213. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1214. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1215. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1216. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1217. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1218. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1219. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1220. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1221. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1222. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1223. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1224. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1225. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1226. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1227. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1228. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1229. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1230. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1233. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1234. ];
  1235. //lqwmsgzs
  1236. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1237. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. ];
  1242. //盐田区幼儿园
  1243. U.MD.D.I.ytyTeacherDeskIcon = [
  1244. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1245. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1246. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1250. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1251. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1256. ];
  1257. //盐田区幼儿园
  1258. U.MD.D.I.ytyStudentDeskIcon = [
  1259. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiAdminDeskIcon = [
  1291. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1292. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1309. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1310. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1312. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1313. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1314. ];
  1315. //scnuai
  1316. U.MD.D.I.scnuaiStudentDeskIcon = [
  1317. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. ];
  1322. //cocobiz
  1323. U.MD.D.I.cocobizteacherDeskIcon = [
  1324. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1325. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1326. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1327. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1328. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1329. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1330. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1331. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1332. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1333. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1334. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1335. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1336. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1337. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1340. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1341. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1342. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1343. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1344. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1345. ];
  1346. //cocobiz
  1347. U.MD.D.I.cocobizStudentDeskIcon = [
  1348. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. ];
  1355. //xxzjky
  1356. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1357. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1358. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1359. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1360. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1361. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1362. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1363. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1364. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1365. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1366. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1367. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1368. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1370. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1371. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1377. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1378. ];
  1379. //xxzjky
  1380. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1381. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //nsfx
  1389. U.MD.D.I.nsfxTeacherDeskIcon = [
  1390. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1392. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1393. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1394. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1395. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1396. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1397. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1398. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1399. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1400. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1403. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1405. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1406. ];
  1407. //nsfx
  1408. U.MD.D.I.nsfxStudentDeskIcon = [
  1409. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. ];
  1414. //#region 桌面初始化a
  1415. /**
  1416. * 初始化桌面的起始函数
  1417. *
  1418. */
  1419. U.MD.D.I.init = function () {
  1420. if ($("#U_MD_D_K")[0]) {
  1421. //初始化桌面图标
  1422. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1423. // var clickUrl = ':12588/requestIp.php';
  1424. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1425. // U.MD.D.I.Ip = data;
  1426. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1427. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1428. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1429. // })
  1430. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1431. // })
  1432. }
  1433. }
  1434. /**
  1435. * 模式切换
  1436. *
  1437. */
  1438. U.MD.D.I.ModeCheck = function (type) {
  1439. if (US.Config.type == type) {
  1440. return
  1441. }
  1442. US.Config.type = type
  1443. $('.U_PBL_Check .active')[0].className = ''
  1444. if (type == 1) {
  1445. $('.U_PBL_Check div')[0].className = 'active'
  1446. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1447. } else {
  1448. $('.U_PBL_Check div')[1].className = 'active'
  1449. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1450. }
  1451. //初始化桌面图标
  1452. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1453. if (type == 2) {
  1454. U.MD.D.I.openApplication("project")
  1455. }
  1456. }
  1457. /**
  1458. * 隐藏任务栏
  1459. *
  1460. * @param {element} 桌面元素
  1461. */
  1462. U.MD.D.I.hiddenTaskbar = function (el) {
  1463. //任务栏位置变小
  1464. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1465. //桌面的位置变大
  1466. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1467. }
  1468. /**
  1469. * 隐藏任务栏
  1470. *
  1471. * @param {element} 桌面元素
  1472. */
  1473. U.MD.D.I.hiddenTaskbarout = function (el) {
  1474. //任务栏位置变小
  1475. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1476. //任务栏位置变化
  1477. U.selectEl(el).css({ "bottom": "-60px" });
  1478. //桌面的位置变大
  1479. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1480. }
  1481. }
  1482. /**
  1483. * 初始化打印桌面图标
  1484. *
  1485. * @param {element} 桌面元素
  1486. */
  1487. U.MD.D.I.initDesktopIcons = function (el, type) {
  1488. var i, //用于循环
  1489. _content, //桌面图标元素
  1490. _iconcontent, //桌面图标元素
  1491. _frag = $$("frag"), //定义一个碎片元素
  1492. _type = US.userInfo.type,
  1493. _org = US.userInfo.org,
  1494. _oid = US.userInfo.organizeid,
  1495. _role = US.userInfo.role,
  1496. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1497. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1498. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1499. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1500. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1501. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1502. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1503. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1504. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1505. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1506. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1507. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1508. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1509. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1510. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1511. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1512. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1513. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1514. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1515. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1516. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1517. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1518. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1519. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1520. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1521. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1522. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1523. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1524. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1525. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1526. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1527. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1528. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1529. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1530. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1531. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1532. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1533. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1534. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1535. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1536. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1537. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1538. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1539. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1540. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1541. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1542. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1543. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1544. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1545. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1546. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1547. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1548. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1549. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1550. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1551. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1552. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1553. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1554. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1555. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1556. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1557. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1558. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1559. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1560. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1561. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1562. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1563. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1564. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1565. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1566. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1567. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1568. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1569. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1570. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1571. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1572. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1573. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1574. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5'];
  1575. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07'];
  1576. //清楚桌面图标
  1577. el.innerHTML = "";
  1578. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1579. _teacherDesktopIconInfo.push(
  1580. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1581. { "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)" } },
  1582. )
  1583. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1584. }
  1585. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1588. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1589. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1590. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1591. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1592. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1593. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1594. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1595. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1596. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1597. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1598. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1599. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1600. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1601. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1602. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1603. )
  1604. }
  1605. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1606. _teacherDesktopIconInfo.push(
  1607. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1608. )
  1609. }
  1610. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1611. // _teacherDesktopIconInfo.push(
  1612. // )
  1613. // }
  1614. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1615. _teacherDesktopIconInfo.push(
  1616. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. )
  1619. }
  1620. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1621. _teacherDesktopIconInfo.push(
  1622. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1624. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1625. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1626. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1627. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1628. )
  1629. _studentDesktopIconInfo.push(
  1630. )
  1631. }
  1632. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1633. _teacherDesktopIconInfo.push(
  1634. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1635. )
  1636. _studentDesktopIconInfo.push(
  1637. )
  1638. }
  1639. //010606 组织
  1640. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1641. _teacherDesktopIconInfo.push(
  1642. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1643. )
  1644. _studentDesktopIconInfo.push(
  1645. )
  1646. }
  1647. //麒麟二中 和 民新小学
  1648. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1649. _teacherDesktopIconInfo.push(
  1650. )
  1651. }
  1652. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1653. _teacherDesktopIconInfo.push(
  1654. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1655. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1656. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1657. )
  1658. }
  1659. //北师大附中(010601)
  1660. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1661. _teacherDesktopIconInfo.push(
  1662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1663. )
  1664. _studentDesktopIconInfo.push(
  1665. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1666. )
  1667. }
  1668. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1669. _teacherDesktopIconInfo.push(
  1670. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1671. )
  1672. }
  1673. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1674. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1675. _teacherDesktopIconInfo.push(
  1676. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1677. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1678. )
  1679. }
  1680. //麒麟二中
  1681. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1682. _studentDesktopIconInfo.push(
  1683. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1685. )
  1686. }
  1687. //万科双语
  1688. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1689. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1690. if (el.Name == '项目管理') {
  1691. el.Name = 'PBL项目'
  1692. }
  1693. return el
  1694. })
  1695. _studentDesktopIconInfo3.push(
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. )
  1698. }
  1699. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1700. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1701. return el.Name != '魔盒识字' && el.Name != '24点'
  1702. })
  1703. }
  1704. 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) {
  1705. _studentDesktopIconInfo.push(
  1706. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1708. )
  1709. }
  1710. //循环创建桌面图标
  1711. if (type == 1) {
  1712. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1713. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1714. _content = $$("div", {
  1715. className: "U_MD_D_KO",
  1716. "onmousedown": U.UF.C.closure(function (obj) {
  1717. //防止拖动图标即打开了桌面应用
  1718. U.MD.D.click(this, obj);
  1719. }, [_studentDesktopIconInfo[i]]),
  1720. "onclick": U.UF.C.closure(function (obj) {
  1721. //防止拖动图标即打开了桌面应用
  1722. U.MD.D.click(this, obj);
  1723. }, [_studentDesktopIconInfo[i]])
  1724. }, _frag); //
  1725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1728. }
  1729. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1730. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1731. _content = $$("div", {
  1732. className: "U_MD_D_KO",
  1733. "onmousedown": U.UF.C.closure(function (obj) {
  1734. //防止拖动图标即打开了桌面应用
  1735. U.MD.D.click(this, obj);
  1736. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1737. "onclick": U.UF.C.closure(function (obj) {
  1738. //防止拖动图标即打开了桌面应用
  1739. U.MD.D.click(this, obj);
  1740. }, [_hkZJLSStudentDeskIconInfo[i]])
  1741. }, _frag); //
  1742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1745. } //
  1746. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1747. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1748. _content = $$("div", {
  1749. className: "U_MD_D_KO",
  1750. "onmousedown": U.UF.C.closure(function (obj) {
  1751. //防止拖动图标即打开了桌面应用
  1752. U.MD.D.click(this, obj);
  1753. }, [_ytyStudentDeskIconInfo[i]]),
  1754. "onclick": U.UF.C.closure(function (obj) {
  1755. //防止拖动图标即打开了桌面应用
  1756. U.MD.D.click(this, obj);
  1757. }, [_ytyStudentDeskIconInfo[i]])
  1758. }, _frag); //
  1759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1762. } //
  1763. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1764. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1765. _content = $$("div", {
  1766. className: "U_MD_D_KO",
  1767. "onmousedown": U.UF.C.closure(function (obj) {
  1768. //防止拖动图标即打开了桌面应用
  1769. U.MD.D.click(this, obj);
  1770. }, [_jccssylStudentDeskIconInfo[i]]),
  1771. "onclick": U.UF.C.closure(function (obj) {
  1772. //防止拖动图标即打开了桌面应用
  1773. U.MD.D.click(this, obj);
  1774. }, [_jccssylStudentDeskIconInfo[i]])
  1775. }, _frag); //
  1776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1779. }
  1780. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1781. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1782. _content = $$("div", {
  1783. className: "U_MD_D_KO",
  1784. "onmousedown": U.UF.C.closure(function (obj) {
  1785. //防止拖动图标即打开了桌面应用
  1786. U.MD.D.click(this, obj);
  1787. }, [_scnuaiStudentDeskIconInfo[i]]),
  1788. "onclick": U.UF.C.closure(function (obj) {
  1789. //防止拖动图标即打开了桌面应用
  1790. U.MD.D.click(this, obj);
  1791. }, [_scnuaiStudentDeskIconInfo[i]])
  1792. }, _frag); //
  1793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1796. }
  1797. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1798. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1799. _content = $$("div", {
  1800. className: "U_MD_D_KO",
  1801. "onmousedown": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_caleStudentDeskIconInfo[i]]),
  1805. "onclick": U.UF.C.closure(function (obj) {
  1806. //防止拖动图标即打开了桌面应用
  1807. U.MD.D.click(this, obj);
  1808. }, [_caleStudentDeskIconInfo[i]])
  1809. }, _frag); //
  1810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1813. }
  1814. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1815. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1816. _content = $$("div", {
  1817. className: "U_MD_D_KO",
  1818. "onmousedown": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_thuioeStudentDeskIconInfo[i]]),
  1822. "onclick": U.UF.C.closure(function (obj) {
  1823. //防止拖动图标即打开了桌面应用
  1824. U.MD.D.click(this, obj);
  1825. }, [_thuioeStudentDeskIconInfo[i]])
  1826. }, _frag); //
  1827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1830. }
  1831. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1832. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1833. _content = $$("div", {
  1834. className: "U_MD_D_KO",
  1835. "onmousedown": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_tpcStudentDeskIconInfo[i]]),
  1839. "onclick": U.UF.C.closure(function (obj) {
  1840. //防止拖动图标即打开了桌面应用
  1841. U.MD.D.click(this, obj);
  1842. }, [_tpcStudentDeskIconInfo[i]])
  1843. }, _frag); //
  1844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1847. } //
  1848. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1849. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1850. _content = $$("div", {
  1851. className: "U_MD_D_KO",
  1852. "onmousedown": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_chjyjStudentDeskIconInfo[i]]),
  1856. "onclick": U.UF.C.closure(function (obj) {
  1857. //防止拖动图标即打开了桌面应用
  1858. U.MD.D.click(this, obj);
  1859. }, [_chjyjStudentDeskIconInfo[i]])
  1860. }, _frag); //
  1861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1864. }
  1865. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1866. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1867. _content = $$("div", {
  1868. className: "U_MD_D_KO",
  1869. "onmousedown": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_szjkyStudentDeskIconInfo[i]]),
  1873. "onclick": U.UF.C.closure(function (obj) {
  1874. //防止拖动图标即打开了桌面应用
  1875. U.MD.D.click(this, obj);
  1876. }, [_szjkyStudentDeskIconInfo[i]])
  1877. }, _frag); //
  1878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1881. }
  1882. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1883. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1884. _content = $$("div", {
  1885. className: "U_MD_D_KO",
  1886. "onmousedown": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_dseiStudentDeskIconInfo[i]]),
  1890. "onclick": U.UF.C.closure(function (obj) {
  1891. //防止拖动图标即打开了桌面应用
  1892. U.MD.D.click(this, obj);
  1893. }, [_dseiStudentDeskIconInfo[i]])
  1894. }, _frag); //
  1895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1898. }
  1899. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1900. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1901. _content = $$("div", {
  1902. className: "U_MD_D_KO",
  1903. "onmousedown": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1907. "onclick": U.UF.C.closure(function (obj) {
  1908. //防止拖动图标即打开了桌面应用
  1909. U.MD.D.click(this, obj);
  1910. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1911. }, _frag); //
  1912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1915. }
  1916. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  1917. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  1918. _content = $$("div", {
  1919. className: "U_MD_D_KO",
  1920. "onmousedown": U.UF.C.closure(function (obj) {
  1921. //防止拖动图标即打开了桌面应用
  1922. U.MD.D.click(this, obj);
  1923. }, [_nsfxStudentDeskIconInfo[i]]),
  1924. "onclick": U.UF.C.closure(function (obj) {
  1925. //防止拖动图标即打开了桌面应用
  1926. U.MD.D.click(this, obj);
  1927. }, [_nsfxStudentDeskIconInfo[i]])
  1928. }, _frag); //
  1929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  1931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  1932. }
  1933. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1934. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1935. _content = $$("div", {
  1936. className: "U_MD_D_KO",
  1937. "onmousedown": U.UF.C.closure(function (obj) {
  1938. //防止拖动图标即打开了桌面应用
  1939. U.MD.D.click(this, obj);
  1940. }, [_siesStudentDeskIconInfo[i]]),
  1941. "onclick": U.UF.C.closure(function (obj) {
  1942. //防止拖动图标即打开了桌面应用
  1943. U.MD.D.click(this, obj);
  1944. }, [_siesStudentDeskIconInfo[i]])
  1945. }, _frag); //
  1946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1949. }
  1950. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1951. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1952. _content = $$("div", {
  1953. className: "U_MD_D_KO",
  1954. "onmousedown": U.UF.C.closure(function (obj) {
  1955. //防止拖动图标即打开了桌面应用
  1956. U.MD.D.click(this, obj);
  1957. }, [_guzmsStudentDeskIconInfo[i]]),
  1958. "onclick": U.UF.C.closure(function (obj) {
  1959. //防止拖动图标即打开了桌面应用
  1960. U.MD.D.click(this, obj);
  1961. }, [_guzmsStudentDeskIconInfo[i]])
  1962. }, _frag); //
  1963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1966. }
  1967. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1968. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1969. _content = $$("div", {
  1970. className: "U_MD_D_KO",
  1971. "onmousedown": U.UF.C.closure(function (obj) {
  1972. //防止拖动图标即打开了桌面应用
  1973. U.MD.D.click(this, obj);
  1974. }, [_hkStudentDeskIconInfo[i]]),
  1975. "onclick": U.UF.C.closure(function (obj) {
  1976. //防止拖动图标即打开了桌面应用
  1977. U.MD.D.click(this, obj);
  1978. }, [_hkStudentDeskIconInfo[i]])
  1979. }, _frag); //
  1980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1983. }
  1984. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1985. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1986. _content = $$("div", {
  1987. className: "U_MD_D_KO",
  1988. "onmousedown": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_hkaceStudentDeskIconInfo[i]]),
  1992. "onclick": U.UF.C.closure(function (obj) {
  1993. //防止拖动图标即打开了桌面应用
  1994. U.MD.D.click(this, obj);
  1995. }, [_hkaceStudentDeskIconInfo[i]])
  1996. }, _frag); //
  1997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2000. }
  2001. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2002. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2003. _content = $$("div", {
  2004. className: "U_MD_D_KO",
  2005. "onmousedown": U.UF.C.closure(function (obj) {
  2006. //防止拖动图标即打开了桌面应用
  2007. U.MD.D.click(this, obj);
  2008. }, [_cocobizStudentDeskIconInfo[i]]),
  2009. "onclick": U.UF.C.closure(function (obj) {
  2010. //防止拖动图标即打开了桌面应用
  2011. U.MD.D.click(this, obj);
  2012. }, [_cocobizStudentDeskIconInfo[i]])
  2013. }, _frag); //
  2014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2017. }
  2018. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2019. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2020. _content = $$("div", {
  2021. className: "U_MD_D_KO",
  2022. "onmousedown": U.UF.C.closure(function (obj) {
  2023. //防止拖动图标即打开了桌面应用
  2024. U.MD.D.click(this, obj);
  2025. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2026. "onclick": U.UF.C.closure(function (obj) {
  2027. //防止拖动图标即打开了桌面应用
  2028. U.MD.D.click(this, obj);
  2029. }, [_xxzjkyStudentDeskIconInfo[i]])
  2030. }, _frag); //
  2031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2034. }
  2035. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2036. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2037. _content = $$("div", {
  2038. className: "U_MD_D_KO",
  2039. "onmousedown": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_studentDesktopIconInfo[i]]),
  2043. "onclick": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_studentDesktopIconInfo[i]])
  2047. }, _frag); //
  2048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2051. }
  2052. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2053. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2054. _content = $$("div", {
  2055. className: "U_MD_D_KO",
  2056. "onmousedown": U.UF.C.closure(function (obj) {
  2057. //防止拖动图标即打开了桌面应用
  2058. U.MD.D.click(this, obj);
  2059. }, [_tcStudentDeskIconInfo[i]]),
  2060. "onclick": U.UF.C.closure(function (obj) {
  2061. //防止拖动图标即打开了桌面应用
  2062. U.MD.D.click(this, obj);
  2063. }, [_tcStudentDeskIconInfo[i]])
  2064. }, _frag); //
  2065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2068. }
  2069. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2070. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2071. _content = $$("div", {
  2072. className: "U_MD_D_KO",
  2073. "onmousedown": U.UF.C.closure(function (obj) {
  2074. //防止拖动图标即打开了桌面应用
  2075. U.MD.D.click(this, obj);
  2076. }, [_szscStudentDeskIconInfo[i]]),
  2077. "onclick": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_szscStudentDeskIconInfo[i]])
  2081. }, _frag); //
  2082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2085. }
  2086. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2087. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2088. _content = $$("div", {
  2089. className: "U_MD_D_KO",
  2090. "onmousedown": U.UF.C.closure(function (obj) {
  2091. //防止拖动图标即打开了桌面应用
  2092. U.MD.D.click(this, obj);
  2093. }, [_studentDesktopIconInfo3[i]]),
  2094. "onclick": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_studentDesktopIconInfo3[i]])
  2098. }, _frag); //
  2099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2102. }
  2103. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2104. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2105. _content = $$("div", {
  2106. className: "U_MD_D_KO",
  2107. "onmousedown": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_studentDesktopIconInfo2[i]]),
  2111. "onclick": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_studentDesktopIconInfo2[i]])
  2115. }, _frag); //
  2116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2119. }
  2120. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2121. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2122. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2123. continue
  2124. }
  2125. _content = $$("div", {
  2126. className: "U_MD_D_KO",
  2127. "onmousedown": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_wanketeacherDesktopIconInfo[i]]),
  2131. "onclick": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_wanketeacherDesktopIconInfo[i]])
  2135. }, _frag); //
  2136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2139. }
  2140. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2141. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2142. _content = $$("div", {
  2143. className: "U_MD_D_KO",
  2144. "onmousedown": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_wankeAdminDesktopIconInfo[i]]),
  2148. "onclick": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_wankeAdminDesktopIconInfo[i]])
  2152. }, _frag); //
  2153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2156. }
  2157. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2158. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2159. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2160. continue
  2161. }
  2162. _content = $$("div", {
  2163. className: "U_MD_D_KO",
  2164. "onmousedown": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2168. "onclick": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_scnuaiTeacherDeskIconInfo[i]])
  2172. }, _frag); //
  2173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2176. }
  2177. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2178. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2179. _content = $$("div", {
  2180. className: "U_MD_D_KO",
  2181. "onmousedown": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_scnuaiAdminDeskIconInfo[i]]),
  2185. "onclick": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_scnuaiAdminDeskIconInfo[i]])
  2189. }, _frag); //
  2190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2193. }
  2194. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2195. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2196. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2197. continue
  2198. }
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_jccssylTeacherDeskIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_jccssylTeacherDeskIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2215. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2216. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2217. continue
  2218. }
  2219. _content = $$("div", {
  2220. className: "U_MD_D_KO",
  2221. "onmousedown": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_caleTeacherDeskIconInfo[i]]),
  2225. "onclick": U.UF.C.closure(function (obj) {
  2226. //防止拖动图标即打开了桌面应用
  2227. U.MD.D.click(this, obj);
  2228. }, [_caleTeacherDeskIconInfo[i]])
  2229. }, _frag); //
  2230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2233. }
  2234. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2235. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2236. _content = $$("div", {
  2237. className: "U_MD_D_KO",
  2238. "onmousedown": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_tpcOrganizerDeskIconInfo[i]]),
  2242. "onclick": U.UF.C.closure(function (obj) {
  2243. //防止拖动图标即打开了桌面应用
  2244. U.MD.D.click(this, obj);
  2245. }, [_tpcOrganizerDeskIconInfo[i]])
  2246. }, _frag); //
  2247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2250. }
  2251. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2252. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2253. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2254. continue
  2255. }
  2256. _content = $$("div", {
  2257. className: "U_MD_D_KO",
  2258. "onmousedown": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_tpcTeacherDeskIconInfo[i]]),
  2262. "onclick": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_tpcTeacherDeskIconInfo[i]])
  2266. }, _frag); //
  2267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2270. }
  2271. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2272. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2273. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2274. continue
  2275. }
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_teacherDesktopIconInfo2[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_teacherDesktopIconInfo2[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2290. }
  2291. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2292. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2293. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2294. continue
  2295. }
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_thuioeTeacherDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_thuioeTeacherDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2312. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2313. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2314. continue
  2315. }
  2316. _content = $$("div", {
  2317. className: "U_MD_D_KO",
  2318. "onmousedown": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_lotechTeacherDeskIconInfo[i]]),
  2322. "onclick": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_lotechTeacherDeskIconInfo[i]])
  2326. }, _frag); //
  2327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2330. }//
  2331. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2332. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2333. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2334. continue
  2335. }
  2336. _content = $$("div", {
  2337. className: "U_MD_D_KO",
  2338. "onmousedown": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2342. "onclick": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2346. }, _frag); //
  2347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2350. }
  2351. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2352. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2353. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2354. continue
  2355. }
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_siesTeacherDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_siesTeacherDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2372. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2373. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2374. continue
  2375. }
  2376. _content = $$("div", {
  2377. className: "U_MD_D_KO",
  2378. "onmousedown": U.UF.C.closure(function (obj) {
  2379. //防止拖动图标即打开了桌面应用
  2380. U.MD.D.click(this, obj);
  2381. }, [_guzmsTeacherDeskIconInfo[i]]),
  2382. "onclick": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_guzmsTeacherDeskIconInfo[i]])
  2386. }, _frag); //
  2387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2390. }
  2391. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2392. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2393. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2394. continue
  2395. }
  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. }, [_longhuaTeacherDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_longhuaTeacherDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2412. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2413. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2414. continue
  2415. }
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_ytyTeacherDeskIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_ytyTeacherDeskIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2432. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2433. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2434. continue
  2435. }
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_yunhaiTeacherDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2450. } //_hkStudentDeskIconInfo
  2451. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2452. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2453. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2454. continue
  2455. }
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2472. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2473. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2474. continue
  2475. }
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_hkTeacherDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_hkTeacherDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2492. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2493. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2494. continue
  2495. }
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_hkaceTeacherDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_hkaceTeacherDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2512. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2513. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2514. continue
  2515. }
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_cocobizTeacherDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_cocobizTeacherDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2532. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2533. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2534. continue
  2535. }
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2552. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_gdjgAdminDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_gdjgAdminDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2569. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2570. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2571. continue
  2572. }
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_gdjgTeacherDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_gdjgTeacherDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2589. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2590. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2591. continue
  2592. }
  2593. _content = $$("div", {
  2594. className: "U_MD_D_KO",
  2595. "onmousedown": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_szherTeacherDeskIconInfo[i]]),
  2599. "onclick": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_szherTeacherDeskIconInfo[i]])
  2603. }, _frag); //
  2604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2607. }
  2608. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2609. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2610. _content = $$("div", {
  2611. className: "U_MD_D_KO",
  2612. "onmousedown": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_heyuannAdminDeskIconInfo[i]]),
  2616. "onclick": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_heyuannAdminDeskIconInfo[i]])
  2620. }, _frag); //
  2621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2624. }
  2625. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2626. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2627. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2628. continue
  2629. }
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_heyuanTeacherDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_heyuanTeacherDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2644. } //
  2645. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2646. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_dseiAdminDeskIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_dseiAdminDeskIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2663. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2664. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2665. continue
  2666. }
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_dseiTeacherDeskIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_dseiTeacherDeskIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2681. } //
  2682. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2683. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2684. _content = $$("div", {
  2685. className: "U_MD_D_KO",
  2686. "onmousedown": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_chjyjAdminDeskIconInfo[i]]),
  2690. "onclick": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_chjyjAdminDeskIconInfo[i]])
  2694. }, _frag); //
  2695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2698. }//
  2699. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2700. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2701. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2702. continue
  2703. }
  2704. _content = $$("div", {
  2705. className: "U_MD_D_KO",
  2706. "onmousedown": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_chjyjTeacherDeskIconInfo[i]]),
  2710. "onclick": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_chjyjTeacherDeskIconInfo[i]])
  2714. }, _frag); //
  2715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2718. }
  2719. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2720. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2721. _content = $$("div", {
  2722. className: "U_MD_D_KO",
  2723. "onmousedown": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_szjkyAdminDeskIconInfo[i]]),
  2727. "onclick": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szjkyAdminDeskIconInfo[i]])
  2731. }, _frag); //
  2732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2735. }//
  2736. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2737. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2738. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2739. continue
  2740. }
  2741. _content = $$("div", {
  2742. className: "U_MD_D_KO",
  2743. "onmousedown": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_szjkyTeacherDeskIconInfo[i]]),
  2747. "onclick": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_szjkyTeacherDeskIconInfo[i]])
  2751. }, _frag); //
  2752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2755. }
  2756. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2757. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2758. _content = $$("div", {
  2759. className: "U_MD_D_KO",
  2760. "onmousedown": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_futianAdminDeskIconInfo[i]]),
  2764. "onclick": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_futianAdminDeskIconInfo[i]])
  2768. }, _frag); //
  2769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2772. }
  2773. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2774. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2775. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2776. continue
  2777. }
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_futianTeacherDeskIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_futianTeacherDeskIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2792. }
  2793. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2794. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2795. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2796. continue
  2797. }
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_MingdeTeacherDeskIcon[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_MingdeTeacherDeskIcon[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2812. }
  2813. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2814. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_lhsAdminDesktopIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_lhsAdminDesktopIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2831. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2832. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2833. continue
  2834. }
  2835. _content = $$("div", {
  2836. className: "U_MD_D_KO",
  2837. "onmousedown": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_lhsteacherDesktopIconInfo[i]]),
  2841. "onclick": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_lhsteacherDesktopIconInfo[i]])
  2845. }, _frag); //
  2846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2849. }
  2850. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2851. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2852. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2853. continue
  2854. }
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_zhoujiateacherDesktopIconInfo[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2869. }
  2870. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2871. for (i = 0; i < _hanDeskIcon.length; i++) {
  2872. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2873. continue
  2874. }
  2875. _content = $$("div", {
  2876. className: "U_MD_D_KO",
  2877. "onmousedown": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_hanDeskIcon[i]]),
  2881. "onclick": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_hanDeskIcon[i]])
  2885. }, _frag); //
  2886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2889. }
  2890. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2891. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2892. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2893. continue
  2894. }
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_orgStemDeskIcon[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_orgStemDeskIcon[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2909. }
  2910. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2911. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2912. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2913. continue
  2914. }
  2915. _content = $$("div", {
  2916. className: "U_MD_D_KO",
  2917. "onmousedown": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_szulsDeskIcon[i]]),
  2921. "onclick": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_szulsDeskIcon[i]])
  2925. }, _frag); //
  2926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2929. }
  2930. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2931. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2932. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2933. continue
  2934. }
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_orgDesktopIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_orgDesktopIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2951. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2952. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_schoolDesktopIconInfo[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_schoolDesktopIconInfo[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2971. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2972. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_GMteacherDesktopIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_GMteacherDesktopIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2991. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2992. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2993. continue
  2994. }
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_SONGteacherDesktopIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_SONGteacherDesktopIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3011. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_GMstudentDesktopIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_GMstudentDesktopIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3028. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3029. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3030. continue
  3031. }
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_tcTeacherDeskIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_tcTeacherDeskIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3048. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3049. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_tcOrganizerDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_tcOrganizerDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3068. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3069. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3070. continue
  3071. }
  3072. _content = $$("div", {
  3073. className: "U_MD_D_KO",
  3074. "onmousedown": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_szscTeacherDeskIconInfo[i]]),
  3078. "onclick": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_szscTeacherDeskIconInfo[i]])
  3082. }, _frag); //
  3083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3086. }
  3087. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3088. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3089. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3090. continue
  3091. }
  3092. _content = $$("div", {
  3093. className: "U_MD_D_KO",
  3094. "onmousedown": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_szscOrganizerDeskIconInfo[i]]),
  3098. "onclick": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_szscOrganizerDeskIconInfo[i]])
  3102. }, _frag); //
  3103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3106. }
  3107. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3108. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3109. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3110. continue
  3111. }
  3112. _content = $$("div", {
  3113. className: "U_MD_D_KO",
  3114. "onmousedown": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_nsfxTeacherDeskIconInfo[i]]),
  3118. "onclick": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_nsfxTeacherDeskIconInfo[i]])
  3122. }, _frag); //
  3123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3126. }
  3127. } else {
  3128. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3129. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3130. continue
  3131. }
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_teacherDesktopIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_teacherDesktopIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. }
  3148. } else {
  3149. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. style: { 'width': '124px', 'height': '145px' },
  3153. "onmousedown": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_easyDesktopIconInfo[i]]),
  3157. "onclick": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_easyDesktopIconInfo[i]])
  3161. }, _frag); //
  3162. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3165. }
  3166. }
  3167. if (type == 1) {
  3168. //加载好后给图标定位
  3169. U.MD.D.iconPostion($(_frag).Child());
  3170. } else {
  3171. //加载好后给图标定位
  3172. U.MD.D.iconPostion2($(_frag).Child());
  3173. }
  3174. //把图标加载到页面
  3175. el.appendChild(_frag);
  3176. }
  3177. /**
  3178. * 显示任务栏
  3179. *
  3180. * @param {element} 桌面元素
  3181. */
  3182. U.MD.D.I.displayTaskbar = function (el) {
  3183. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3184. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3185. //任务栏位置变化
  3186. U.selectEl(el).css({ "bottom": "0px" });
  3187. //桌面位置变话
  3188. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3189. }
  3190. }
  3191. //#region 桌面图标拖动逻辑
  3192. /**
  3193. * 桌面排列图标
  3194. *
  3195. * @param {element} 桌面元素
  3196. * @param {object} 上下相距的距离
  3197. * @param {object} 左右相距的距离
  3198. * @return {object} 命名空间
  3199. */
  3200. U.MD.D.iconPostion = function (childs, top, left) {
  3201. var i; //用于循环处理
  3202. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3203. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3204. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3205. for (i = 0; i < childs.length; i++) {
  3206. //如果竖排top超过了范围处理
  3207. if (top + 95 > US.height - 10) {
  3208. //left超过了页面范围处理,则向上重叠打印处理
  3209. if ((left + 180) > US.width) {
  3210. top -= 110;
  3211. left -= 90;
  3212. }
  3213. //没有超过范围,那么left+90添加到下一个竖排打印
  3214. else {
  3215. left += 90;
  3216. top = 15;
  3217. };
  3218. }
  3219. //给图标的位置赋值
  3220. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3221. if (i < childs.length - 1) {
  3222. //页面图标每次向下加95
  3223. top += 95;
  3224. }
  3225. }
  3226. //返回最后调用的图标的位置
  3227. return [top, left];
  3228. }
  3229. /**
  3230. * 桌面排列图标
  3231. *
  3232. * @param {element} 桌面元素
  3233. * @param {object} 上下相距的距离
  3234. * @param {object} 左右相距的距离
  3235. * @return {object} 命名空间
  3236. */
  3237. U.MD.D.iconPostion2 = function (childs, top, left) {
  3238. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3239. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3240. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3241. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3242. for (i = 0; i < childs.length; i++) {
  3243. //如果竖排top超过了范围处理
  3244. if (left + 150 > US.width - 10) {
  3245. //left超过了页面范围处理,则向上重叠打印处理
  3246. if ((top + 180) > US.Height) {
  3247. top -= 150;
  3248. left -= 150;
  3249. }
  3250. //没有超过范围,那么left+90添加到下一个竖排打印
  3251. else {
  3252. top += 150;
  3253. left = ol;
  3254. };
  3255. }
  3256. //给图标的位置赋值
  3257. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3258. if (i < childs.length - 1) {
  3259. //页面图标每次向下加95
  3260. left += 150;
  3261. }
  3262. }
  3263. //返回最后调用的图标的位置
  3264. return [top, left];
  3265. }
  3266. /**
  3267. * 桌面点击事件逻辑
  3268. *
  3269. * @param {element} 桌面元素
  3270. * @param {object} 上下相距的距离
  3271. * @param {object} 左右相距的距离
  3272. * @return {object} 命名空间
  3273. */
  3274. U.MD.D.click = function (el, obj) {
  3275. var _buttonnumber = event.button; //点击的按钮的事件值
  3276. var _userinfo = US.userInfo;
  3277. U.UF.EV.stopBubble(); //阻止向上冒泡
  3278. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3279. if (_buttonnumber < 2) {
  3280. //如果是click事件的处理
  3281. if (event.type == "click") {
  3282. //如果元素在mousemove事件中没有移动则出发click事件
  3283. if (!U.MD.D.I.IsDrag) {
  3284. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3285. U.alert("请先登录您的账号!");
  3286. setTimeout(() => {
  3287. U.MD.U.L.login();
  3288. }, 2000);
  3289. } else {
  3290. //打开应用处理
  3291. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3292. }
  3293. }
  3294. }
  3295. //如果是mouse事件的处理
  3296. else {
  3297. if (US.Config.type == '1') {
  3298. //拖动处理,添加拖动和拖动结束事件
  3299. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3300. }
  3301. }
  3302. U.MD.D.I.IsDrag = false;
  3303. }
  3304. }
  3305. /**
  3306. * 拖动的处理
  3307. *
  3308. */
  3309. U.MD.D.iconMove = function () {
  3310. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3311. U.MD.D.I.IsDrag = true;
  3312. }
  3313. /**
  3314. * 拖动结束后,这里是定位处理,以网状的形式定位
  3315. *
  3316. * @param {element} 拖动的元素
  3317. * @return {object} 命名空间
  3318. */
  3319. U.MD.D.iconUp = function (el) {
  3320. var _top = 15,
  3321. _left = 20,
  3322. _margin,
  3323. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3324. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3325. if (_positioninfo["OT"] > 15) {
  3326. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3327. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3328. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3329. }
  3330. if (_positioninfo["OL"] > 20) {
  3331. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3332. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3333. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3334. }
  3335. //while循环判断么一个重叠的元素
  3336. do {
  3337. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3338. _top = _positioninfo[0] + 95; //得到定位后的top
  3339. _left = _positioninfo[1]; //得到定位后的left
  3340. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3341. }
  3342. /**
  3343. * 判断拖动后图标是否重叠
  3344. *
  3345. * @param {element} 拖动的元素
  3346. * @param {element} 桌面所有的元素
  3347. * @param {array} 拖动元素的位置
  3348. ----------[0] 上 top
  3349. ----------[1] 左 left
  3350. * @return {object} 命名空间
  3351. */
  3352. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3353. //循环所有的图标
  3354. for (var i = 0; i < childs.length; i++) {
  3355. //判断有没有和该图标诶子重叠的元素
  3356. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3357. return childs[i]; //如果有返回
  3358. }
  3359. }
  3360. }
  3361. //#endregion
  3362. //#endregion
  3363. //#region 桌面应用
  3364. /**
  3365. * 打开应用
  3366. *
  3367. * @param {string} 类型
  3368. -----------------Disk 网盘系统
  3369. -----------------PDisk 学习系统网盘
  3370. -----------------Poto 图片
  3371. -----------------Video 视频
  3372. -----------------Music 音乐
  3373. -----------------Word word
  3374. -----------------Excel excel
  3375. -----------------Txt 记事本
  3376. -----------------PB 学习系统
  3377. -----------------Blog 朋友圈系统
  3378. -----------------FTP ftp系统
  3379. -----------------Group 好友群
  3380. -----------------SY 首页系统
  3381. -----------------Set 个人设置
  3382. -----------------XSet 系统设置
  3383. -----------------App 我们所有的app
  3384. -----------------BC c.1473.cn 平台
  3385. -----------------CWeb d.1473.cn 变成平台
  3386. -----------------其他的外联系统 我们统一用iframe打开
  3387. * @param {array} 类型
  3388. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3389. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3390. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3391. 如果第一个参数为其他,则无第二个参数
  3392. * @returns {array}
  3393. */
  3394. window.addEventListener('message', function (e) { // 监听 message 事件
  3395. // alert(e.data.type);
  3396. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3397. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3398. //3是展示全部阶段 2学生 1老师 4专家
  3399. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3400. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3401. //3是展示全部阶段 2学生 1老师 4专家
  3402. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3403. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3404. //3是展示全部阶段 2学生 1老师 4专家
  3405. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3406. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3407. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3408. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3409. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3410. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3411. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3412. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3413. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3414. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3415. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3416. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3417. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3418. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3419. //3是展示全部阶段 2学生 1老师 4专家
  3420. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3421. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3422. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3423. U.MD.D.I.selectUser();
  3424. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3425. var _formel = document.getElementById("study");
  3426. U.UF.F.windowZooming(_formel);
  3427. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3428. var _formel = document.getElementById("studyDetail");
  3429. U.UF.F.windowZooming(_formel);
  3430. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3431. var _formel = document.getElementById("studyDetail");
  3432. U.UF.F.windowZooming(_formel);
  3433. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3434. var _formel = document.getElementById("studentStudy");
  3435. U.UF.F.windowZooming(_formel);
  3436. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3437. // var _formel = document.getElementById("study");
  3438. //如果最大化了,那么就把他缩小
  3439. // if (_formel.ismaximize) {
  3440. // return;
  3441. // }
  3442. // U.UF.F.windowZooming(_formel);
  3443. // U.UF.F.topWindow(_formel);
  3444. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3445. // var _formel = document.getElementById("studyDetail");
  3446. //如果最大化了,那么就把他缩小
  3447. // if (_formel.ismaximize) {
  3448. // return;
  3449. // }
  3450. // U.UF.F.windowZooming(_formel);
  3451. // U.UF.F.topWindow(_formel);
  3452. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3453. // var _formel = document.getElementById("studentStudy");
  3454. // if (_formel.ismaximize) {
  3455. // return;
  3456. // }
  3457. // U.UF.F.windowZooming(_formel);
  3458. // U.UF.F.topWindow(_formel);
  3459. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3460. var _formel = document.getElementById("study");
  3461. // if (_formel.ismaximize) {
  3462. // return;
  3463. // }
  3464. // U.UF.F.windowZooming(_formel);
  3465. U.UF.F.topWindow(_formel);
  3466. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3467. var _formel = document.getElementById("studentIndex");
  3468. U.UF.F.windowZooming(_formel);
  3469. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3470. var _formel = document.getElementById("studyDetailS");
  3471. U.UF.F.windowZooming(_formel);
  3472. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3473. var _formel = document.getElementById("studioIndex");
  3474. U.UF.F.windowZooming(_formel);
  3475. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3476. var _formel = document.getElementById("studyDetailStudio");
  3477. U.UF.F.windowZooming(_formel);
  3478. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3479. var _formel = document.getElementById("studyDetailStudio");
  3480. U.UF.F.windowZooming(_formel);
  3481. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3482. var _formel = document.getElementById("studyDetailNT");
  3483. U.UF.F.windowZooming(_formel);
  3484. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3485. var _formel = document.getElementById("studyDetailS");
  3486. U.UF.F.windowZooming(_formel);
  3487. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3488. var _formel = document.getElementById("studyDetailS");
  3489. U.UF.F.topWindow(_formel);
  3490. } else if (e.data.tools && e.data.tools == "1") {
  3491. // U.MD.D.I.openApplication("whiteboard")
  3492. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3493. } else if (e.data.tools && e.data.tools == "2") {
  3494. U.MD.D.I.openApplication("note")
  3495. } else if (e.data.tools && e.data.tools == "3") {
  3496. // U.MD.D.I.openApplication("mind")
  3497. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3498. } else if (e.data.tools && e.data.tools == "4") {
  3499. U.MD.D.I.openApplication("investigation")
  3500. } else if (e.data.tools && e.data.tools == "6") {
  3501. // U.MD.D.I.openApplication("doc")
  3502. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3503. } else if (e.data.tools && e.data.tools == "7") {
  3504. // U.MD.D.I.openApplication("mindNetwork")
  3505. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3506. } else if (e.data.tools && e.data.tools == "8") {
  3507. U.MD.D.I.openApplication("library")
  3508. } else if (e.data.tools && e.data.tools == "17") {
  3509. U.MD.D.I.openApplication("stuLibrary")
  3510. } else if (e.data.tools && e.data.tools == "18") {
  3511. U.MD.D.I.openApplication("train")
  3512. } else if (e.data.tools && e.data.tools == "21") {
  3513. U.MD.D.I.openApplication("program")
  3514. } else if (e.data.tools && e.data.tools == "22") {
  3515. U.MD.D.I.openApplication("AIprogram2")
  3516. } else if (e.data.tools && e.data.tools == "23") {
  3517. U.MD.D.I.openApplication("Pythonprogram")
  3518. } else if (e.data.tools && e.data.tools == "24") {
  3519. U.MD.D.I.openApplication("AIprogram")
  3520. } else if (e.data.tools && e.data.tools == "25") {
  3521. U.MD.D.I.openApplication("sys")
  3522. } else if (e.data.tools && e.data.tools == "26") {
  3523. // U.MD.D.I.openApplication("courseDesign")
  3524. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3525. } else if (e.data.tools && e.data.tools == "31") {
  3526. U.MD.D.I.openApplication("netWorkPanel")
  3527. } else if (e.data.tools && e.data.tools == "32") {
  3528. U.MD.D.I.openApplication("codeEdit")
  3529. } else if (e.data.tools && e.data.tools == "57") {
  3530. U.MD.D.I.openApplication("CocoPi")
  3531. } else if (e.data.tools && e.data.tools == "63") {
  3532. U.MD.D.I.openApplication("Wood")
  3533. } else if (e.data.tools && e.data.tools == "58") {
  3534. U.MD.D.I.openApplication("car")
  3535. } else if (e.data.tools && e.data.tools == "59") {
  3536. U.MD.D.I.openApplication("lineSearch")
  3537. } else if (e.data.tools && e.data.tools == "60") {
  3538. U.MD.D.I.openApplication("deepLearning")
  3539. } else if (e.data.tools && e.data.tools == "61") {
  3540. U.MD.D.I.openApplication("allHistory")
  3541. } else if (e.data.tools && e.data.tools == "28") {
  3542. U.MD.D.I.openApplication("translation")
  3543. } else if (e.data.tools && e.data.tools == "37") {
  3544. U.MD.D.I.openApplication("mohe")
  3545. } else if (e.data.tools && e.data.tools == "38") {
  3546. U.MD.D.I.openApplication("24game")
  3547. } else if (e.data.tools && e.data.tools == "39") {
  3548. U.MD.D.I.openApplication("GeoGebra")
  3549. } else if (e.data.tools && e.data.tools == "43") {
  3550. U.MD.D.I.openApplication("studentEvaluate")
  3551. } else if (e.data.tools && e.data.tools == "44") {
  3552. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3553. } else if (e.data.tools && e.data.tools == "46") {
  3554. U.MD.D.I.openApplication("project")
  3555. } else if (e.data.tools && e.data.tools == "71") {
  3556. U.MD.D.I.openApplication("aigptCourse")
  3557. } else if (e.data.tools && e.data.tools == "1s") {
  3558. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3559. } else if (e.data.tools && e.data.tools == "3s") {
  3560. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3561. } else if (e.data.tools && e.data.tools == "6s") {
  3562. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3563. } else if (e.data.tools && e.data.tools == "1studio") {
  3564. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3565. } else if (e.data.tools && e.data.tools == "3studio") {
  3566. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3567. } else if (e.data.tools && e.data.tools == "6studio") {
  3568. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3569. } else if (e.data.tools && e.data.tools == "3y") {
  3570. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3571. } else if (e.data.tools && e.data.tools == "1y") {
  3572. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3573. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3574. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3575. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3576. U.MD.D.I.openApplication("AIAnalyse")
  3577. } else if (e.data.tools && e.data.tools == "1teacher") {
  3578. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3579. } else if (e.data.tools && e.data.tools == "3teacher") {
  3580. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3581. } else if (e.data.tools && e.data.tools == "7teacher") {
  3582. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3583. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3584. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3585. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3586. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3587. } else if (e.data.tools && e.data.tools == "1E") {
  3588. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3589. } else if (e.data.tools && e.data.tools == "3E") {
  3590. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3591. } else if (e.data.tools && e.data.tools == "57y") {
  3592. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3593. } else if (e.data.tools && e.data.tools == "57u") {
  3594. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3595. } else if (e.data.tools && e.data.tools == "57teacher") {
  3596. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3597. } else if (e.data.tools && e.data.tools == "64") {
  3598. U.MD.D.I.openApplication("AIChat")
  3599. } else if (e.data.tools && e.data.tools == "66") {
  3600. U.MD.D.I.openApplication("formulaEdi")
  3601. } else if (e.data.tools && e.data.tools == "67") {
  3602. U.MD.D.I.openApplication("molStr")
  3603. } else if (e.data.tools && e.data.tools == "68") {
  3604. U.MD.D.I.openApplication("timeAxis")
  3605. } else if (e.data.tools && e.data.tools == "openCourse") {
  3606. let _data = {
  3607. typea: e.data.typea || '',
  3608. typeb: e.data.typeb || '',
  3609. typed: e.data.typed || '',
  3610. }
  3611. U.MD.D.I.openInApplication("index", _data)
  3612. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3613. let _data = {
  3614. classid: e.data.classid || '',
  3615. }
  3616. U.MD.D.I.openInApplication("dataClass", _data)
  3617. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3618. let _data = {
  3619. cid: e.data.cid || '',
  3620. gid: e.data.gid || '',
  3621. }
  3622. U.MD.D.I.openInApplication("opencCscl", _data)
  3623. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3624. U.MD.D.I.openApplication("dataBoardTest")
  3625. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3626. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3627. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3628. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3629. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3630. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3631. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3632. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3633. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3634. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3635. }else if (e.data.tools && e.data.tools == "loginSz") {
  3636. U.MD.D.I.openInApplication("loginSz")
  3637. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3638. if($('#classroom_observation_board')[0]){
  3639. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3640. }
  3641. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3642. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3643. if($('#classroom_observation_ob_comment')[0]){
  3644. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3645. }
  3646. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3647. }
  3648. });
  3649. U.MD.D.I.selectUser = function () {
  3650. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3651. if (res.value[0].length > 0) {
  3652. US.userInfo = res.value[0][0];
  3653. $(".userName")[0].innerHTML = US.userInfo.username;
  3654. }
  3655. }, [], { "type": "GET", "withCredentials": true });
  3656. }
  3657. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3658. var _userinfo = US.userInfo, //登录用户信息
  3659. _userid = US.userInfo.userid, //登录用户id
  3660. _oid = _userinfo.organizeid,
  3661. _type = US.userInfo.type,
  3662. _org = US.userInfo.org,
  3663. _role = US.userInfo.role,
  3664. _classId = US.userInfo.classid;
  3665. if (_type == 4) {
  3666. tType = 4
  3667. }
  3668. switch (str) {
  3669. case "studyDetailNT": //无终端模式
  3670. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3671. setTimeout(() => {
  3672. U.MD.U.L.login();
  3673. }, 2000);
  3674. } else {
  3675. _formdiv = new U.UF.UI.form(
  3676. "课程详情",
  3677. $$("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 }), {
  3678. "id": "studyDetailNT",
  3679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3680. "onresize": function () { }
  3681. }, {
  3682. closecallback: function () { }
  3683. }, { "style": { "height": "36px" } }).form; //创建窗体
  3684. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3685. break;
  3686. }
  3687. case "studyDetail":
  3688. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3689. setTimeout(() => {
  3690. U.MD.U.L.login();
  3691. }, 2000);
  3692. } else {
  3693. _formdiv = new U.UF.UI.form(
  3694. "课程详情",
  3695. $$("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 }), {
  3696. "id": "studyDetail",
  3697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3698. "onresize": function () { }
  3699. }, {
  3700. closecallback: function () { }
  3701. }, { "style": { "height": "36px" } }).form; //创建窗体
  3702. _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); } }
  3703. break;
  3704. }
  3705. case "studyDetailTrain":
  3706. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3707. setTimeout(() => {
  3708. U.MD.U.L.login();
  3709. }, 2000);
  3710. } else {
  3711. _formdiv = new U.UF.UI.form(
  3712. "培训详情",
  3713. $$("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 }), {
  3714. "id": "studyDetailTrain",
  3715. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3721. break;
  3722. }
  3723. case "studyDetailS":
  3724. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3725. setTimeout(() => {
  3726. U.MD.U.L.login();
  3727. }, 2000);
  3728. } else {
  3729. _formdiv = new U.UF.UI.form(
  3730. "项目详情",
  3731. $$("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 }), {
  3732. "id": "studyDetailS",
  3733. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3734. "onresize": function () { }
  3735. }, {
  3736. closecallback: function () { }
  3737. }, { "style": { "height": "36px" } }).form; //创建窗体
  3738. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3739. break;
  3740. }
  3741. case "studyDetailStudio":
  3742. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3743. setTimeout(() => {
  3744. U.MD.U.L.login();
  3745. }, 2000);
  3746. } else {
  3747. _formdiv = new U.UF.UI.form(
  3748. "工作详情",
  3749. $$("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 }), {
  3750. "id": "studyDetailStudio",
  3751. "style": { "width": "95%", "height": "95%", "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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3757. break;
  3758. }
  3759. case "studyDetailS5":
  3760. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3761. setTimeout(() => {
  3762. U.MD.U.L.login();
  3763. }, 2000);
  3764. } else {
  3765. _formdiv = new U.UF.UI.form(
  3766. "项目详情",
  3767. $$("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 }), {
  3768. "id": "studyDetailS",
  3769. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3770. "onresize": function () { }
  3771. }, {
  3772. closecallback: function () { }
  3773. }, { "style": { "height": "36px" } }).form; //创建窗体
  3774. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3775. break;
  3776. }
  3777. case "studyDetailGM":
  3778. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3779. setTimeout(() => {
  3780. U.MD.U.L.login();
  3781. }, 2000);
  3782. } else {
  3783. _formdiv = new U.UF.UI.form(
  3784. "课程详情",
  3785. $$("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 }), {
  3786. "id": "studyDetail",
  3787. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3793. break;
  3794. }
  3795. case "hanUrl":
  3796. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3797. setTimeout(() => {
  3798. U.MD.U.L.login();
  3799. }, 2000);
  3800. } else {
  3801. _formdiv = new U.UF.UI.form(
  3802. "汉字宫",
  3803. $$("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" }), {
  3804. "id": "hanUrl",
  3805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3806. "onresize": function () { }
  3807. }, {
  3808. closecallback: function () { }
  3809. }, { "style": { "height": "36px" } }).form; //创建窗体
  3810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3811. break;
  3812. }
  3813. case "index":
  3814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3815. setTimeout(() => {
  3816. U.MD.U.L.login();
  3817. }, 2000);
  3818. } else {
  3819. _formdiv = new U.UF.UI.form(
  3820. "课程中心",
  3821. $$("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 }), {
  3822. "id": "study",
  3823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3824. "onresize": function () { }
  3825. }, {
  3826. closecallback: function () { }
  3827. }, { "style": { "height": "36px" } }).form; //创建窗体
  3828. _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); } }
  3829. break;
  3830. }
  3831. case "dataClass":
  3832. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3833. setTimeout(() => {
  3834. U.MD.U.L.login();
  3835. }, 2000);
  3836. } else {
  3837. _formdiv = new U.UF.UI.form(
  3838. "数据报告",
  3839. $$("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 }), {
  3840. "id": "dataClass",
  3841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3842. "onresize": function () { }
  3843. }, {
  3844. closecallback: function () { }
  3845. }, { "style": { "height": "36px" } }).form; //创建窗体
  3846. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3847. break;
  3848. }
  3849. case "opencCscl":
  3850. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3851. setTimeout(() => {
  3852. U.MD.U.L.login();
  3853. }, 2000);
  3854. } else {
  3855. _formdiv = new U.UF.UI.form(
  3856. "协同建构",
  3857. $$("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 }), {
  3858. "id": "futureClass",
  3859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3860. "onresize": function () { }
  3861. }, {
  3862. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3863. }, { "style": { "height": "36px" } }).form; //创建窗体
  3864. _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); } }
  3865. break;
  3866. }
  3867. case "openCourseUpdate":
  3868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3869. setTimeout(() => {
  3870. U.MD.U.L.login();
  3871. }, 2000);
  3872. } else {
  3873. _formdiv = new U.UF.UI.form(
  3874. "课程管理",
  3875. $$("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 }), {
  3876. "id": "openCourseUpdate",
  3877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3878. "onresize": function () { }
  3879. }, {
  3880. closecallback: function () { }
  3881. }, { "style": { "height": "36px" } }).form; //创建窗体
  3882. break;
  3883. }
  3884. case "openNewCourseUpdate":
  3885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3886. setTimeout(() => {
  3887. U.MD.U.L.login();
  3888. }, 2000);
  3889. } else {
  3890. _formdiv = new U.UF.UI.form(
  3891. "课程管理",
  3892. $$("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 }), {
  3893. "id": "openCourseUpdate",
  3894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3895. "onresize": function () { }
  3896. }, {
  3897. closecallback: function () { }
  3898. }, { "style": { "height": "36px" } }).form; //创建窗体
  3899. break;
  3900. }
  3901. case "openCourseEUpdate":
  3902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3903. setTimeout(() => {
  3904. U.MD.U.L.login();
  3905. }, 2000);
  3906. } else {
  3907. _formdiv = new U.UF.UI.form(
  3908. "课程管理",
  3909. $$("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 }), {
  3910. "id": "openCourseUpdate",
  3911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3912. "onresize": function () { }
  3913. }, {
  3914. closecallback: function () { }
  3915. }, { "style": { "height": "36px" } }).form; //创建窗体
  3916. break;
  3917. }
  3918. case "openCourseAiUpdate":
  3919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3920. setTimeout(() => {
  3921. U.MD.U.L.login();
  3922. }, 2000);
  3923. } else {
  3924. _formdiv = new U.UF.UI.form(
  3925. "课程管理",
  3926. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3927. "id": "openCourseUpdate",
  3928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3929. "onresize": function () { }
  3930. }, {
  3931. closecallback: function () { }
  3932. }, { "style": { "height": "36px" } }).form; //创建窗体
  3933. break;
  3934. }
  3935. case "openCourseNewUpdate":
  3936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3937. setTimeout(() => {
  3938. U.MD.U.L.login();
  3939. }, 2000);
  3940. } else {
  3941. _formdiv = new U.UF.UI.form(
  3942. "课程管理",
  3943. $$("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 }), {
  3944. "id": "openCourseUpdate",
  3945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3946. "onresize": function () { }
  3947. }, {
  3948. closecallback: function () { }
  3949. }, { "style": { "height": "36px" } }).form; //创建窗体
  3950. break;
  3951. }
  3952. case "inviteLoginSz":
  3953. _formdiv = new U.UF.UI.form(
  3954. "随机码登录",
  3955. $$("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 }), {
  3956. "id": "loginSz",
  3957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3958. "onresize": function () { }
  3959. }, {
  3960. closecallback: function () { }
  3961. }, { "style": { "height": "36px" } }).form; //创建窗体
  3962. break;
  3963. case "loginSz":
  3964. _formdiv = new U.UF.UI.form(
  3965. "教师登录",
  3966. $$("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" }), {
  3967. "id": "loginSz",
  3968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3969. "onresize": function () { }
  3970. }, {
  3971. closecallback: function () { }
  3972. }, { "style": { "height": "36px" } }).form; //创建窗体
  3973. break;
  3974. case "teacher":
  3975. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3976. setTimeout(() => {
  3977. U.MD.U.L.login();
  3978. }, 2000);
  3979. } else {
  3980. _formdiv = new U.UF.UI.form(
  3981. "教师管理",
  3982. $$("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 }), {
  3983. "id": "teacher",
  3984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3985. "onresize": function () { }
  3986. }, {
  3987. closecallback: function () { }
  3988. }, { "style": { "height": "36px" } }).form; //创建窗体
  3989. break;
  3990. }
  3991. case "dataBoardSZArea":
  3992. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3993. setTimeout(() => {
  3994. U.MD.U.L.login();
  3995. }, 2000);
  3996. } else {
  3997. _formdiv = new U.UF.UI.form(
  3998. "综合数据看板",
  3999. $$("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 }), {
  4000. "id": "dataBoardSZArea",
  4001. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4002. "onresize": function () { }
  4003. }, {
  4004. closecallback: function () { }
  4005. }, { "style": { "height": "36px" } }).form; //创建窗体
  4006. break;
  4007. }
  4008. case "dataBoardSZCity":
  4009. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4010. setTimeout(() => {
  4011. U.MD.U.L.login();
  4012. }, 2000);
  4013. } else {
  4014. _formdiv = new U.UF.UI.form(
  4015. "综合数据看板",
  4016. $$("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 }), {
  4017. "id": "dataBoardSZCity",
  4018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4019. "onresize": function () { }
  4020. }, {
  4021. closecallback: function () { }
  4022. }, { "style": { "height": "36px" } }).form; //创建窗体
  4023. break;
  4024. }
  4025. case "classroom_observation_board":
  4026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4027. setTimeout(() => {
  4028. U.MD.U.L.login();
  4029. }, 2000);
  4030. } else {
  4031. _formdiv = new U.UF.UI.form(
  4032. "课堂观察",
  4033. $$("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 }), {
  4034. "id": "classroom_observation_board",
  4035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4036. "onresize": function () { }
  4037. }, {
  4038. closecallback: function () { }
  4039. }, { "style": { "height": "36px" } }).form; //创建窗体
  4040. break;
  4041. }
  4042. case "classroom_observation_ob_comment":
  4043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4044. setTimeout(() => {
  4045. U.MD.U.L.login();
  4046. }, 2000);
  4047. } else {
  4048. _formdiv = new U.UF.UI.form(
  4049. "课堂审核",
  4050. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4051. "id": "classroom_observation_ob_comment",
  4052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4053. "onresize": function () { }
  4054. }, {
  4055. closecallback: function () { }
  4056. }, { "style": { "height": "36px" } }).form; //创建窗体
  4057. break;
  4058. }
  4059. }
  4060. }
  4061. U.MD.D.I.openApplication = function (str, obj, info) {
  4062. obj = obj || {};
  4063. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4064. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4065. _userinfo = US.userInfo, //登录用户信息
  4066. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4067. _oid = obj.organizeid || _userinfo.organizeid,
  4068. _type = US.userInfo.type,
  4069. _org = US.userInfo.org,
  4070. _role = US.userInfo.role,
  4071. _classId = US.userInfo.classid,
  4072. _TscreenType = 1
  4073. _screenType = 2,
  4074. _SscreenType = 3;
  4075. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4076. return;
  4077. }
  4078. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4079. switch (str) {
  4080. case "studnetProject": //好友打开
  4081. _formdiv = new U.UF.UI.form(
  4082. "我的项目",
  4083. $$("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 }), {
  4084. "id": "studnetProject",
  4085. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4086. "onresize": function () { }
  4087. }, {
  4088. closecallback: function () { }
  4089. }, { "style": { "height": "36px" } }).form; //创建窗体
  4090. _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); } }
  4091. break;
  4092. case "studentEvaluate": //好友打开
  4093. _formdiv = new U.UF.UI.form(
  4094. "我的评价",
  4095. $$("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 }), {
  4096. "id": "studentEvaluate",
  4097. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4098. "onresize": function () { }
  4099. }, {
  4100. closecallback: function () { }
  4101. }, { "style": { "height": "36px" } }).form; //创建窗体
  4102. _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); } }
  4103. break;
  4104. case "my":
  4105. _formdiv = new U.UF.UI.form(
  4106. "我的资料",
  4107. $$("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 }), {
  4108. "id": "my",
  4109. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4110. "onresize": function () { }
  4111. }, {
  4112. closecallback: function () { }
  4113. }, { "style": { "height": "36px" } }).form; //创建窗体
  4114. _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); } }
  4115. break;
  4116. case "program":
  4117. _formdiv = new U.UF.UI.form(
  4118. "编程平台",
  4119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4120. "id": "program",
  4121. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4122. "onresize": function () { }
  4123. }, {
  4124. closecallback: function () { }
  4125. }, { "style": { "height": "36px" } }).form; //创建窗体
  4126. _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); } }
  4127. break;
  4128. case "library":
  4129. _formdiv = new U.UF.UI.form(
  4130. "素材库",
  4131. $$("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 }), {
  4132. "id": "library",
  4133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4134. "onresize": function () { }
  4135. }, {
  4136. closecallback: function () { }
  4137. }, { "style": { "height": "36px" } }).form; //创建窗体
  4138. _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); } }
  4139. break;
  4140. case "whiteboard":
  4141. _formdiv = new U.UF.UI.form(
  4142. "电子白板",
  4143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4144. "id": "whiteboard",
  4145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4146. "onresize": function () { }
  4147. }, {
  4148. closecallback: function () { }
  4149. }, { "style": { "height": "36px" } }).form; //创建窗体
  4150. _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); } }
  4151. break;
  4152. case "investigation":
  4153. _formdiv = new U.UF.UI.form(
  4154. "问卷调查",
  4155. $$("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 }), {
  4156. "id": "investigation",
  4157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4158. "onresize": function () { }
  4159. }, {
  4160. closecallback: function () { }
  4161. }, { "style": { "height": "36px" } }).form; //创建窗体
  4162. _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); } }
  4163. break;
  4164. case "note":
  4165. _formdiv = new U.UF.UI.form(
  4166. "便签分类",
  4167. $$("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 }), {
  4168. "id": "note",
  4169. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4170. "onresize": function () { }
  4171. }, {
  4172. closecallback: function () { }
  4173. }, { "style": { "height": "36px" } }).form; //创建窗体
  4174. _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); } }
  4175. break;
  4176. // case "score":
  4177. // _formdiv = new U.UF.UI.form(
  4178. // "量规评分",
  4179. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4180. // "id": "score",
  4181. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4182. // "onresize": function() {}
  4183. // }, {
  4184. // closecallback: function() {}
  4185. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4186. // _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); } }
  4187. // break;
  4188. case "mind":
  4189. _formdiv = new U.UF.UI.form(
  4190. "思维导图",
  4191. $$("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"
  4192. "id": "mind",
  4193. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4194. "onresize": function () { }
  4195. }, {
  4196. closecallback: function () { }
  4197. }, { "style": { "height": "36px" } }).form; //创建窗体
  4198. _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); } }
  4199. break;
  4200. case "doc":
  4201. // U.MD.D.I.isRoom();
  4202. _formdiv = new U.UF.UI.form(
  4203. "协同文档",
  4204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4205. "id": "doc",
  4206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4207. "onresize": function () { }
  4208. }, {
  4209. closecallback: function () { }
  4210. }, { "style": { "height": "36px" } }).form; //创建窗体
  4211. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4212. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4213. // })
  4214. _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); } }
  4215. break;
  4216. case "studentStudy":
  4217. _formdiv = new U.UF.UI.form(
  4218. "课程中心",
  4219. $$("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
  4220. "id": "studentStudy",
  4221. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4222. "onresize": function () { }
  4223. }, {
  4224. closecallback: function () { }
  4225. }, { "style": { "height": "36px" } }).form; //创建窗体
  4226. _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); } }
  4227. break;
  4228. case "train": //好友打开
  4229. _formdiv = new U.UF.UI.form(
  4230. "训练平台",
  4231. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4232. "id": "train",
  4233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4234. "onresize": function () { }
  4235. }, {
  4236. closecallback: function () { }
  4237. }, { "style": { "height": "36px" } }).form; //创建窗体
  4238. _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); } }
  4239. break;
  4240. case "mindNetwork": //好友打开
  4241. _formdiv = new U.UF.UI.form(
  4242. "思维网格",
  4243. $$("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 }), {
  4244. "id": "mindNetwork",
  4245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4246. "onresize": function () { }
  4247. }, {
  4248. closecallback: function () { }
  4249. }, { "style": { "height": "36px" } }).form; //创建窗体
  4250. _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); } }
  4251. break;
  4252. case "studentClassRoom": //好友打开
  4253. _formdiv = new U.UF.UI.form(
  4254. "实时课堂",
  4255. $$("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 }), {
  4256. "id": "studentClassRoom",
  4257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4258. "onresize": function () { }
  4259. }, {
  4260. closecallback: function () { }
  4261. }, { "style": { "height": "36px" } }).form; //创建窗体
  4262. _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); } }
  4263. setTimeout(() => {
  4264. U.UF.F.windowZooming(_formdiv)
  4265. }, 0);
  4266. break;
  4267. }
  4268. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4269. switch (str) {
  4270. case "studnetProject": //好友打开
  4271. _formdiv = new U.UF.UI.form(
  4272. "我的项目",
  4273. $$("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 }), {
  4274. "id": "studnetProject",
  4275. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4276. "onresize": function () { }
  4277. }, {
  4278. closecallback: function () { }
  4279. }, { "style": { "height": "36px" } }).form; //创建窗体
  4280. _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); } }
  4281. break;
  4282. case "studentEvaluate": //好友打开
  4283. _formdiv = new U.UF.UI.form(
  4284. "我的评价",
  4285. $$("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 }), {
  4286. "id": "studentEvaluate",
  4287. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4288. "onresize": function () { }
  4289. }, {
  4290. closecallback: function () { }
  4291. }, { "style": { "height": "36px" } }).form; //创建窗体
  4292. _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); } }
  4293. break;
  4294. case "my":
  4295. _formdiv = new U.UF.UI.form(
  4296. "我的资料",
  4297. $$("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 }), {
  4298. "id": "my",
  4299. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4300. "onresize": function () { }
  4301. }, {
  4302. closecallback: function () { }
  4303. }, { "style": { "height": "36px" } }).form; //创建窗体
  4304. _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); } }
  4305. break;
  4306. case "program":
  4307. _formdiv = new U.UF.UI.form(
  4308. "编程平台",
  4309. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4310. "id": "program",
  4311. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4312. "onresize": function () { }
  4313. }, {
  4314. closecallback: function () { }
  4315. }, { "style": { "height": "36px" } }).form; //创建窗体
  4316. _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); } }
  4317. break;
  4318. case "library":
  4319. _formdiv = new U.UF.UI.form(
  4320. "素材库",
  4321. $$("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 }), {
  4322. "id": "library",
  4323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4324. "onresize": function () { }
  4325. }, {
  4326. closecallback: function () { }
  4327. }, { "style": { "height": "36px" } }).form; //创建窗体
  4328. _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); } }
  4329. break;
  4330. case "whiteboard":
  4331. _formdiv = new U.UF.UI.form(
  4332. "电子白板",
  4333. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4334. "id": "whiteboard",
  4335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4336. "onresize": function () { }
  4337. }, {
  4338. closecallback: function () { }
  4339. }, { "style": { "height": "36px" } }).form; //创建窗体
  4340. _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); } }
  4341. break;
  4342. case "investigation":
  4343. _formdiv = new U.UF.UI.form(
  4344. "问卷调查",
  4345. $$("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 }), {
  4346. "id": "investigation",
  4347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4348. "onresize": function () { }
  4349. }, {
  4350. closecallback: function () { }
  4351. }, { "style": { "height": "36px" } }).form; //创建窗体
  4352. _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); } }
  4353. break;
  4354. case "note":
  4355. _formdiv = new U.UF.UI.form(
  4356. "便签分类",
  4357. $$("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 }), {
  4358. "id": "note",
  4359. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4360. "onresize": function () { }
  4361. }, {
  4362. closecallback: function () { }
  4363. }, { "style": { "height": "36px" } }).form; //创建窗体
  4364. _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); } }
  4365. break;
  4366. // case "score":
  4367. // _formdiv = new U.UF.UI.form(
  4368. // "量规评分",
  4369. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4370. // "id": "score",
  4371. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4372. // "onresize": function() {}
  4373. // }, {
  4374. // closecallback: function() {}
  4375. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4376. // _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); } }
  4377. // break;
  4378. case "mind":
  4379. _formdiv = new U.UF.UI.form(
  4380. "思维导图",
  4381. $$("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"
  4382. "id": "mind",
  4383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4384. "onresize": function () { }
  4385. }, {
  4386. closecallback: function () { }
  4387. }, { "style": { "height": "36px" } }).form; //创建窗体
  4388. _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); } }
  4389. break;
  4390. case "doc":
  4391. // U.MD.D.I.isRoom();
  4392. _formdiv = new U.UF.UI.form(
  4393. "协同文档",
  4394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4395. "id": "doc",
  4396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4397. "onresize": function () { }
  4398. }, {
  4399. closecallback: function () { }
  4400. }, { "style": { "height": "36px" } }).form; //创建窗体
  4401. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4402. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4403. })
  4404. _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); } }
  4405. break;
  4406. case "train": //好友打开
  4407. _formdiv = new U.UF.UI.form(
  4408. "训练平台",
  4409. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4410. "id": "train",
  4411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4412. "onresize": function () { }
  4413. }, {
  4414. closecallback: function () { }
  4415. }, { "style": { "height": "36px" } }).form; //创建窗体
  4416. _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); } }
  4417. break;
  4418. case "studentStudy":
  4419. _formdiv = new U.UF.UI.form(
  4420. "课程中心",
  4421. $$("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
  4422. "id": "studentStudy",
  4423. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4424. "onresize": function () { }
  4425. }, {
  4426. closecallback: function () { }
  4427. }, { "style": { "height": "36px" } }).form; //创建窗体
  4428. _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); } }
  4429. break;
  4430. case "mindNetwork": //好友打开
  4431. _formdiv = new U.UF.UI.form(
  4432. "思维网格",
  4433. $$("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 }), {
  4434. "id": "mindNetwork",
  4435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. _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); } }
  4441. break;
  4442. case "studentClassRoom": //好友打开
  4443. _formdiv = new U.UF.UI.form(
  4444. "实时课堂",
  4445. $$("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 }), {
  4446. "id": "studentClassRoom",
  4447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4448. "onresize": function () { }
  4449. }, {
  4450. closecallback: function () { }
  4451. }, { "style": { "height": "36px" } }).form; //创建窗体
  4452. _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); } }
  4453. setTimeout(() => {
  4454. U.UF.F.windowZooming(_formdiv)
  4455. }, 0);
  4456. break;
  4457. }
  4458. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4459. //选择应用处理
  4460. switch (str) {
  4461. case "project": //好友打开
  4462. _formdiv = new U.UF.UI.form(
  4463. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4464. $$("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 }), {
  4465. "id": "project",
  4466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4467. "onresize": function () { }
  4468. }, {
  4469. closecallback: function () { }
  4470. }, { "style": { "height": "36px" } }).form; //创建窗体
  4471. _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); } }
  4472. break;
  4473. case "student":
  4474. _formdiv = new U.UF.UI.form(
  4475. "学生管理",
  4476. $$("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 }), {
  4477. "id": "student",
  4478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4479. "onresize": function () { }
  4480. }, {
  4481. closecallback: function () { }
  4482. }, { "style": { "height": "36px" } }).form; //创建窗体
  4483. _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); } }
  4484. break;
  4485. case "evaluate":
  4486. _formdiv = new U.UF.UI.form(
  4487. "学生评价",
  4488. $$("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 }), {
  4489. "id": "evaluate",
  4490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4491. "onresize": function () { }
  4492. }, {
  4493. closecallback: function () { }
  4494. }, { "style": { "height": "36px" } }).form; //创建窗体
  4495. _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); } }
  4496. break;
  4497. case "sys":
  4498. _formdiv = new U.UF.UI.form(
  4499. "目标管理",
  4500. $$("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 }), {
  4501. "id": "sys",
  4502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4503. "onresize": function () { }
  4504. }, {
  4505. closecallback: function () { }
  4506. }, { "style": { "height": "36px" } }).form; //创建窗体
  4507. _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); } }
  4508. break;
  4509. case "courseDesign":
  4510. _formdiv = new U.UF.UI.form(
  4511. "项目设计",
  4512. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4513. "id": "courseDesign",
  4514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4515. "onresize": function () { }
  4516. }, {
  4517. closecallback: function () { }
  4518. }, { "style": { "height": "36px" } }).form; //创建窗体
  4519. _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); } }
  4520. break;
  4521. case "program":
  4522. _formdiv = new U.UF.UI.form(
  4523. "编程平台",
  4524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4525. "id": "program",
  4526. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4527. "onresize": function () { }
  4528. }, {
  4529. closecallback: function () { }
  4530. }, { "style": { "height": "36px" } }).form; //创建窗体
  4531. _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); } }
  4532. break;
  4533. case "class":
  4534. _formdiv = new U.UF.UI.form(
  4535. "班级管理",
  4536. $$("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 }), {
  4537. "id": "class",
  4538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4539. "onresize": function () { }
  4540. }, {
  4541. closecallback: function () { }
  4542. }, { "style": { "height": "36px" } }).form; //创建窗体
  4543. _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); } }
  4544. break;
  4545. case "Grade":
  4546. _formdiv = new U.UF.UI.form(
  4547. "年级管理",
  4548. $$("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 }), {
  4549. "id": "Grade",
  4550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4551. "onresize": function () { }
  4552. }, {
  4553. closecallback: function () { }
  4554. }, { "style": { "height": "36px" } }).form; //创建窗体
  4555. _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); } }
  4556. break;
  4557. case "teacherOffice":
  4558. _formdiv = new U.UF.UI.form(
  4559. "教研室",
  4560. $$("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 }), {
  4561. "id": "teacherOffice",
  4562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4563. "onresize": function () { }
  4564. }, {
  4565. closecallback: function () { }
  4566. }, { "style": { "height": "36px" } }).form; //创建窗体
  4567. _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); } }
  4568. break;
  4569. case "my":
  4570. _formdiv = new U.UF.UI.form(
  4571. "我的资料",
  4572. $$("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 }), {
  4573. "id": "my",
  4574. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4575. "onresize": function () { }
  4576. }, {
  4577. closecallback: function () { }
  4578. }, { "style": { "height": "36px" } }).form; //创建窗体
  4579. _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); } }
  4580. break;
  4581. case "notice":
  4582. _formdiv = new U.UF.UI.form(
  4583. "通知公告",
  4584. $$("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 }), {
  4585. "id": "notice",
  4586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4587. "onresize": function () { }
  4588. }, {
  4589. closecallback: function () { }
  4590. }, { "style": { "height": "36px" } }).form; //创建窗体
  4591. _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); } }
  4592. break;
  4593. case "library":
  4594. _formdiv = new U.UF.UI.form(
  4595. "素材库",
  4596. $$("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 }), {
  4597. "id": "library",
  4598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4599. "onresize": function () { }
  4600. }, {
  4601. closecallback: function () { }
  4602. }, { "style": { "height": "36px" } }).form; //创建窗体
  4603. _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); } }
  4604. break;
  4605. case "whiteboard":
  4606. _formdiv = new U.UF.UI.form(
  4607. "电子白板",
  4608. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4609. "id": "whiteboard",
  4610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4611. "onresize": function () { }
  4612. }, {
  4613. closecallback: function () { }
  4614. }, { "style": { "height": "36px" } }).form; //创建窗体
  4615. _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); } }
  4616. break;
  4617. case "investigation":
  4618. _formdiv = new U.UF.UI.form(
  4619. "问卷调查",
  4620. $$("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 }), {
  4621. "id": "investigation",
  4622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4623. "onresize": function () { }
  4624. }, {
  4625. closecallback: function () { }
  4626. }, { "style": { "height": "36px" } }).form; //创建窗体
  4627. _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); } }
  4628. break;
  4629. case "note":
  4630. _formdiv = new U.UF.UI.form(
  4631. "便签分类",
  4632. $$("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 }), {
  4633. "id": "note",
  4634. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4635. "onresize": function () { }
  4636. }, {
  4637. closecallback: function () { }
  4638. }, { "style": { "height": "36px" } }).form; //创建窗体
  4639. _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); } }
  4640. break;
  4641. // case "score":
  4642. // _formdiv = new U.UF.UI.form(
  4643. // "量规评分",
  4644. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4645. // "id": "score",
  4646. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4647. // "onresize": function() {}
  4648. // }, {
  4649. // closecallback: function() {}
  4650. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4651. // _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); } }
  4652. // break;
  4653. case "mind":
  4654. _formdiv = new U.UF.UI.form(
  4655. "思维导图",
  4656. $$("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"
  4657. "id": "mind",
  4658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4659. "onresize": function () { }
  4660. }, {
  4661. closecallback: function () { }
  4662. }, { "style": { "height": "36px" } }).form; //创建窗体
  4663. _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); } }
  4664. break;
  4665. case "doc":
  4666. // U.MD.D.I.isRoom();
  4667. _formdiv = new U.UF.UI.form(
  4668. "协同文档",
  4669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4670. "id": "doc",
  4671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4672. "onresize": function () { }
  4673. }, {
  4674. closecallback: function () { }
  4675. }, { "style": { "height": "36px" } }).form; //创建窗体
  4676. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4677. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4678. })
  4679. _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); } }
  4680. break;
  4681. case "study":
  4682. _formdiv = new U.UF.UI.form(
  4683. "课程中心",
  4684. $$("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
  4685. "id": "study",
  4686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4687. "onresize": function () { }
  4688. }, {
  4689. closecallback: function () { }
  4690. }, { "style": { "height": "36px" } }).form; //创建窗体
  4691. _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); } }
  4692. break;
  4693. case "mindNetwork": //好友打开
  4694. _formdiv = new U.UF.UI.form(
  4695. "思维网格",
  4696. $$("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 }), {
  4697. "id": "mindNetwork",
  4698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4699. "onresize": function () { }
  4700. }, {
  4701. closecallback: function () { }
  4702. }, { "style": { "height": "36px" } }).form; //创建窗体
  4703. _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); } }
  4704. break;
  4705. case "train": //好友打开
  4706. _formdiv = new U.UF.UI.form(
  4707. "训练平台",
  4708. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4709. "id": "mindNetwork",
  4710. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4711. "onresize": function () { }
  4712. }, {
  4713. closecallback: function () { }
  4714. }, { "style": { "height": "36px" } }).form; //创建窗体
  4715. _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); } }
  4716. break;
  4717. case "teacherClassRoom": //好友打开
  4718. _formdiv = new U.UF.UI.form(
  4719. "实时课堂",
  4720. $$("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 }), {
  4721. "id": "teacherClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4728. setTimeout(() => {
  4729. U.UF.F.windowZooming(_formdiv)
  4730. }, 0);
  4731. break;
  4732. }
  4733. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4734. switch (str) {
  4735. case "project": //好友打开
  4736. _formdiv = new U.UF.UI.form(
  4737. "课程管理",
  4738. $$("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 }), {
  4739. "id": "project",
  4740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4741. "onresize": function () { }
  4742. }, {
  4743. closecallback: function () { }
  4744. }, { "style": { "height": "36px" } }).form; //创建窗体
  4745. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4746. break;
  4747. case "evaluate":
  4748. _formdiv = new U.UF.UI.form(
  4749. "学生评价",
  4750. $$("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 }), {
  4751. "id": "evaluate",
  4752. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4753. "onresize": function () { }
  4754. }, {
  4755. closecallback: function () { }
  4756. }, { "style": { "height": "36px" } }).form; //创建窗体
  4757. _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); } }
  4758. break;
  4759. case "notice":
  4760. _formdiv = new U.UF.UI.form(
  4761. "通知公告",
  4762. $$("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 }), {
  4763. "id": "notice",
  4764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4765. "onresize": function () { }
  4766. }, {
  4767. closecallback: function () { }
  4768. }, { "style": { "height": "36px" } }).form; //创建窗体
  4769. _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); } }
  4770. break;
  4771. case "stuLibrary":
  4772. _formdiv = new U.UF.UI.form(
  4773. "学习资料",
  4774. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4775. "id": "stuLibrary",
  4776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4777. "onresize": function () { }
  4778. }, {
  4779. closecallback: function () { }
  4780. }, { "style": { "height": "36px" } }).form; //创建窗体
  4781. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4782. break;
  4783. case "program":
  4784. _formdiv = new U.UF.UI.form(
  4785. "编程平台",
  4786. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4787. "id": "program",
  4788. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4789. "onresize": function () { }
  4790. }, {
  4791. closecallback: function () { }
  4792. }, { "style": { "height": "36px" } }).form; //创建窗体
  4793. _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); } }
  4794. break;
  4795. case "whiteboard":
  4796. _formdiv = new U.UF.UI.form(
  4797. "电子白板",
  4798. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4799. "id": "whiteboard",
  4800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4801. "onresize": function () { }
  4802. }, {
  4803. closecallback: function () { }
  4804. }, { "style": { "height": "36px" } }).form; //创建窗体
  4805. _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); } }
  4806. break;
  4807. case "investigation":
  4808. _formdiv = new U.UF.UI.form(
  4809. "问卷调查",
  4810. $$("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 }), {
  4811. "id": "investigation",
  4812. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4813. "onresize": function () { }
  4814. }, {
  4815. closecallback: function () { }
  4816. }, { "style": { "height": "36px" } }).form; //创建窗体
  4817. _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); } }
  4818. break;
  4819. case "mind":
  4820. _formdiv = new U.UF.UI.form(
  4821. "思维导图",
  4822. $$("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"
  4823. "id": "mind",
  4824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4825. "onresize": function () { }
  4826. }, {
  4827. closecallback: function () { }
  4828. }, { "style": { "height": "36px" } }).form; //创建窗体
  4829. _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); } }
  4830. break;
  4831. case "doc":
  4832. // U.MD.D.I.isRoom();
  4833. _formdiv = new U.UF.UI.form(
  4834. "协同文档",
  4835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4836. "id": "doc",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4843. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4844. })
  4845. _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); } }
  4846. break;
  4847. case "study":
  4848. _formdiv = new U.UF.UI.form(
  4849. "课程中心",
  4850. $$("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
  4851. "id": "study",
  4852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4853. "onresize": function () { }
  4854. }, {
  4855. closecallback: function () { }
  4856. }, { "style": { "height": "36px" } }).form; //创建窗体
  4857. _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); } }
  4858. break;
  4859. case "mindNetwork": //好友打开
  4860. _formdiv = new U.UF.UI.form(
  4861. "思维网格",
  4862. $$("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 }), {
  4863. "id": "mindNetwork",
  4864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _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); } }
  4870. break;
  4871. case "train": //好友打开
  4872. _formdiv = new U.UF.UI.form(
  4873. "训练平台",
  4874. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4875. "id": "train",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. case "sys":
  4884. _formdiv = new U.UF.UI.form(
  4885. "目标管理",
  4886. $$("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 }), {
  4887. "id": "sys",
  4888. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _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); } }
  4894. break;
  4895. case "courseDesign":
  4896. _formdiv = new U.UF.UI.form(
  4897. "项目设计",
  4898. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4899. "id": "courseDesign",
  4900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _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); } }
  4906. break;
  4907. }
  4908. } else if (!_type) {
  4909. switch (str) {
  4910. case "my":
  4911. _formdiv = new U.UF.UI.form(
  4912. "我的资料",
  4913. $$("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 }), {
  4914. "id": "my",
  4915. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _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); } }
  4921. break;
  4922. }
  4923. }
  4924. switch (str) {
  4925. // AIprogram2 AI体验 aihub.cocorobo.cn
  4926. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4927. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4928. case "formulaEdi": //公式编辑
  4929. _formdiv = new U.UF.UI.form(
  4930. "公式编辑",
  4931. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4932. "id": "formulaEdi",
  4933. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _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); } }
  4939. break;
  4940. case "molStr": //分子结构
  4941. _formdiv = new U.UF.UI.form(
  4942. "分子结构",
  4943. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4944. "id": "molStr",
  4945. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //创建窗体
  4950. _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); } }
  4951. break;
  4952. case "timeAxis": //时间轴
  4953. _formdiv = new U.UF.UI.form(
  4954. "时间轴",
  4955. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4956. "id": "timeAxis",
  4957. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4958. "onresize": function () { }
  4959. }, {
  4960. closecallback: function () { }
  4961. }, { "style": { "height": "36px" } }).form; //创建窗体
  4962. _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); } }
  4963. break;
  4964. case "AIprogram2": //AI体验
  4965. _formdiv = new U.UF.UI.form(
  4966. "AI体验",
  4967. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4968. "id": "AIprogram2",
  4969. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _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); } }
  4975. break;
  4976. case "Pythonprogram": //python编程
  4977. _formdiv = new U.UF.UI.form(
  4978. "Python编程",
  4979. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4980. "id": "Pythonprogram",
  4981. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4982. "onresize": function () { }
  4983. }, {
  4984. closecallback: function () { }
  4985. }, { "style": { "height": "36px" } }).form; //创建窗体
  4986. _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); } }
  4987. break;
  4988. case "AIprogram": //ai编程
  4989. _formdiv = new U.UF.UI.form(
  4990. "AI编程平台",
  4991. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4992. "id": "AIprogram",
  4993. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. _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); } }
  4999. break;
  5000. case "CocoPi": //CocoPi
  5001. _formdiv = new U.UF.UI.form(
  5002. "CocoPi",
  5003. $$("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" }), {
  5004. "id": "CocoPi",
  5005. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. _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); } }
  5011. break;
  5012. case "Wood": //Wood
  5013. _formdiv = new U.UF.UI.form(
  5014. "海龟编程",
  5015. $$("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/" }), {
  5016. "id": "Wood",
  5017. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5018. "onresize": function () { }
  5019. }, {
  5020. closecallback: function () { }
  5021. }, { "style": { "height": "36px" } }).form; //创建窗体
  5022. _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); } }
  5023. break;
  5024. case "car": //模拟驾驶
  5025. _formdiv = new U.UF.UI.form(
  5026. "模拟驾驶",
  5027. $$("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/" }), {
  5028. "id": "car",
  5029. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5035. break;
  5036. case "lineSearch": //路径搜索
  5037. _formdiv = new U.UF.UI.form(
  5038. "路径搜索",
  5039. $$("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/" }), {
  5040. "id": "lineSearch",
  5041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5047. break;
  5048. case "deepLearning": //深度学习
  5049. _formdiv = new U.UF.UI.form(
  5050. "深度学习",
  5051. $$("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/#" }), {
  5052. "id": "deepLearning",
  5053. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5059. break;
  5060. case "allHistory": //深度学习
  5061. _formdiv = new U.UF.UI.form(
  5062. "全历史",
  5063. $$("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/" }), {
  5064. "id": "allHistory",
  5065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5071. break;
  5072. case "chatPDF": //ai编程
  5073. _formdiv = new U.UF.UI.form(
  5074. "chatPDF",
  5075. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5076. "id": "chatPDF",
  5077. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5083. break;
  5084. case "resources": //国家教育
  5085. _formdiv = new U.UF.UI.form(
  5086. "国家教育",
  5087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5088. "id": "resources",
  5089. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5095. break;
  5096. case "codeEdit": //源码编辑
  5097. _formdiv = new U.UF.UI.form(
  5098. "源码编辑",
  5099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5100. "id": "codeEdit",
  5101. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5107. break; //
  5108. case "MindMap": //MindMap
  5109. _formdiv = new U.UF.UI.form(
  5110. "MindMap",
  5111. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5112. "id": "MindMap",
  5113. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5119. break;
  5120. case "netWorkPanel": //netWorkPanel
  5121. _formdiv = new U.UF.UI.form(
  5122. "netWorkPanel",
  5123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5124. "id": "netWorkPanel",
  5125. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5131. break;
  5132. case "GeoGebra": //GeoGebra
  5133. _formdiv = new U.UF.UI.form(
  5134. "GeoGebra",
  5135. $$("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" }), {
  5136. "id": "GeoGebra",
  5137. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5143. break;
  5144. case "translation": //翻译
  5145. _formdiv = new U.UF.UI.form(
  5146. "翻译",
  5147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5148. "id": "translation",
  5149. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5155. break;
  5156. case "mohe": //魔盒
  5157. _formdiv = new U.UF.UI.form(
  5158. "魔盒识字",
  5159. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5160. "id": "mohe",
  5161. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5167. break;
  5168. case "24game": //24点
  5169. _formdiv = new U.UF.UI.form(
  5170. "24点",
  5171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5172. "id": "24game",
  5173. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5179. break;
  5180. case "case":
  5181. _formdiv = new U.UF.UI.form(
  5182. "课程进展",
  5183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5184. "id": "case",
  5185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5191. break;
  5192. case "snf":
  5193. _formdiv = new U.UF.UI.form(
  5194. "赛诺梵",
  5195. $$("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" }), {
  5196. "id": "snf",
  5197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5203. break;
  5204. case "hanFamily":
  5205. _formdiv = new U.UF.UI.form(
  5206. "汉字家族",
  5207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5208. "id": "hanFamily",
  5209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5210. "onresize": function () { }
  5211. }, {
  5212. closecallback: function () { }
  5213. }, { "style": { "height": "36px" } }).form; //创建窗体
  5214. _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); } }
  5215. break;
  5216. case "hanClassics":
  5217. _formdiv = new U.UF.UI.form(
  5218. "国学经典",
  5219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5220. "id": "hanClassics",
  5221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5222. "onresize": function () { }
  5223. }, {
  5224. closecallback: function () { }
  5225. }, { "style": { "height": "36px" } }).form; //创建窗体
  5226. _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); } }
  5227. break;
  5228. case "hanTraining":
  5229. _formdiv = new U.UF.UI.form(
  5230. "笔画训练",
  5231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5232. "id": "hanTraining",
  5233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. case "hanClass":
  5241. _formdiv = new U.UF.UI.form(
  5242. "书法课堂",
  5243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5244. "id": "hanClass",
  5245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "han":
  5253. _formdiv = new U.UF.UI.form(
  5254. "汉字宫",
  5255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5256. "id": "han",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _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); } }
  5263. break;
  5264. case "projectGM": //课程管理
  5265. _formdiv = new U.UF.UI.form(
  5266. "课程管理",
  5267. $$("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 }), {
  5268. "id": "projectGM",
  5269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. case "studyGM": //课程中心
  5277. _formdiv = new U.UF.UI.form(
  5278. "课程中心",
  5279. $$("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
  5280. "id": "study",
  5281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. // studentGM
  5289. case "studentGM": //学生管理
  5290. _formdiv = new U.UF.UI.form(
  5291. "学生管理",
  5292. $$("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 }), {
  5293. "id": "studentGM",
  5294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5295. "onresize": function () { }
  5296. }, {
  5297. closecallback: function () { }
  5298. }, { "style": { "height": "36px" } }).form; //创建窗体
  5299. _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); } }
  5300. break;
  5301. case "evaluateGM": //学生评价
  5302. _formdiv = new U.UF.UI.form(
  5303. "学生评价",
  5304. $$("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 }), {
  5305. "id": "evaluateGM",
  5306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _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); } }
  5312. break;
  5313. // classGM
  5314. case "classGM": //班级管理
  5315. _formdiv = new U.UF.UI.form(
  5316. "班级管理",
  5317. $$("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 }), {
  5318. "id": "classGM",
  5319. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //创建窗体
  5324. _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); } }
  5325. break;
  5326. // dataGM
  5327. case "dataGM":
  5328. _formdiv = new U.UF.UI.form(
  5329. "我的资料",
  5330. $$("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 }), {
  5331. "id": "dataGM",
  5332. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. // caseGM
  5340. case "caseGM": //课程进展
  5341. _formdiv = new U.UF.UI.form(
  5342. "课程进展",
  5343. $$("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 }), {
  5344. "id": "caseGM",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _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); } }
  5351. break;
  5352. // meterialGM
  5353. case "meterialGM": //素材库
  5354. _formdiv = new U.UF.UI.form(
  5355. "素材库",
  5356. $$("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 }), {
  5357. "id": "meterialGM",
  5358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5359. "onresize": function () { }
  5360. }, {
  5361. closecallback: function () { }
  5362. }, { "style": { "height": "36px" } }).form; //创建窗体
  5363. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5364. break;
  5365. // evaluateSGM
  5366. case "evaluateSGM": //我的评价
  5367. _formdiv = new U.UF.UI.form(
  5368. "我的评价",
  5369. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5370. "id": "evaluateSGM",
  5371. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5377. break;
  5378. case "jupyter": //jupyter
  5379. _formdiv = new U.UF.UI.form(
  5380. "jupyter",
  5381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5382. "id": "jupyter",
  5383. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5384. "onresize": function () { }
  5385. }, {
  5386. closecallback: function () { }
  5387. }, { "style": { "height": "36px" } }).form; //创建窗体
  5388. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5389. break;
  5390. case "number": //数字实验室
  5391. _formdiv = new U.UF.UI.form(
  5392. "数字实验室",
  5393. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5394. "id": "number",
  5395. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. "onresize": function () { }
  5397. }, {
  5398. closecallback: function () { }
  5399. }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. _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); } }
  5401. break;
  5402. case "studentCourse": //项目管理 学生
  5403. _formdiv = new U.UF.UI.form(
  5404. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5405. $$("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 }), {
  5406. "id": "studentCourse",
  5407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. _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); } }
  5413. break;
  5414. case "studentCourseS": //项目管理 老师
  5415. _formdiv = new U.UF.UI.form(
  5416. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5417. $$("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 }), {
  5418. "id": "studentCourseS",
  5419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5420. "onresize": function () { }
  5421. }, {
  5422. closecallback: function () { }
  5423. }, { "style": { "height": "36px" } }).form; //创建窗体
  5424. _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); } }
  5425. break;
  5426. case "studentIndex": //项目中心
  5427. _formdiv = new U.UF.UI.form(
  5428. "项目中心",
  5429. $$("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 }), {
  5430. "id": "studentIndex",
  5431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5432. "onresize": function () { }
  5433. }, {
  5434. closecallback: function () { }
  5435. }, { "style": { "height": "36px" } }).form; //创建窗体
  5436. _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); } }
  5437. break;
  5438. case "CaseDesignS":
  5439. _formdiv = new U.UF.UI.form(
  5440. "项目进展",
  5441. $$("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 }), {
  5442. "id": "case",
  5443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. _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); } }
  5449. break;
  5450. case "tcStudent": //腾讯学生管理
  5451. _formdiv = new U.UF.UI.form(
  5452. "学生管理",
  5453. $$("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 }), {
  5454. "id": "tcStudent",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. _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); } }
  5461. break;
  5462. case "tcSchool": //腾讯学校管理
  5463. _formdiv = new U.UF.UI.form(
  5464. "学校管理",
  5465. $$("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 }), {
  5466. "id": "tcSchool",
  5467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5468. "onresize": function () { }
  5469. }, {
  5470. closecallback: function () { }
  5471. }, { "style": { "height": "36px" } }).form; //创建窗体
  5472. _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); } }
  5473. break;
  5474. case "tcTeacher": //腾讯学校管理
  5475. _formdiv = new U.UF.UI.form(
  5476. "教师管理",
  5477. $$("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 }), {
  5478. "id": "tcTeacher",
  5479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. _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); } }
  5485. break;
  5486. case "tcData": //腾讯我的资料
  5487. _formdiv = new U.UF.UI.form(
  5488. "我的资料",
  5489. $$("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 }), {
  5490. "id": "tcData",
  5491. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5492. "onresize": function () { }
  5493. }, {
  5494. closecallback: function () { }
  5495. }, { "style": { "height": "36px" } }).form; //创建窗体
  5496. _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); } }
  5497. break;
  5498. case "tcNotice": //腾讯消息通知
  5499. _formdiv = new U.UF.UI.form(
  5500. "消息通知",
  5501. $$("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 }), {
  5502. "id": "tcNotice",
  5503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5504. "onresize": function () { }
  5505. }, {
  5506. closecallback: function () { }
  5507. }, { "style": { "height": "36px" } }).form; //创建窗体
  5508. _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); } }
  5509. break;
  5510. case "myReport": //好友打开
  5511. _formdiv = new U.UF.UI.form(
  5512. "我的评价",
  5513. $$("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 }), {
  5514. "id": "myReport",
  5515. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5516. "onresize": function () { }
  5517. }, {
  5518. closecallback: function () { }
  5519. }, { "style": { "height": "36px" } }).form; //创建窗体
  5520. _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); } }
  5521. break;
  5522. case "learnAna": //好友打开
  5523. _formdiv = new U.UF.UI.form(
  5524. "学习分析",
  5525. $$("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 }), {
  5526. "id": "learnAna",
  5527. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5528. "onresize": function () { }
  5529. }, {
  5530. closecallback: function () { }
  5531. }, { "style": { "height": "36px" } }).form; //创建窗体
  5532. _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); } }
  5533. break;
  5534. case "AIChat": //AI共创
  5535. _formdiv = new U.UF.UI.form(
  5536. "AI共创",
  5537. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5538. "id": "AIChat",
  5539. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5540. "onresize": function () { }
  5541. }, {
  5542. istop: true,
  5543. closecallback: function () { $("#aichat_icon").remove(); },
  5544. narrowcallback: function () {
  5545. if (!$("#aichat_icon")[0]) {
  5546. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5547. }
  5548. },
  5549. }, { "style": { "height": "36px" } }).form; //创建窗体
  5550. _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); } }
  5551. break;
  5552. case "ainew": //AI共创
  5553. _formdiv = new U.UF.UI.form(
  5554. "AI协同",
  5555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5556. "id": "ainew",
  5557. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5558. "onresize": function () { }
  5559. }, {
  5560. closecallback: function () { }
  5561. }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. _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); } }
  5563. break;
  5564. case "gpt4": //gpt4
  5565. _formdiv = new U.UF.UI.form(
  5566. "AI助手",
  5567. $$("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 }), {
  5568. "id": "gpt4",
  5569. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5570. "onresize": function () { }
  5571. }, {
  5572. closecallback: function () { }
  5573. }, { "style": { "height": "36px" } }).form; //创建窗体
  5574. _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); } }
  5575. break;
  5576. case "aigpt": //gpt4
  5577. _formdiv = new U.UF.UI.form(
  5578. "AI助手+",
  5579. $$("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 }), {
  5580. "id": "aigpt",
  5581. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5582. "onresize": function () { }
  5583. }, {
  5584. closecallback: function () { }
  5585. }, { "style": { "height": "36px" } }).form; //创建窗体
  5586. _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); } }
  5587. break;
  5588. case "aiKnowledge": //aiKnowledge
  5589. _formdiv = new U.UF.UI.form(
  5590. "知识建构",
  5591. $$("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/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5592. "id": "aiKnowledge",
  5593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5594. "onresize": function () { }
  5595. }, {
  5596. closecallback: function () { }
  5597. }, { "style": { "height": "36px" } }).form; //创建窗体
  5598. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5599. break;
  5600. case "futureClass": //AI共创
  5601. _formdiv = new U.UF.UI.form(
  5602. "协同建构",
  5603. $$("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
  5604. "id": "synergyCourse",
  5605. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () {
  5609. $("iframe", _formdiv)[0].contentWindow.loginout();
  5610. }
  5611. }, { "style": { "height": "36px" } }).form; //创建窗体
  5612. _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); } }
  5613. break;
  5614. case "aiagent": //ai agent
  5615. _formdiv = new U.UF.UI.form(
  5616. "AI Agent",
  5617. $$("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" }), {
  5618. "id": "AIAgent",
  5619. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. _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); } }
  5625. break;
  5626. case "dataBoard": //数据看板
  5627. _formdiv = new U.UF.UI.form(
  5628. "数据看板",
  5629. $$("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 }), {
  5630. "id": "dataBoard",
  5631. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //创建窗体
  5636. _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); } }
  5637. break;
  5638. case "dataBoardSies": //数据融合
  5639. _formdiv = new U.UF.UI.form(
  5640. "数据融合",
  5641. $$("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 }), {
  5642. "id": "dataBoardSies",
  5643. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //创建窗体
  5648. _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); } }
  5649. break;
  5650. case "dataBoardNew": //数据看板
  5651. _formdiv = new U.UF.UI.form(
  5652. "综合看板",
  5653. $$("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 }), {
  5654. "id": "dataBoardNew",
  5655. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. _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); } }
  5661. break;
  5662. case "dataBoardTest": //数据看板
  5663. _formdiv = new U.UF.UI.form(
  5664. "评测看板",
  5665. $$("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 }), {
  5666. "id": "dataBoardTest",
  5667. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. _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); } }
  5673. break;
  5674. case "AIAnalyse": //AI共创
  5675. _formdiv = new U.UF.UI.form(
  5676. "AI分析",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5678. "id": "AIAnalyse",
  5679. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. _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); } }
  5685. break;
  5686. case "studioCourse": //AI共创
  5687. _formdiv = new U.UF.UI.form(
  5688. "工作管理",
  5689. $$("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 }), {
  5690. "id": "studioCourse",
  5691. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5692. "onresize": function () { }
  5693. }, {
  5694. closecallback: function () { }
  5695. }, { "style": { "height": "36px" } }).form; //创建窗体
  5696. _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); } }
  5697. break;
  5698. case "studioIndex": //AI共创
  5699. _formdiv = new U.UF.UI.form(
  5700. "工作中心",
  5701. $$("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 }), {
  5702. "id": "studioIndex",
  5703. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5704. "onresize": function () { }
  5705. }, {
  5706. closecallback: function () { }
  5707. }, { "style": { "height": "36px" } }).form; //创建窗体
  5708. _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); } }
  5709. break;
  5710. case "source":
  5711. _formdiv = new U.UF.UI.form(
  5712. "教学资源",
  5713. $$("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 }), {
  5714. "id": "source",
  5715. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. _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); } }
  5721. break;
  5722. case "testTeacher":
  5723. _formdiv = new U.UF.UI.form(
  5724. "教师管理",
  5725. $$("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 }), {
  5726. "id": "testTeacher",
  5727. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. _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); } }
  5733. break;
  5734. case "testStudent":
  5735. _formdiv = new U.UF.UI.form(
  5736. "教师中心",
  5737. $$("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 }), {
  5738. "id": "testStudent",
  5739. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5740. "onresize": function () { }
  5741. }, {
  5742. closecallback: function () { }
  5743. }, { "style": { "height": "36px" } }).form; //创建窗体
  5744. _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); } }
  5745. break;
  5746. case "testTeacherSies":
  5747. _formdiv = new U.UF.UI.form(
  5748. "教师管理",
  5749. $$("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 }), {
  5750. "id": "testTeacherSies",
  5751. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5752. "onresize": function () { }
  5753. }, {
  5754. closecallback: function () { }
  5755. }, { "style": { "height": "36px" } }).form; //创建窗体
  5756. _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); } }
  5757. break;
  5758. case "testStudentSies":
  5759. _formdiv = new U.UF.UI.form(
  5760. "教师中心",
  5761. $$("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 }), {
  5762. "id": "testStudentSies",
  5763. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5764. "onresize": function () { }
  5765. }, {
  5766. closecallback: function () { }
  5767. }, { "style": { "height": "36px" } }).form; //创建窗体
  5768. _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); } }
  5769. break;
  5770. case "ytpbl": //消息通知
  5771. _formdiv = new U.UF.UI.form(
  5772. "案例征集",
  5773. $$("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 }), {
  5774. "id": "ytpbl",
  5775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //创建窗体
  5780. _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); } }
  5781. // 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");
  5782. break;
  5783. case "aiCourseResource": //人工智能窗体
  5784. _formdiv = new U.UF.UI.form(
  5785. false,
  5786. $$("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 }), {
  5787. "id": "aiCourseResource",
  5788. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5789. "onresize": function () { },
  5790. "isdrag": false,
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _taskbar = ''
  5795. break;
  5796. case "szdjgCocooroboX": //图形化编程
  5797. _formdiv = new U.UF.UI.form(
  5798. "图形化编程",
  5799. $$("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" }), {
  5800. "id": "szdjgCocooroboX",
  5801. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _taskbar = ''
  5807. break;
  5808. case "szdjgPython": //python编程
  5809. _formdiv = new U.UF.UI.form(
  5810. "Python编程",
  5811. $$("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" }), {
  5812. "id": "szdjgPython",
  5813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _taskbar = ''
  5819. break;
  5820. case "Record":
  5821. _formdiv = new U.UF.UI.form(
  5822. "观察记录",
  5823. $$("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 }), {
  5824. "id": "Record",
  5825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _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); } }
  5831. break;
  5832. case "aigptCourse":
  5833. _formdiv = new U.UF.UI.form(
  5834. "AI智能体",
  5835. $$("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' }), {
  5836. "id": "aigptCourse",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _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); } }
  5843. break;
  5844. case "classroomObservation":
  5845. _formdiv = new U.UF.UI.form(
  5846. "课堂观察",
  5847. $$("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 }), {
  5848. "id": "classroomObservation",
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. _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); } }
  5855. break;
  5856. case "pblCourse":
  5857. _formdiv = new U.UF.UI.form(
  5858. "学生PBL",
  5859. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5860. "id": "pblCourse",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5867. break;
  5868. }
  5869. //U.MD.D.I.openClick(str);
  5870. //如果有任务栏信息
  5871. if (_taskbar) {
  5872. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5873. }
  5874. }
  5875. // U.MD.D.I.openClick = function(str){
  5876. // var click = '';
  5877. // switch(str){
  5878. // case 'friend':
  5879. // click = '我的好友';
  5880. // break;
  5881. // case 'domain':
  5882. // click = '域名管理';
  5883. // break;
  5884. // case 'disk':
  5885. // click = '我的云盘';
  5886. // break;
  5887. // case 'word':
  5888. // click = 'Word';
  5889. // break;
  5890. // case 'excel':
  5891. // click = 'Execl';
  5892. // break;
  5893. // case 'txt':
  5894. // click = '文本文件';
  5895. // break;
  5896. // case 'lookupFriend':
  5897. // click = '查找好友';
  5898. // break;
  5899. // case 'ftp':
  5900. // click = 'FTP';
  5901. // break;
  5902. // case 'group':
  5903. // click = '群组';
  5904. // break;
  5905. // case 'set':
  5906. // click = '我的设置';
  5907. // break;
  5908. // case 'systemSet':
  5909. // click = '系统设置';
  5910. // break;
  5911. // case 'boomYun':
  5912. // click = '互联办公';
  5913. // break;
  5914. // case 'xz':
  5915. // click = '云端下载';
  5916. // break;
  5917. // case 'client':
  5918. // click = '有思浏览器';
  5919. // break;
  5920. // case 'backEndProgramming':
  5921. // click = '在线后台编程';
  5922. // break;
  5923. // case 'frontEndProgramming':
  5924. // click = '在线前端编程';
  5925. // break;
  5926. // default: break;
  5927. // }
  5928. // if(U.MD.D.I.Ip && click){
  5929. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5930. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5931. // })
  5932. // }
  5933. // }
  5934. /**
  5935. *函数作用:ajax简易函数,使用post格式
  5936. *@param url {data} 后台地址
  5937. *@param data {data} 参数json
  5938. *@param fn {data} 回调函数
  5939. *
  5940. */
  5941. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5942. // var xhr = new XMLHttpRequest();
  5943. // xhr.open("GET",url,true);
  5944. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5945. // xhr.onreadystatechange = function(){
  5946. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5947. // fn.call(this,xhr.responseText);
  5948. // }
  5949. // };
  5950. // xhr.send();
  5951. // }
  5952. /*判断是否是内网IP*/
  5953. // U.MD.D.I.isInnerIPFn = function(str){
  5954. // var curPageUrl = str;
  5955. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5956. // curPageUrl =curPageUrl.replace(reg1,'');
  5957. // // console.log('curPageUrl-1 '+curPageUrl);
  5958. // var reg2 = /\:+/g;//替换冒号为一点
  5959. // curPageUrl =curPageUrl.replace(reg2,'.');
  5960. // // console.log('curPageUrl-2 '+curPageUrl);
  5961. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5962. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5963. // if(curPageUrl[2] != '16'){
  5964. // return ipAddress;
  5965. // }else{
  5966. // return false;
  5967. // }
  5968. // }
  5969. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5970. // //compatibility for firefox and chrome
  5971. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5972. // var pc = new myPeerConnection({
  5973. // iceServers: []
  5974. // }),
  5975. // noop = function() {},
  5976. // localIPs = {},
  5977. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5978. // key;
  5979. // function iterateIP(ip) {
  5980. // if (!localIPs[ip]) onNewIP(ip);
  5981. // localIPs[ip] = true;
  5982. // }
  5983. // //create a bogus data channel
  5984. // pc.createDataChannel("");
  5985. // // create offer and set local description
  5986. // pc.createOffer().then(function(sdp) {
  5987. // sdp.sdp.split('\n').forEach(function(line) {
  5988. // if (line.indexOf('candidate') < 0) return;
  5989. // line.match(ipRegex).forEach(iterateIP);
  5990. // });
  5991. // pc.setLocalDescription(sdp, noop, noop);
  5992. // }).catch(function(reason) {
  5993. // // An error occurred, so handle the failure to connect
  5994. // });
  5995. // //sten for candidate events
  5996. // pc.onicecandidate = function(ice) {
  5997. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5998. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5999. // };
  6000. // }
  6001. // U.MD.D.I.getUserIpBool = function(callback){
  6002. // U.MD.D.I.getUserIP(function(ip){
  6003. // alert("Got IP! :" + ip);
  6004. // });
  6005. //}
  6006. //#endregion
  6007. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6008. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6009. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6010. _userinfo = US.userInfo, //登录用户信息
  6011. _userid = US.userInfo.userid //登录用户id
  6012. let _iframe;
  6013. let _cid = cid,
  6014. _stage = stage,
  6015. _task = task,
  6016. _tool = tool;
  6017. var _jie = $$("div", {
  6018. "style": {
  6019. "position": "absolute",
  6020. "bottom": "50px",
  6021. "right": "50px",
  6022. "zIndex": "9999",
  6023. "backgroundColor": "#2268bc",
  6024. "color": "#fff",
  6025. "padding": "12px 20px",
  6026. "cursor": "pointer",
  6027. "borderRadius": "4px",
  6028. },
  6029. "innerHTML": "提交作业"
  6030. })
  6031. let aTool = ''
  6032. let _loading = document.createElement('div')
  6033. _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;"
  6034. // _loading.id = "";
  6035. let _lchild = document.createElement('div')
  6036. let _limg = document.createElement('img')
  6037. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6038. _limg.style = "width: 26px;margin-right: 10px;"
  6039. _lchild.appendChild(_limg)
  6040. let _lspan = document.createElement('span')
  6041. _lspan.innerHTML = "上传中..."
  6042. _lchild.appendChild(_lspan)
  6043. _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%);"
  6044. _loading.appendChild(_lchild)
  6045. var _box = $$('div', {
  6046. "style": {
  6047. "position": "relative",
  6048. "width": "100%",
  6049. "height": "100%",
  6050. },
  6051. })
  6052. _box.appendChild(_loading)
  6053. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6054. switch (str) {
  6055. case "whiteboard":
  6056. aTool = 1;
  6057. _iframe = $$("iframe", {
  6058. "frameborder": "no",
  6059. "border": "0",
  6060. "scrolling ": "no",
  6061. "style": {
  6062. "cssText": "border:0;width:100%;height:100%"
  6063. },
  6064. "src": "https://beta.iwb.cocorobo.cn/"
  6065. })
  6066. _box.appendChild(_iframe);
  6067. _box.appendChild(_jie);
  6068. _formdiv = new U.UF.UI.form(
  6069. "电子白板",
  6070. _box, {
  6071. "id": "whiteboard" + cid + stage + task + tool,
  6072. "style": {
  6073. "width": "90%",
  6074. "height": "90%",
  6075. "overflow": 'hidden'
  6076. },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, {
  6081. "style": {
  6082. "height": "36px"
  6083. }
  6084. }).form; //创建窗体
  6085. _taskbar = {
  6086. "id": str + _formdiv.id,
  6087. "style": {
  6088. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6089. },
  6090. "name": "电子白板",
  6091. "forms": _formdiv,
  6092. "click": function () {
  6093. U.MD.D.I.openApplication(str, obj, info);
  6094. }
  6095. }
  6096. break;
  6097. case "mind":
  6098. aTool = 3;
  6099. _iframe = $$("iframe", {
  6100. "frameborder": "no",
  6101. "border": "0",
  6102. "scrolling ": "no",
  6103. "style": {
  6104. "cssText": "border:0;width:100%;height:100%"
  6105. },
  6106. "src": "/kityminder-editor/dist/index.html"
  6107. })
  6108. _box.appendChild(_iframe);
  6109. _box.appendChild(_jie);
  6110. _formdiv = new U.UF.UI.form(
  6111. "思维导图",
  6112. _box, { //"/jsmind/example/demo.html"
  6113. "id": "mind" + cid + stage + task + tool,
  6114. "style": {
  6115. "width": "90%",
  6116. "height": "90%",
  6117. "overflow": 'hidden'
  6118. },
  6119. "onresize": function () { }
  6120. }, {
  6121. closecallback: function () { }
  6122. }, {
  6123. "style": {
  6124. "height": "36px"
  6125. }
  6126. }).form; //创建窗体
  6127. _taskbar = {
  6128. "id": str + _formdiv.id,
  6129. "style": {
  6130. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6131. },
  6132. "name": "思维导图",
  6133. "forms": _formdiv,
  6134. "click": function () {
  6135. U.MD.D.I.openApplication(str, obj, info);
  6136. }
  6137. }
  6138. break;
  6139. case "MindMap":
  6140. aTool = 3;
  6141. _iframe = $$("iframe", {
  6142. "frameborder": "no",
  6143. "border": "0",
  6144. "scrolling ": "no",
  6145. "style": {
  6146. "cssText": "border:0;width:100%;height:100%"
  6147. },
  6148. "src": "//cloud.cocorobo.cn/mind/"
  6149. })
  6150. _box.appendChild(_iframe);
  6151. _box.appendChild(_jie);
  6152. _formdiv = new U.UF.UI.form(
  6153. "思维导图",
  6154. _box, { //"/jsmind/example/demo.html"
  6155. "id": "mind" + cid + stage + task + tool,
  6156. "style": {
  6157. "width": "90%",
  6158. "height": "90%",
  6159. "overflow": 'hidden'
  6160. },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, {
  6165. "style": {
  6166. "height": "36px"
  6167. }
  6168. }).form; //创建窗体
  6169. _taskbar = {
  6170. "id": str + _formdiv.id,
  6171. "style": {
  6172. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6173. },
  6174. "name": "思维导图",
  6175. "forms": _formdiv,
  6176. "click": function () {
  6177. U.MD.D.I.openApplication(str, obj, info);
  6178. }
  6179. }
  6180. break;
  6181. case "doc":
  6182. aTool = 6;
  6183. _iframe = $$("iframe", {
  6184. "frameborder": "no",
  6185. "border": "0",
  6186. "scrolling ": "no",
  6187. "style": {
  6188. "cssText": "border:0;width:100%;height:100%"
  6189. },
  6190. "src": "/Office/Word/WordEditArea.htm"
  6191. })
  6192. _box.appendChild(_iframe);
  6193. _box.appendChild(_jie);
  6194. _formdiv = new U.UF.UI.form(
  6195. "协同文档",
  6196. _box, {
  6197. "id": "doc" + cid + stage + task + tool,
  6198. "style": {
  6199. "width": "90%",
  6200. "height": "90%",
  6201. "overflow": 'hidden'
  6202. },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, {
  6207. "style": {
  6208. "height": "36px"
  6209. }
  6210. }).form; //创建窗体
  6211. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6212. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6213. })
  6214. _taskbar = {
  6215. "id": str + _formdiv.id,
  6216. "style": {
  6217. "backgroundImage": "url(/img/icon/doc.png)"
  6218. },
  6219. "name": "协同文档",
  6220. "forms": _formdiv,
  6221. "click": function () {
  6222. U.MD.D.I.openApplication(str, obj, info);
  6223. }
  6224. }
  6225. break;
  6226. case "mindNetwork": //好友打开
  6227. aTool = 7;
  6228. _iframe = $$("iframe", {
  6229. "webkitallowfullscreen": "",
  6230. "mozallowfullscreen": "",
  6231. "allowfullscreen": "",
  6232. "frameborder": "no",
  6233. "border": "0",
  6234. "scrolling ": "no",
  6235. "style": {
  6236. "cssText": "border:0; width:100%; height:100%;"
  6237. },
  6238. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6239. })
  6240. _box.appendChild(_iframe);
  6241. _box.appendChild(_jie);
  6242. _formdiv = new U.UF.UI.form(
  6243. "思维网格",
  6244. _box, {
  6245. "id": "mindNetwork" + cid + stage + task + tool,
  6246. "style": {
  6247. "width": "90%",
  6248. "height": "90%",
  6249. "overflow": 'hidden'
  6250. },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, {
  6255. "style": {
  6256. "height": "36px"
  6257. }
  6258. }).form; //创建窗体
  6259. _taskbar = {
  6260. "id": str + _formdiv.id,
  6261. "style": {
  6262. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6263. },
  6264. "name": "思维网格",
  6265. "forms": _formdiv,
  6266. "click": function () {
  6267. U.MD.D.I.openApplication(str, obj, info);
  6268. }
  6269. }
  6270. break;
  6271. case "courseDesign":
  6272. _iframe = $$("iframe", {
  6273. "webkitallowfullscreen": "",
  6274. "mozallowfullscreen": "",
  6275. "allowfullscreen": "",
  6276. "frameborder": "no",
  6277. "border": "0",
  6278. "scrolling ": "no",
  6279. "style": {
  6280. "cssText": "border:0; width:100%; height:100%;"
  6281. },
  6282. "src": "/course-design-vue"
  6283. })
  6284. _box.appendChild(_iframe);
  6285. _box.appendChild(_jie);
  6286. _formdiv = new U.UF.UI.form(
  6287. "项目设计",
  6288. _box, {
  6289. "id": "courseDesign" + cid + stage + task + tool,
  6290. "style": {
  6291. "width": "90%",
  6292. "height": "90%",
  6293. "overflow": 'hidden'
  6294. },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, {
  6299. "style": {
  6300. "height": "36px"
  6301. }
  6302. }).form; //创建窗体
  6303. _taskbar = {
  6304. "id": str + _formdiv.id,
  6305. "style": {
  6306. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6307. },
  6308. "name": "项目设计",
  6309. "forms": _formdiv,
  6310. "click": function () {
  6311. U.MD.D.I.openApplication(str, obj, info);
  6312. }
  6313. }
  6314. break;
  6315. }
  6316. const script1 = document.createElement("script");
  6317. script1.type = "text/javascript";
  6318. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6319. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6320. const script2 = document.createElement("script");
  6321. script2.type = "text/javascript";
  6322. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6323. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6324. const script3 = document.createElement("script");
  6325. script3.type = "text/javascript";
  6326. script3.charset = "UTF-8";
  6327. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6328. const script4 = document.createElement("script");
  6329. script4.type = "text/javascript";
  6330. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6331. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6332. if (_iframe) {
  6333. if (str == 'doc') {
  6334. _iframe = _formdiv.querySelector('iframe')
  6335. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6336. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6337. _iframe.contentWindow.document.body.appendChild(script1);
  6338. _iframe.contentWindow.document.body.appendChild(script2);
  6339. // _iframe.contentWindow.document.body.appendChild(script3);
  6340. _iframe.contentWindow.document.body.appendChild(script4);
  6341. })
  6342. if (onloadListener) {
  6343. _iframe.contentDocument.location.reload()
  6344. } else {
  6345. _iframe.contentDocument.location.reload()
  6346. }
  6347. } else if (str == 'courseDesign') {
  6348. U.UF.DL.iframeLoad(_iframe, function () {
  6349. // _iframe.contentWindow.U.MD.O.W.load();
  6350. // _iframe.contentWindow.document.body.appendChild(script1);
  6351. _iframe.contentWindow.document.body.appendChild(script2);
  6352. _iframe.contentWindow.document.body.appendChild(script4);
  6353. })
  6354. } else if (str == 'mind') {
  6355. _iframe = _formdiv.querySelector('iframe')
  6356. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6357. //
  6358. _iframe.contentWindow.document.body.appendChild(script1);
  6359. _iframe.contentWindow.document.body.appendChild(script2);
  6360. _iframe.contentWindow.document.body.appendChild(script4);
  6361. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6362. })
  6363. if (onloadListener) {
  6364. _iframe.contentDocument.location.reload()
  6365. } else {
  6366. _iframe.contentDocument.location.reload()
  6367. }
  6368. } else if (str == 'whiteboard') {
  6369. _iframe = _formdiv.querySelector('iframe')
  6370. let onloadListener = _iframe.onload = () => {
  6371. _iframe.contentWindow.document.body.appendChild(script1);
  6372. _iframe.contentWindow.document.body.appendChild(script2);
  6373. _iframe.contentWindow.document.body.appendChild(script4);
  6374. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6375. };
  6376. // if (onloadListener) {
  6377. // try {
  6378. // _iframe.src += "?cocorobo="+new Date().getTime()
  6379. // _iframe.contentWindow.document.location.reload()
  6380. // } catch (error) {
  6381. // }
  6382. // } else {
  6383. // _iframe.contentDocument.location.reload()
  6384. // }
  6385. } else {
  6386. _iframe.onload = () => {
  6387. _iframe.contentWindow.document.body.appendChild(script1);
  6388. _iframe.contentWindow.document.body.appendChild(script2);
  6389. // _iframe.contentWindow.document.body.appendChild(script3);
  6390. _iframe.contentWindow.document.body.appendChild(script4);
  6391. };
  6392. }
  6393. _jie.onclick = async () => {
  6394. let text = ''
  6395. if (aTool == 1) {
  6396. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6397. } else if (aTool == 6) {
  6398. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6399. } else if (aTool == 3) {
  6400. text = await U.MD.D.I.getEditorContent(_iframe);
  6401. }
  6402. _loading.style.display = 'flex'
  6403. console.log(_loading);
  6404. var _ajs = _iframe.contentWindow.document.createElement("script");
  6405. _ajs.type = "text/javascript";
  6406. _ajs.innerHTML =
  6407. // 'console.log(' + _loading + ');\n' +
  6408. 'var _js = document.createElement("script");\n' +
  6409. '_js.type="text/javascript";\n' +
  6410. '_js.charset="UTF-8";\n' +
  6411. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6412. "_js.onload = function(){\n" +
  6413. ' var a = document.getElementsByTagName("img")\n' +
  6414. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6415. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6416. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6417. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6418. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6419. "beforeUpload_shishi(file," +
  6420. "'" +
  6421. _userid +
  6422. "'" +
  6423. ", " +
  6424. "'" +
  6425. _cid +
  6426. "'" +
  6427. ", " +
  6428. "'" +
  6429. _stage +
  6430. "'" +
  6431. ", " +
  6432. "'" +
  6433. _task +
  6434. "'" +
  6435. ", " +
  6436. "'" +
  6437. _tool +
  6438. "'" +
  6439. ", " +
  6440. "'" +
  6441. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6442. "'" +
  6443. ", " +
  6444. "'" +
  6445. aTool +
  6446. "'" +
  6447. ", " +
  6448. "`" +
  6449. text +
  6450. "`" +
  6451. ")\n" +
  6452. " });\n" +
  6453. "}\n" +
  6454. "document.head.appendChild(_js);\n";
  6455. _iframe.contentWindow.document.head.appendChild(_ajs);
  6456. }
  6457. }
  6458. //U.MD.D.I.openClick(str);
  6459. //如果有任务栏信息
  6460. // if (_taskbar) {
  6461. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6462. // }
  6463. }
  6464. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6465. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6466. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6467. _userinfo = US.userInfo, //登录用户信息
  6468. _userid = US.userInfo.userid //登录用户id
  6469. let _iframe;
  6470. let _cid = cid,
  6471. _stage = stage,
  6472. _task = task,
  6473. _tool = tool;
  6474. var _jie = $$("div", {
  6475. "style": {
  6476. "position": "absolute",
  6477. "bottom": "50px",
  6478. "right": "50px",
  6479. "zIndex": "9999",
  6480. "backgroundColor": "#2268bc",
  6481. "color": "#fff",
  6482. "padding": "12px 20px",
  6483. "cursor": "pointer",
  6484. "borderRadius": "4px",
  6485. },
  6486. "innerHTML": "提交作业"
  6487. })
  6488. let aTool = ''
  6489. let _loading = document.createElement('div')
  6490. _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;"
  6491. // _loading.id = "";
  6492. let _lchild = document.createElement('div')
  6493. let _limg = document.createElement('img')
  6494. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6495. _limg.style = "width: 26px;margin-right: 10px;"
  6496. _lchild.appendChild(_limg)
  6497. let _lspan = document.createElement('span')
  6498. _lspan.innerHTML = "上传中..."
  6499. _lchild.appendChild(_lspan)
  6500. _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%);"
  6501. _loading.appendChild(_lchild)
  6502. let _box = $$('div', {
  6503. "style": {
  6504. "position": "relative",
  6505. "width": "100%",
  6506. "height": "100%",
  6507. },
  6508. })
  6509. _box.appendChild(_loading)
  6510. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6511. switch (str) {
  6512. case "whiteboard":
  6513. aTool = 1;
  6514. _iframe = $$("iframe", {
  6515. "frameborder": "no",
  6516. "border": "0",
  6517. "scrolling ": "no",
  6518. "style": {
  6519. "cssText": "border:0;width:100%;height:100%"
  6520. },
  6521. "src": "https://beta.iwb.cocorobo.cn/"
  6522. })
  6523. _box.appendChild(_iframe);
  6524. _box.appendChild(_jie);
  6525. _formdiv = new U.UF.UI.form(
  6526. "电子白板",
  6527. _box, {
  6528. "id": "whiteboard" + cid + stage + task + tool,
  6529. "style": {
  6530. "width": "90%",
  6531. "height": "90%",
  6532. "overflow": 'hidden'
  6533. },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, {
  6538. "style": {
  6539. "height": "36px"
  6540. }
  6541. }).form; //创建窗体
  6542. _taskbar = {
  6543. "id": str + _formdiv.id,
  6544. "style": {
  6545. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6546. },
  6547. "name": "电子白板",
  6548. "forms": _formdiv,
  6549. "click": function () {
  6550. U.MD.D.I.openApplication(str, obj, info);
  6551. }
  6552. }
  6553. break;
  6554. case "mind":
  6555. aTool = 3;
  6556. _iframe = $$("iframe", {
  6557. "frameborder": "no",
  6558. "border": "0",
  6559. "scrolling ": "no",
  6560. "style": {
  6561. "cssText": "border:0;width:100%;height:100%"
  6562. },
  6563. "src": "/kityminder-editor/dist/index.html"
  6564. })
  6565. _box.appendChild(_iframe);
  6566. _box.appendChild(_jie);
  6567. _formdiv = new U.UF.UI.form(
  6568. "思维导图",
  6569. _box, { //"/jsmind/example/demo.html"
  6570. "id": "mind" + cid + stage + task + tool,
  6571. "style": {
  6572. "width": "90%",
  6573. "height": "90%",
  6574. "overflow": 'hidden'
  6575. },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, {
  6580. "style": {
  6581. "height": "36px"
  6582. }
  6583. }).form; //创建窗体
  6584. _taskbar = {
  6585. "id": str + _formdiv.id,
  6586. "style": {
  6587. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6588. },
  6589. "name": "思维导图",
  6590. "forms": _formdiv,
  6591. "click": function () {
  6592. U.MD.D.I.openApplication(str, obj, info);
  6593. }
  6594. }
  6595. break;
  6596. case "MindMap":
  6597. aTool = 3;
  6598. _iframe = $$("iframe", {
  6599. "frameborder": "no",
  6600. "border": "0",
  6601. "scrolling ": "no",
  6602. "style": {
  6603. "cssText": "border:0;width:100%;height:100%"
  6604. },
  6605. "src": "//cloud.cocorobo.cn/mind/"
  6606. })
  6607. _box.appendChild(_iframe);
  6608. _box.appendChild(_jie);
  6609. _formdiv = new U.UF.UI.form(
  6610. "思维导图",
  6611. _box, { //"/jsmind/example/demo.html"
  6612. "id": "mind" + cid + stage + task + tool,
  6613. "style": {
  6614. "width": "90%",
  6615. "height": "90%",
  6616. "overflow": 'hidden'
  6617. },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, {
  6622. "style": {
  6623. "height": "36px"
  6624. }
  6625. }).form; //创建窗体
  6626. _taskbar = {
  6627. "id": str + _formdiv.id,
  6628. "style": {
  6629. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6630. },
  6631. "name": "思维导图",
  6632. "forms": _formdiv,
  6633. "click": function () {
  6634. U.MD.D.I.openApplication(str, obj, info);
  6635. }
  6636. }
  6637. break;
  6638. case "doc":
  6639. aTool = 6;
  6640. _iframe = $$("iframe", {
  6641. "frameborder": "no",
  6642. "border": "0",
  6643. "scrolling ": "no",
  6644. "style": {
  6645. "cssText": "border:0;width:100%;height:100%"
  6646. },
  6647. "src": "/Office/Word/WordEditArea.htm"
  6648. })
  6649. _box.appendChild(_iframe);
  6650. _box.appendChild(_jie);
  6651. _formdiv = new U.UF.UI.form(
  6652. "协同文档",
  6653. _box, {
  6654. "id": "doc" + cid + stage + task + tool,
  6655. "style": {
  6656. "width": "90%",
  6657. "height": "90%",
  6658. "overflow": 'hidden'
  6659. },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, {
  6664. "style": {
  6665. "height": "36px"
  6666. }
  6667. }).form; //创建窗体
  6668. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6669. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6670. })
  6671. _taskbar = {
  6672. "id": str + _formdiv.id,
  6673. "style": {
  6674. "backgroundImage": "url(/img/icon/doc.png)"
  6675. },
  6676. "name": "协同文档",
  6677. "forms": _formdiv,
  6678. "click": function () {
  6679. U.MD.D.I.openApplication(str, obj, info);
  6680. }
  6681. }
  6682. break;
  6683. case "mindNetwork": //好友打开
  6684. aTool = 7;
  6685. _iframe = $$("iframe", {
  6686. "webkitallowfullscreen": "",
  6687. "mozallowfullscreen": "",
  6688. "allowfullscreen": "",
  6689. "frameborder": "no",
  6690. "border": "0",
  6691. "scrolling ": "no",
  6692. "style": {
  6693. "cssText": "border:0; width:100%; height:100%;"
  6694. },
  6695. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6696. })
  6697. _box.appendChild(_iframe);
  6698. _box.appendChild(_jie);
  6699. _formdiv = new U.UF.UI.form(
  6700. "思维网格",
  6701. _box, {
  6702. "id": "mindNetwork" + cid + stage + task + tool,
  6703. "style": {
  6704. "width": "90%",
  6705. "height": "90%",
  6706. "overflow": 'hidden'
  6707. },
  6708. "onresize": function () { }
  6709. }, {
  6710. closecallback: function () { }
  6711. }, {
  6712. "style": {
  6713. "height": "36px"
  6714. }
  6715. }).form; //创建窗体
  6716. _taskbar = {
  6717. "id": str + _formdiv.id,
  6718. "style": {
  6719. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6720. },
  6721. "name": "思维网格",
  6722. "forms": _formdiv,
  6723. "click": function () {
  6724. U.MD.D.I.openApplication(str, obj, info);
  6725. }
  6726. }
  6727. break;
  6728. case "courseDesign":
  6729. _iframe = $$("iframe", {
  6730. "webkitallowfullscreen": "",
  6731. "mozallowfullscreen": "",
  6732. "allowfullscreen": "",
  6733. "frameborder": "no",
  6734. "border": "0",
  6735. "scrolling ": "no",
  6736. "style": {
  6737. "cssText": "border:0; width:100%; height:100%;"
  6738. },
  6739. "src": "/course-design-vue"
  6740. })
  6741. _box.appendChild(_iframe);
  6742. _box.appendChild(_jie);
  6743. _formdiv = new U.UF.UI.form(
  6744. "项目设计",
  6745. _box, {
  6746. "id": "courseDesign" + cid + stage + task + tool,
  6747. "style": {
  6748. "width": "90%",
  6749. "height": "90%",
  6750. "overflow": 'hidden'
  6751. },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, {
  6756. "style": {
  6757. "height": "36px"
  6758. }
  6759. }).form; //创建窗体
  6760. _taskbar = {
  6761. "id": str + _formdiv.id,
  6762. "style": {
  6763. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6764. },
  6765. "name": "项目设计",
  6766. "forms": _formdiv,
  6767. "click": function () {
  6768. U.MD.D.I.openApplication(str, obj, info);
  6769. }
  6770. }
  6771. break;
  6772. }
  6773. const script1 = document.createElement("script");
  6774. script1.type = "text/javascript";
  6775. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6776. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6777. const script2 = document.createElement("script");
  6778. script2.type = "text/javascript";
  6779. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6780. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6781. const script3 = document.createElement("script");
  6782. script3.type = "text/javascript";
  6783. script3.charset = "UTF-8";
  6784. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6785. const script4 = document.createElement("script");
  6786. script4.type = "text/javascript";
  6787. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6788. script4.src = window.origin + "/js/Common/jietu2E.js";
  6789. if (_iframe) {
  6790. if (str == 'doc') {
  6791. _iframe = _formdiv.querySelector('iframe')
  6792. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6793. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6794. _iframe.contentWindow.document.body.appendChild(script1);
  6795. _iframe.contentWindow.document.body.appendChild(script2);
  6796. // _iframe.contentWindow.document.body.appendChild(script3);
  6797. _iframe.contentWindow.document.body.appendChild(script4);
  6798. })
  6799. if (onloadListener) {
  6800. _iframe.contentDocument.location.reload()
  6801. } else {
  6802. _iframe.contentDocument.location.reload()
  6803. }
  6804. } else if (str == 'courseDesign') {
  6805. U.UF.DL.iframeLoad(_iframe, function () {
  6806. // _iframe.contentWindow.U.MD.O.W.load();
  6807. // _iframe.contentWindow.document.body.appendChild(script1);
  6808. _iframe.contentWindow.document.body.appendChild(script2);
  6809. _iframe.contentWindow.document.body.appendChild(script4);
  6810. })
  6811. } else if (str == 'mind') {
  6812. _iframe = _formdiv.querySelector('iframe')
  6813. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6814. //
  6815. _iframe.contentWindow.document.body.appendChild(script1);
  6816. _iframe.contentWindow.document.body.appendChild(script2);
  6817. _iframe.contentWindow.document.body.appendChild(script4);
  6818. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6819. })
  6820. if (onloadListener) {
  6821. _iframe.contentDocument.location.reload()
  6822. } else {
  6823. _iframe.contentDocument.location.reload()
  6824. }
  6825. } else if (str == 'whiteboard') {
  6826. _iframe = _formdiv.querySelector('iframe')
  6827. let onloadListener = _iframe.onload = () => {
  6828. _iframe.contentWindow.document.body.appendChild(script1);
  6829. _iframe.contentWindow.document.body.appendChild(script2);
  6830. _iframe.contentWindow.document.body.appendChild(script4);
  6831. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6832. };
  6833. // if (onloadListener) {
  6834. // try {
  6835. // _iframe.src += "?cocorobo="+new Date().getTime()
  6836. // _iframe.contentWindow.document.location.reload()
  6837. // } catch (error) {
  6838. // }
  6839. // } else {
  6840. // _iframe.contentDocument.location.reload()
  6841. // }
  6842. } else {
  6843. _iframe.onload = () => {
  6844. _iframe.contentWindow.document.body.appendChild(script1);
  6845. _iframe.contentWindow.document.body.appendChild(script2);
  6846. // _iframe.contentWindow.document.body.appendChild(script3);
  6847. _iframe.contentWindow.document.body.appendChild(script4);
  6848. };
  6849. }
  6850. _jie.onclick = async () => {
  6851. let text = ''
  6852. if (aTool == 1) {
  6853. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6854. } else if (aTool == 6) {
  6855. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6856. } else if (aTool == 3) {
  6857. text = await U.MD.D.I.getEditorContent(_iframe);
  6858. }
  6859. _loading.style.display = 'flex'
  6860. console.log(_loading);
  6861. var _ajs = _iframe.contentWindow.document.createElement("script");
  6862. _ajs.type = "text/javascript";
  6863. _ajs.innerHTML =
  6864. // 'console.log(' + _loading + ');\n' +
  6865. 'var _js = document.createElement("script");\n' +
  6866. '_js.type="text/javascript";\n' +
  6867. '_js.charset="UTF-8";\n' +
  6868. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6869. "_js.onload = function(){\n" +
  6870. ' var a = document.getElementsByTagName("img")\n' +
  6871. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6872. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6873. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6874. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6875. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6876. "beforeUpload_shishi(file," +
  6877. "'" +
  6878. _userid +
  6879. "'" +
  6880. ", " +
  6881. "'" +
  6882. _cid +
  6883. "'" +
  6884. ", " +
  6885. "'" +
  6886. _stage +
  6887. "'" +
  6888. ", " +
  6889. "'" +
  6890. _task +
  6891. "'" +
  6892. ", " +
  6893. "'" +
  6894. _tool +
  6895. "'" +
  6896. ", " +
  6897. "'" +
  6898. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6899. "'" +
  6900. ", " +
  6901. "'" +
  6902. aTool +
  6903. "'" +
  6904. ", " +
  6905. "`" +
  6906. text +
  6907. "`" +
  6908. ")\n" +
  6909. " });\n" +
  6910. "}\n" +
  6911. "document.head.appendChild(_js);\n";
  6912. _iframe.contentWindow.document.head.appendChild(_ajs);
  6913. }
  6914. }
  6915. //U.MD.D.I.openClick(str);
  6916. //如果有任务栏信息
  6917. // if (_taskbar) {
  6918. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6919. // }
  6920. }
  6921. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6922. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6923. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6924. _userid = student.userid, //登录用户id
  6925. _username = student.student //用户名字
  6926. let _iframe;
  6927. let _cid = cid,
  6928. _stage = stage,
  6929. _task = task,
  6930. _tool = tool;
  6931. var _jie = $$("div", {
  6932. "style": {
  6933. "position": "absolute",
  6934. "bottom": "50px",
  6935. "right": "50px",
  6936. "zIndex": "9999",
  6937. "backgroundColor": "#2268bc",
  6938. "color": "#fff",
  6939. "padding": "12px 20px",
  6940. "cursor": "pointer",
  6941. "borderRadius": "4px",
  6942. },
  6943. "innerHTML": "提交作业"
  6944. })
  6945. let aTool = ''
  6946. let _loading = document.createElement('div')
  6947. _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;"
  6948. // _loading.id = "";
  6949. let _lchild = document.createElement('div')
  6950. let _limg = document.createElement('img')
  6951. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6952. _limg.style = "width: 26px;margin-right: 10px;"
  6953. _lchild.appendChild(_limg)
  6954. let _lspan = document.createElement('span')
  6955. _lspan.innerHTML = "上传中..."
  6956. _lchild.appendChild(_lspan)
  6957. _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%);"
  6958. _loading.appendChild(_lchild)
  6959. var _box = $$('div', {
  6960. "style": {
  6961. "position": "relative",
  6962. "width": "100%",
  6963. "height": "100%",
  6964. },
  6965. })
  6966. _box.appendChild(_loading)
  6967. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6968. switch (str) {
  6969. case "whiteboard":
  6970. aTool = 1;
  6971. _iframe = $$("iframe", {
  6972. "frameborder": "no",
  6973. "border": "0",
  6974. "scrolling ": "no",
  6975. "style": {
  6976. "cssText": "border:0;width:100%;height:100%"
  6977. },
  6978. "src": "https://beta.iwb.cocorobo.cn/"
  6979. })
  6980. _box.appendChild(_iframe);
  6981. _box.appendChild(_jie);
  6982. _formdiv = new U.UF.UI.form(
  6983. "电子白板-" + _username,
  6984. _box, {
  6985. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6986. "style": {
  6987. "width": "90%",
  6988. "height": "90%",
  6989. "overflow": 'hidden'
  6990. },
  6991. "onresize": function () { }
  6992. }, {
  6993. closecallback: function () { }
  6994. }, {
  6995. "style": {
  6996. "height": "36px"
  6997. }
  6998. }).form; //创建窗体
  6999. _taskbar = {
  7000. "id": str + _formdiv.id,
  7001. "style": {
  7002. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7003. },
  7004. "name": "电子白板",
  7005. "forms": _formdiv,
  7006. "click": function () {
  7007. U.MD.D.I.openApplication(str, obj, info);
  7008. }
  7009. }
  7010. break;
  7011. case "mind":
  7012. aTool = 3;
  7013. _iframe = $$("iframe", {
  7014. "frameborder": "no",
  7015. "border": "0",
  7016. "scrolling ": "no",
  7017. "style": {
  7018. "cssText": "border:0;width:100%;height:100%"
  7019. },
  7020. "src": "/kityminder-editor/dist/index.html"
  7021. })
  7022. _box.appendChild(_iframe);
  7023. _box.appendChild(_jie);
  7024. _formdiv = new U.UF.UI.form(
  7025. "思维导图-" + _username,
  7026. _box, { //"/jsmind/example/demo.html"
  7027. "id": "mind" + cid + stage + task + tool + _userid,
  7028. "style": {
  7029. "width": "90%",
  7030. "height": "90%",
  7031. "overflow": 'hidden'
  7032. },
  7033. "onresize": function () { }
  7034. }, {
  7035. closecallback: function () { }
  7036. }, {
  7037. "style": {
  7038. "height": "36px"
  7039. }
  7040. }).form; //创建窗体
  7041. _taskbar = {
  7042. "id": str + _formdiv.id,
  7043. "style": {
  7044. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7045. },
  7046. "name": "思维导图",
  7047. "forms": _formdiv,
  7048. "click": function () {
  7049. U.MD.D.I.openApplication(str, obj, info);
  7050. }
  7051. }
  7052. break;
  7053. case "MindMap":
  7054. aTool = 3;
  7055. _iframe = $$("iframe", {
  7056. "frameborder": "no",
  7057. "border": "0",
  7058. "scrolling ": "no",
  7059. "style": {
  7060. "cssText": "border:0;width:100%;height:100%"
  7061. },
  7062. "src": "//cloud.cocorobo.cn/mind/"
  7063. })
  7064. _box.appendChild(_iframe);
  7065. _box.appendChild(_jie);
  7066. _formdiv = new U.UF.UI.form(
  7067. "思维导图-" + _username,
  7068. _box, { //"/jsmind/example/demo.html"
  7069. "id": "mind" + cid + stage + task + tool + _userid,
  7070. "style": {
  7071. "width": "90%",
  7072. "height": "90%",
  7073. "overflow": 'hidden'
  7074. },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, {
  7079. "style": {
  7080. "height": "36px"
  7081. }
  7082. }).form; //创建窗体
  7083. _taskbar = {
  7084. "id": str + _formdiv.id,
  7085. "style": {
  7086. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7087. },
  7088. "name": "思维导图",
  7089. "forms": _formdiv,
  7090. "click": function () {
  7091. U.MD.D.I.openApplication(str, obj, info);
  7092. }
  7093. }
  7094. break;
  7095. case "doc":
  7096. aTool = 6;
  7097. _iframe = $$("iframe", {
  7098. "frameborder": "no",
  7099. "border": "0",
  7100. "scrolling ": "no",
  7101. "style": {
  7102. "cssText": "border:0;width:100%;height:100%"
  7103. },
  7104. "src": "/Office/Word/WordEditArea.htm"
  7105. })
  7106. _box.appendChild(_iframe);
  7107. _box.appendChild(_jie);
  7108. _formdiv = new U.UF.UI.form(
  7109. "协同文档-" + _username,
  7110. _box, {
  7111. "id": "doc" + cid + stage + task + tool + _userid,
  7112. "style": {
  7113. "width": "90%",
  7114. "height": "90%",
  7115. "overflow": 'hidden'
  7116. },
  7117. "onresize": function () { }
  7118. }, {
  7119. closecallback: function () { }
  7120. }, {
  7121. "style": {
  7122. "height": "36px"
  7123. }
  7124. }).form; //创建窗体
  7125. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7126. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7127. })
  7128. _taskbar = {
  7129. "id": str + _formdiv.id,
  7130. "style": {
  7131. "backgroundImage": "url(/img/icon/doc.png)"
  7132. },
  7133. "name": "协同文档",
  7134. "forms": _formdiv,
  7135. "click": function () {
  7136. U.MD.D.I.openApplication(str, obj, info);
  7137. }
  7138. }
  7139. break;
  7140. case "mindNetwork": //好友打开
  7141. aTool = 7;
  7142. _iframe = $$("iframe", {
  7143. "webkitallowfullscreen": "",
  7144. "mozallowfullscreen": "",
  7145. "allowfullscreen": "",
  7146. "frameborder": "no",
  7147. "border": "0",
  7148. "scrolling ": "no",
  7149. "style": {
  7150. "cssText": "border:0; width:100%; height:100%;"
  7151. },
  7152. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7153. })
  7154. _box.appendChild(_iframe);
  7155. _box.appendChild(_jie);
  7156. _formdiv = new U.UF.UI.form(
  7157. "思维网格-" + _username,
  7158. _box, {
  7159. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7160. "style": {
  7161. "width": "90%",
  7162. "height": "90%",
  7163. "overflow": 'hidden'
  7164. },
  7165. "onresize": function () { }
  7166. }, {
  7167. closecallback: function () { }
  7168. }, {
  7169. "style": {
  7170. "height": "36px"
  7171. }
  7172. }).form; //创建窗体
  7173. _taskbar = {
  7174. "id": str + _formdiv.id,
  7175. "style": {
  7176. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7177. },
  7178. "name": "思维网格",
  7179. "forms": _formdiv,
  7180. "click": function () {
  7181. U.MD.D.I.openApplication(str, obj, info);
  7182. }
  7183. }
  7184. break;
  7185. case "courseDesign":
  7186. _iframe = $$("iframe", {
  7187. "webkitallowfullscreen": "",
  7188. "mozallowfullscreen": "",
  7189. "allowfullscreen": "",
  7190. "frameborder": "no",
  7191. "border": "0",
  7192. "scrolling ": "no",
  7193. "style": {
  7194. "cssText": "border:0; width:100%; height:100%;"
  7195. },
  7196. "src": "/course-design-vue"
  7197. })
  7198. _box.appendChild(_iframe);
  7199. _box.appendChild(_jie);
  7200. _formdiv = new U.UF.UI.form(
  7201. "项目设计-" + _username,
  7202. _box, {
  7203. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7204. "style": {
  7205. "width": "90%",
  7206. "height": "90%",
  7207. "overflow": 'hidden'
  7208. },
  7209. "onresize": function () { }
  7210. }, {
  7211. closecallback: function () { }
  7212. }, {
  7213. "style": {
  7214. "height": "36px"
  7215. }
  7216. }).form; //创建窗体
  7217. _taskbar = {
  7218. "id": str + _formdiv.id,
  7219. "style": {
  7220. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7221. },
  7222. "name": "项目设计",
  7223. "forms": _formdiv,
  7224. "click": function () {
  7225. U.MD.D.I.openApplication(str, obj, info);
  7226. }
  7227. }
  7228. break;
  7229. }
  7230. const script1 = document.createElement("script");
  7231. script1.type = "text/javascript";
  7232. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7233. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7234. const script2 = document.createElement("script");
  7235. script2.type = "text/javascript";
  7236. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7237. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7238. const script3 = document.createElement("script");
  7239. script3.type = "text/javascript";
  7240. script3.charset = "UTF-8";
  7241. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7242. const script4 = document.createElement("script");
  7243. script4.type = "text/javascript";
  7244. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7245. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7246. if (_iframe) {
  7247. if (str == 'doc') {
  7248. _iframe = _formdiv.querySelector('iframe')
  7249. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7250. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7251. _iframe.contentWindow.document.body.appendChild(script1);
  7252. _iframe.contentWindow.document.body.appendChild(script2);
  7253. // _iframe.contentWindow.document.body.appendChild(script3);
  7254. _iframe.contentWindow.document.body.appendChild(script4);
  7255. })
  7256. if (onloadListener) {
  7257. _iframe.contentDocument.location.reload()
  7258. } else {
  7259. _iframe.contentDocument.location.reload()
  7260. }
  7261. } else if (str == 'courseDesign') {
  7262. U.UF.DL.iframeLoad(_iframe, function () {
  7263. // _iframe.contentWindow.U.MD.O.W.load();
  7264. // _iframe.contentWindow.document.body.appendChild(script1);
  7265. _iframe.contentWindow.document.body.appendChild(script2);
  7266. _iframe.contentWindow.document.body.appendChild(script4);
  7267. })
  7268. } else if (str == 'mind') {
  7269. _iframe = _formdiv.querySelector('iframe')
  7270. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7271. //
  7272. _iframe.contentWindow.document.body.appendChild(script1);
  7273. _iframe.contentWindow.document.body.appendChild(script2);
  7274. _iframe.contentWindow.document.body.appendChild(script4);
  7275. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7276. })
  7277. if (onloadListener) {
  7278. _iframe.contentDocument.location.reload()
  7279. } else {
  7280. _iframe.contentDocument.location.reload()
  7281. }
  7282. } else if (str == 'whiteboard') {
  7283. _iframe = _formdiv.querySelector('iframe')
  7284. let onloadListener = _iframe.onload = () => {
  7285. _iframe.contentWindow.document.body.appendChild(script1);
  7286. _iframe.contentWindow.document.body.appendChild(script2);
  7287. _iframe.contentWindow.document.body.appendChild(script4);
  7288. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7289. };
  7290. // if (onloadListener) {
  7291. // try {
  7292. // _iframe.src += "?cocorobo="+new Date().getTime()
  7293. // _iframe.contentWindow.document.location.reload()
  7294. // } catch (error) {
  7295. // }
  7296. // } else {
  7297. // _iframe.contentDocument.location.reload()
  7298. // }
  7299. } else {
  7300. _iframe.onload = () => {
  7301. _iframe.contentWindow.document.body.appendChild(script1);
  7302. _iframe.contentWindow.document.body.appendChild(script2);
  7303. // _iframe.contentWindow.document.body.appendChild(script3);
  7304. _iframe.contentWindow.document.body.appendChild(script4);
  7305. };
  7306. }
  7307. _jie.onclick = async () => {
  7308. let text = ''
  7309. if (aTool == 1) {
  7310. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7311. } else if (aTool == 6) {
  7312. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7313. } else if (aTool == 3) {
  7314. text = await U.MD.D.I.getEditorContent(_iframe);
  7315. }
  7316. _loading.style.display = 'flex'
  7317. console.log(_loading);
  7318. var _ajs = _iframe.contentWindow.document.createElement("script");
  7319. _ajs.type = "text/javascript";
  7320. _ajs.innerHTML =
  7321. // 'console.log(' + _loading + ');\n' +
  7322. 'var _js = document.createElement("script");\n' +
  7323. '_js.type="text/javascript";\n' +
  7324. '_js.charset="UTF-8";\n' +
  7325. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7326. "_js.onload = function(){\n" +
  7327. ' var a = document.getElementsByTagName("img")\n' +
  7328. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7329. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7330. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7331. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7332. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7333. "beforeUpload_shishi(file," +
  7334. "'" +
  7335. _userid +
  7336. "'" +
  7337. ", " +
  7338. "'" +
  7339. _cid +
  7340. "'" +
  7341. ", " +
  7342. "'" +
  7343. _stage +
  7344. "'" +
  7345. ", " +
  7346. "'" +
  7347. _task +
  7348. "'" +
  7349. ", " +
  7350. "'" +
  7351. _tool +
  7352. "'" +
  7353. ", " +
  7354. "'" +
  7355. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7356. "'" +
  7357. ", " +
  7358. "'" +
  7359. aTool +
  7360. "'" +
  7361. ", " +
  7362. "`" +
  7363. text +
  7364. "`" +
  7365. ")\n" +
  7366. " });\n" +
  7367. "}\n" +
  7368. "document.head.appendChild(_js);\n";
  7369. _iframe.contentWindow.document.head.appendChild(_ajs);
  7370. }
  7371. }
  7372. }
  7373. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7374. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7375. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7376. _userid = student.userid, //登录用户id
  7377. _username = student.student //用户名字
  7378. let _iframe;
  7379. let _cid = cid,
  7380. _stage = stage,
  7381. _task = task,
  7382. _tool = tool;
  7383. var _jie = $$("div", {
  7384. "style": {
  7385. "position": "absolute",
  7386. "bottom": "50px",
  7387. "right": "50px",
  7388. "zIndex": "9999",
  7389. "backgroundColor": "#2268bc",
  7390. "color": "#fff",
  7391. "padding": "12px 20px",
  7392. "cursor": "pointer",
  7393. "borderRadius": "4px",
  7394. },
  7395. "innerHTML": "提交作业"
  7396. })
  7397. let aTool = ''
  7398. let _loading = document.createElement('div')
  7399. _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;"
  7400. // _loading.id = "";
  7401. let _lchild = document.createElement('div')
  7402. let _limg = document.createElement('img')
  7403. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7404. _limg.style = "width: 26px;margin-right: 10px;"
  7405. _lchild.appendChild(_limg)
  7406. let _lspan = document.createElement('span')
  7407. _lspan.innerHTML = "上传中..."
  7408. _lchild.appendChild(_lspan)
  7409. _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%);"
  7410. _loading.appendChild(_lchild)
  7411. var _box = $$('div', {
  7412. "style": {
  7413. "position": "relative",
  7414. "width": "100%",
  7415. "height": "100%",
  7416. },
  7417. })
  7418. _box.appendChild(_loading)
  7419. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7420. switch (str) {
  7421. case "whiteboard":
  7422. aTool = 1;
  7423. _iframe = $$("iframe", {
  7424. "frameborder": "no",
  7425. "border": "0",
  7426. "scrolling ": "no",
  7427. "style": {
  7428. "cssText": "border:0;width:100%;height:100%"
  7429. },
  7430. "src": "https://beta.iwb.cocorobo.cn/"
  7431. })
  7432. _box.appendChild(_iframe);
  7433. _box.appendChild(_jie);
  7434. _formdiv = new U.UF.UI.form(
  7435. "电子白板-" + _username,
  7436. _box, {
  7437. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7438. "style": {
  7439. "width": "90%",
  7440. "height": "90%",
  7441. "overflow": 'hidden'
  7442. },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () { }
  7446. }, {
  7447. "style": {
  7448. "height": "36px"
  7449. }
  7450. }).form; //创建窗体
  7451. _taskbar = {
  7452. "id": str + _formdiv.id,
  7453. "style": {
  7454. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7455. },
  7456. "name": "电子白板",
  7457. "forms": _formdiv,
  7458. "click": function () {
  7459. U.MD.D.I.openApplication(str, obj, info);
  7460. }
  7461. }
  7462. break;
  7463. case "mind":
  7464. aTool = 3;
  7465. _iframe = $$("iframe", {
  7466. "frameborder": "no",
  7467. "border": "0",
  7468. "scrolling ": "no",
  7469. "style": {
  7470. "cssText": "border:0;width:100%;height:100%"
  7471. },
  7472. "src": "/kityminder-editor/dist/index.html"
  7473. })
  7474. _box.appendChild(_iframe);
  7475. _box.appendChild(_jie);
  7476. _formdiv = new U.UF.UI.form(
  7477. "思维导图-" + _username,
  7478. _box, { //"/jsmind/example/demo.html"
  7479. "id": "mind" + cid + stage + task + tool + _userid,
  7480. "style": {
  7481. "width": "90%",
  7482. "height": "90%",
  7483. "overflow": 'hidden'
  7484. },
  7485. "onresize": function () { }
  7486. }, {
  7487. closecallback: function () { }
  7488. }, {
  7489. "style": {
  7490. "height": "36px"
  7491. }
  7492. }).form; //创建窗体
  7493. _taskbar = {
  7494. "id": str + _formdiv.id,
  7495. "style": {
  7496. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7497. },
  7498. "name": "思维导图",
  7499. "forms": _formdiv,
  7500. "click": function () {
  7501. U.MD.D.I.openApplication(str, obj, info);
  7502. }
  7503. }
  7504. break;
  7505. case "MindMap":
  7506. aTool = 3;
  7507. _iframe = $$("iframe", {
  7508. "frameborder": "no",
  7509. "border": "0",
  7510. "scrolling ": "no",
  7511. "style": {
  7512. "cssText": "border:0;width:100%;height:100%"
  7513. },
  7514. "src": "//cloud.cocorobo.cn/mind/"
  7515. })
  7516. _box.appendChild(_iframe);
  7517. _box.appendChild(_jie);
  7518. _formdiv = new U.UF.UI.form(
  7519. "思维导图-" + _username,
  7520. _box, { //"/jsmind/example/demo.html"
  7521. "id": "mind" + cid + stage + task + tool + _userid,
  7522. "style": {
  7523. "width": "90%",
  7524. "height": "90%",
  7525. "overflow": 'hidden'
  7526. },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, {
  7531. "style": {
  7532. "height": "36px"
  7533. }
  7534. }).form; //创建窗体
  7535. _taskbar = {
  7536. "id": str + _formdiv.id,
  7537. "style": {
  7538. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7539. },
  7540. "name": "思维导图",
  7541. "forms": _formdiv,
  7542. "click": function () {
  7543. U.MD.D.I.openApplication(str, obj, info);
  7544. }
  7545. }
  7546. break;
  7547. case "doc":
  7548. aTool = 6;
  7549. _iframe = $$("iframe", {
  7550. "frameborder": "no",
  7551. "border": "0",
  7552. "scrolling ": "no",
  7553. "style": {
  7554. "cssText": "border:0;width:100%;height:100%"
  7555. },
  7556. "src": "/Office/Word/WordEditArea.htm"
  7557. })
  7558. _box.appendChild(_iframe);
  7559. _box.appendChild(_jie);
  7560. _formdiv = new U.UF.UI.form(
  7561. "协同文档-" + _username,
  7562. _box, {
  7563. "id": "doc" + cid + stage + task + tool + _userid,
  7564. "style": {
  7565. "width": "90%",
  7566. "height": "90%",
  7567. "overflow": 'hidden'
  7568. },
  7569. "onresize": function () { }
  7570. }, {
  7571. closecallback: function () { }
  7572. }, {
  7573. "style": {
  7574. "height": "36px"
  7575. }
  7576. }).form; //创建窗体
  7577. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7578. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7579. })
  7580. _taskbar = {
  7581. "id": str + _formdiv.id,
  7582. "style": {
  7583. "backgroundImage": "url(/img/icon/doc.png)"
  7584. },
  7585. "name": "协同文档",
  7586. "forms": _formdiv,
  7587. "click": function () {
  7588. U.MD.D.I.openApplication(str, obj, info);
  7589. }
  7590. }
  7591. break;
  7592. case "mindNetwork": //好友打开
  7593. aTool = 7;
  7594. _iframe = $$("iframe", {
  7595. "webkitallowfullscreen": "",
  7596. "mozallowfullscreen": "",
  7597. "allowfullscreen": "",
  7598. "frameborder": "no",
  7599. "border": "0",
  7600. "scrolling ": "no",
  7601. "style": {
  7602. "cssText": "border:0; width:100%; height:100%;"
  7603. },
  7604. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7605. })
  7606. _box.appendChild(_iframe);
  7607. _box.appendChild(_jie);
  7608. _formdiv = new U.UF.UI.form(
  7609. "思维网格-" + _username,
  7610. _box, {
  7611. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7612. "style": {
  7613. "width": "90%",
  7614. "height": "90%",
  7615. "overflow": 'hidden'
  7616. },
  7617. "onresize": function () { }
  7618. }, {
  7619. closecallback: function () { }
  7620. }, {
  7621. "style": {
  7622. "height": "36px"
  7623. }
  7624. }).form; //创建窗体
  7625. _taskbar = {
  7626. "id": str + _formdiv.id,
  7627. "style": {
  7628. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7629. },
  7630. "name": "思维网格",
  7631. "forms": _formdiv,
  7632. "click": function () {
  7633. U.MD.D.I.openApplication(str, obj, info);
  7634. }
  7635. }
  7636. break;
  7637. case "courseDesign":
  7638. _iframe = $$("iframe", {
  7639. "webkitallowfullscreen": "",
  7640. "mozallowfullscreen": "",
  7641. "allowfullscreen": "",
  7642. "frameborder": "no",
  7643. "border": "0",
  7644. "scrolling ": "no",
  7645. "style": {
  7646. "cssText": "border:0; width:100%; height:100%;"
  7647. },
  7648. "src": "/course-design-vue"
  7649. })
  7650. _box.appendChild(_iframe);
  7651. _box.appendChild(_jie);
  7652. _formdiv = new U.UF.UI.form(
  7653. "项目设计-" + _username,
  7654. _box, {
  7655. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7656. "style": {
  7657. "width": "90%",
  7658. "height": "90%",
  7659. "overflow": 'hidden'
  7660. },
  7661. "onresize": function () { }
  7662. }, {
  7663. closecallback: function () { }
  7664. }, {
  7665. "style": {
  7666. "height": "36px"
  7667. }
  7668. }).form; //创建窗体
  7669. _taskbar = {
  7670. "id": str + _formdiv.id,
  7671. "style": {
  7672. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7673. },
  7674. "name": "项目设计",
  7675. "forms": _formdiv,
  7676. "click": function () {
  7677. U.MD.D.I.openApplication(str, obj, info);
  7678. }
  7679. }
  7680. break;
  7681. }
  7682. const script1 = document.createElement("script");
  7683. script1.type = "text/javascript";
  7684. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7685. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7686. const script2 = document.createElement("script");
  7687. script2.type = "text/javascript";
  7688. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7689. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7690. const script3 = document.createElement("script");
  7691. script3.type = "text/javascript";
  7692. script3.charset = "UTF-8";
  7693. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7694. const script4 = document.createElement("script");
  7695. script4.type = "text/javascript";
  7696. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7697. script4.src = window.origin + "/js/Common/jietu2E.js";
  7698. if (_iframe) {
  7699. if (str == 'doc') {
  7700. _iframe = _formdiv.querySelector('iframe')
  7701. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7702. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7703. _iframe.contentWindow.document.body.appendChild(script1);
  7704. _iframe.contentWindow.document.body.appendChild(script2);
  7705. // _iframe.contentWindow.document.body.appendChild(script3);
  7706. _iframe.contentWindow.document.body.appendChild(script4);
  7707. })
  7708. if (onloadListener) {
  7709. _iframe.contentDocument.location.reload()
  7710. } else {
  7711. _iframe.contentDocument.location.reload()
  7712. }
  7713. } else if (str == 'courseDesign') {
  7714. U.UF.DL.iframeLoad(_iframe, function () {
  7715. // _iframe.contentWindow.U.MD.O.W.load();
  7716. // _iframe.contentWindow.document.body.appendChild(script1);
  7717. _iframe.contentWindow.document.body.appendChild(script2);
  7718. _iframe.contentWindow.document.body.appendChild(script4);
  7719. })
  7720. } else if (str == 'mind') {
  7721. _iframe = _formdiv.querySelector('iframe')
  7722. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7723. //
  7724. _iframe.contentWindow.document.body.appendChild(script1);
  7725. _iframe.contentWindow.document.body.appendChild(script2);
  7726. _iframe.contentWindow.document.body.appendChild(script4);
  7727. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7728. })
  7729. if (onloadListener) {
  7730. _iframe.contentDocument.location.reload()
  7731. } else {
  7732. _iframe.contentDocument.location.reload()
  7733. }
  7734. } else if (str == 'whiteboard') {
  7735. _iframe = _formdiv.querySelector('iframe')
  7736. let onloadListener = _iframe.onload = () => {
  7737. _iframe.contentWindow.document.body.appendChild(script1);
  7738. _iframe.contentWindow.document.body.appendChild(script2);
  7739. _iframe.contentWindow.document.body.appendChild(script4);
  7740. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7741. };
  7742. // if (onloadListener) {
  7743. // try {
  7744. // _iframe.src += "?cocorobo="+new Date().getTime()
  7745. // _iframe.contentWindow.document.location.reload()
  7746. // } catch (error) {
  7747. // }
  7748. // } else {
  7749. // _iframe.contentDocument.location.reload()
  7750. // }
  7751. } else {
  7752. _iframe.onload = () => {
  7753. _iframe.contentWindow.document.body.appendChild(script1);
  7754. _iframe.contentWindow.document.body.appendChild(script2);
  7755. // _iframe.contentWindow.document.body.appendChild(script3);
  7756. _iframe.contentWindow.document.body.appendChild(script4);
  7757. };
  7758. }
  7759. _jie.onclick = async () => {
  7760. let text = ''
  7761. if (aTool == 1) {
  7762. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7763. } else if (aTool == 6) {
  7764. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7765. } else if (aTool == 3) {
  7766. text = await U.MD.D.I.getEditorContent(_iframe);
  7767. }
  7768. _loading.style.display = 'flex'
  7769. console.log(_loading);
  7770. var _ajs = _iframe.contentWindow.document.createElement("script");
  7771. _ajs.type = "text/javascript";
  7772. _ajs.innerHTML =
  7773. // 'console.log(' + _loading + ');\n' +
  7774. 'var _js = document.createElement("script");\n' +
  7775. '_js.type="text/javascript";\n' +
  7776. '_js.charset="UTF-8";\n' +
  7777. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7778. "_js.onload = function(){\n" +
  7779. ' var a = document.getElementsByTagName("img")\n' +
  7780. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7781. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7782. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7783. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7784. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7785. "beforeUpload_shishi(file," +
  7786. "'" +
  7787. _userid +
  7788. "'" +
  7789. ", " +
  7790. "'" +
  7791. _cid +
  7792. "'" +
  7793. ", " +
  7794. "'" +
  7795. _stage +
  7796. "'" +
  7797. ", " +
  7798. "'" +
  7799. _task +
  7800. "'" +
  7801. ", " +
  7802. "'" +
  7803. _tool +
  7804. "'" +
  7805. ", " +
  7806. "'" +
  7807. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7808. "'" +
  7809. ", " +
  7810. "'" +
  7811. aTool +
  7812. "'" +
  7813. ", " +
  7814. "`" +
  7815. text +
  7816. "`" +
  7817. ")\n" +
  7818. " });\n" +
  7819. "}\n" +
  7820. "document.head.appendChild(_js);\n";
  7821. _iframe.contentWindow.document.head.appendChild(_ajs);
  7822. }
  7823. }
  7824. }
  7825. U.MD.D.I.getEditorContent = function (iframe) {
  7826. return new Promise((resolve, reject) => {
  7827. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7828. console.log(content);
  7829. resolve(content)
  7830. });
  7831. });
  7832. }
  7833. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7834. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7835. // if (res.value[0].length > 0) {
  7836. // // resolve(res.value[0][0].text);
  7837. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7838. // $(fileInput).val('');
  7839. // });
  7840. // }
  7841. // }, [], { "type": "GET", "withCredentials": true });
  7842. var xmlhttp;
  7843. var Mac, Sn, DeviceId
  7844. if (window.XMLHttpRequest) {
  7845. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7846. xmlhttp = new XMLHttpRequest();
  7847. } else {
  7848. // IE6, IE5 浏览器执行代码
  7849. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7850. }
  7851. xmlhttp.onreadystatechange = function () {
  7852. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7853. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7854. // resolve(res.value[0][0].text);
  7855. if (type == '2') {
  7856. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7857. } else if (type == '3') {
  7858. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7859. }
  7860. } else {
  7861. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7862. }
  7863. }
  7864. }
  7865. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7866. xmlhttp.send();
  7867. }
  7868. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7869. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7870. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7871. _userinfo = US.userInfo, //登录用户信息
  7872. _userid = US.userInfo.userid //登录用户id
  7873. let _iframe;
  7874. let _cid = cid,
  7875. _stage = stage,
  7876. _task = task,
  7877. _tool = tool;
  7878. var _jie = $$("div", {
  7879. "style": {
  7880. "position": "absolute",
  7881. "bottom": "50px",
  7882. "right": "50px",
  7883. "zIndex": "9999",
  7884. "backgroundColor": "#2268bc",
  7885. "color": "#fff",
  7886. "padding": "12px 20px",
  7887. "cursor": "pointer",
  7888. "borderRadius": "4px",
  7889. },
  7890. "innerHTML": "确认并提交"
  7891. })
  7892. let aTool = ''
  7893. let _loading = document.createElement('div')
  7894. _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;"
  7895. // _loading.id = "";
  7896. let _lchild = document.createElement('div')
  7897. let _limg = document.createElement('img')
  7898. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7899. _limg.style = "width: 26px;margin-right: 10px;"
  7900. _lchild.appendChild(_limg)
  7901. let _lspan = document.createElement('span')
  7902. _lspan.innerHTML = "上传中..."
  7903. _lchild.appendChild(_lspan)
  7904. _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%);"
  7905. _loading.appendChild(_lchild)
  7906. var _box = $$('div', {
  7907. "style": {
  7908. "position": "relative",
  7909. "width": "100%",
  7910. "height": "100%",
  7911. },
  7912. })
  7913. _box.appendChild(_loading)
  7914. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7915. switch (str) {
  7916. case "whiteboard":
  7917. aTool = 1;
  7918. _iframe = $$("iframe", {
  7919. "frameborder": "no",
  7920. "border": "0",
  7921. "scrolling ": "no",
  7922. "style": {
  7923. "cssText": "border:0;width:100%;height:100%"
  7924. },
  7925. "src": "https://beta.iwb.cocorobo.cn/"
  7926. })
  7927. _box.appendChild(_iframe);
  7928. _box.appendChild(_jie);
  7929. _formdiv = new U.UF.UI.form(
  7930. "电子白板",
  7931. _box, {
  7932. "id": "whiteboards" + cid + stage + task + tool,
  7933. "style": {
  7934. "width": "90%",
  7935. "height": "90%",
  7936. "overflow": 'hidden'
  7937. },
  7938. "onresize": function () { }
  7939. }, {
  7940. closecallback: function () { }
  7941. }, {
  7942. "style": {
  7943. "height": "36px"
  7944. }
  7945. }).form; //创建窗体
  7946. _taskbar = {
  7947. "id": str + _formdiv.id,
  7948. "style": {
  7949. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7950. },
  7951. "name": "电子白板",
  7952. "forms": _formdiv,
  7953. "click": function () {
  7954. U.MD.D.I.openApplication(str, obj, info);
  7955. }
  7956. }
  7957. break;
  7958. case "mind":
  7959. aTool = 3;
  7960. _iframe = $$("iframe", {
  7961. "frameborder": "no",
  7962. "border": "0",
  7963. "scrolling ": "no",
  7964. "style": {
  7965. "cssText": "border:0;width:100%;height:100%"
  7966. },
  7967. "src": "/kityminder-editor/dist/index.html"
  7968. });
  7969. _box.appendChild(_iframe);
  7970. _box.appendChild(_jie);
  7971. _formdiv = new U.UF.UI.form(
  7972. "思维导图",
  7973. _box, { //"/jsmind/example/demo.html"
  7974. "id": "minds" + cid + stage + task + tool,
  7975. "style": {
  7976. "width": "90%",
  7977. "height": "90%",
  7978. "overflow": 'hidden'
  7979. },
  7980. "onresize": function () { }
  7981. }, {
  7982. closecallback: function () { }
  7983. }, {
  7984. "style": {
  7985. "height": "36px"
  7986. }
  7987. }).form; //创建窗体
  7988. _taskbar = {
  7989. "id": str + _formdiv.id,
  7990. "style": {
  7991. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7992. },
  7993. "name": "思维导图",
  7994. "forms": _formdiv,
  7995. "click": function () {
  7996. U.MD.D.I.openApplication(str, obj, info);
  7997. }
  7998. }
  7999. break;
  8000. case "doc":
  8001. aTool = 6;
  8002. _iframe = $$("iframe", {
  8003. "frameborder": "no",
  8004. "border": "0",
  8005. "scrolling ": "no",
  8006. "style": {
  8007. "cssText": "border:0;width:100%;height:100%"
  8008. },
  8009. "src": "/Office/Word/WordEditArea.htm"
  8010. })
  8011. _box.appendChild(_iframe);
  8012. _box.appendChild(_jie);
  8013. _formdiv = new U.UF.UI.form(
  8014. "协同文档",
  8015. _box, {
  8016. "id": "docs" + cid + stage + task + tool,
  8017. "style": {
  8018. "width": "90%",
  8019. "height": "90%",
  8020. "overflow": 'hidden'
  8021. },
  8022. "onresize": function () { }
  8023. }, {
  8024. closecallback: function () { }
  8025. }, {
  8026. "style": {
  8027. "height": "36px"
  8028. }
  8029. }).form; //创建窗体
  8030. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8031. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8032. })
  8033. _taskbar = {
  8034. "id": str + _formdiv.id,
  8035. "style": {
  8036. "backgroundImage": "url(/img/icon/doc.png)"
  8037. },
  8038. "name": "协同文档",
  8039. "forms": _formdiv,
  8040. "click": function () {
  8041. U.MD.D.I.openApplication(str, obj, info);
  8042. }
  8043. }
  8044. break;
  8045. }
  8046. const script1 = document.createElement("script");
  8047. script1.type = "text/javascript";
  8048. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8049. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8050. const script2 = document.createElement("script");
  8051. script2.type = "text/javascript";
  8052. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8053. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8054. const script3 = document.createElement("script");
  8055. script3.type = "text/javascript";
  8056. script3.charset = "UTF-8";
  8057. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8058. const script4 = document.createElement("script");
  8059. script4.type = "text/javascript";
  8060. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8061. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8062. if (_iframe) {
  8063. if (str == 'doc') {
  8064. _iframe = _formdiv.querySelector('iframe')
  8065. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8066. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8067. _iframe.contentWindow.document.body.appendChild(script1);
  8068. _iframe.contentWindow.document.body.appendChild(script2);
  8069. // _iframe.contentWindow.document.body.appendChild(script3);
  8070. _iframe.contentWindow.document.body.appendChild(script4);
  8071. })
  8072. if (onloadListener) {
  8073. _iframe.contentDocument.location.reload()
  8074. } else {
  8075. _iframe.contentDocument.location.reload()
  8076. }
  8077. } else if (str == 'mind') {
  8078. _iframe = _formdiv.querySelector('iframe')
  8079. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8080. _iframe.contentWindow.document.body.appendChild(script1);
  8081. _iframe.contentWindow.document.body.appendChild(script2);
  8082. _iframe.contentWindow.document.body.appendChild(script4);
  8083. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8084. })
  8085. if (onloadListener) {
  8086. _iframe.contentDocument.location.reload()
  8087. } else {
  8088. _iframe.contentDocument.location.reload()
  8089. }
  8090. } else {
  8091. _iframe.onload = () => {
  8092. _iframe.contentWindow.document.body.appendChild(script1);
  8093. _iframe.contentWindow.document.body.appendChild(script2);
  8094. // _iframe.contentWindow.document.body.appendChild(script3);
  8095. _iframe.contentWindow.document.body.appendChild(script4);
  8096. };
  8097. }
  8098. _jie.onclick = async () => {
  8099. let text = ''
  8100. if (aTool == 6) {
  8101. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8102. } else if (aTool == 3) {
  8103. text = await U.MD.D.I.getEditorContent(_iframe);
  8104. }
  8105. _loading.style.display = 'flex'
  8106. console.log(_loading);
  8107. var _ajs = _iframe.contentWindow.document.createElement("script");
  8108. _ajs.type = "text/javascript";
  8109. _ajs.innerHTML =
  8110. // 'console.log(' + _loading + ');\n' +
  8111. 'var _js = document.createElement("script");\n' +
  8112. '_js.type="text/javascript";\n' +
  8113. '_js.charset="UTF-8";\n' +
  8114. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8115. "_js.onload = function(){\n" +
  8116. ' var a = document.getElementsByTagName("img")\n' +
  8117. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8118. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8119. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8120. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8121. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8122. "beforeUpload_shishi(file," +
  8123. "'" +
  8124. _userid +
  8125. "'" +
  8126. ", " +
  8127. "'" +
  8128. _cid +
  8129. "'" +
  8130. ", " +
  8131. "'" +
  8132. _stage +
  8133. "'" +
  8134. ", " +
  8135. "'" +
  8136. _task +
  8137. "'" +
  8138. ", " +
  8139. "'" +
  8140. _tool +
  8141. "'" +
  8142. ", " +
  8143. "'" +
  8144. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8145. "'" +
  8146. ", " +
  8147. "'" +
  8148. aTool +
  8149. "'" +
  8150. ", " +
  8151. "`" +
  8152. text +
  8153. "`" +
  8154. ")\n" +
  8155. " });\n" +
  8156. "}\n" +
  8157. "document.head.appendChild(_js);\n";
  8158. _iframe.contentWindow.document.head.appendChild(_ajs);
  8159. }
  8160. }
  8161. //U.MD.D.I.openClick(str);
  8162. //如果有任务栏信息
  8163. // if (_taskbar) {
  8164. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8165. // }
  8166. }
  8167. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8168. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8169. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8170. _userinfo = US.userInfo, //登录用户信息
  8171. _userid = US.userInfo.userid //登录用户id
  8172. let _iframe;
  8173. let _cid = cid,
  8174. _stage = stage,
  8175. _task = task,
  8176. _tool = tool;
  8177. var _jie = $$("div", {
  8178. "style": {
  8179. "position": "absolute",
  8180. "bottom": "50px",
  8181. "right": "50px",
  8182. "zIndex": "9999",
  8183. "backgroundColor": "#2268bc",
  8184. "color": "#fff",
  8185. "padding": "12px 20px",
  8186. "cursor": "pointer",
  8187. "borderRadius": "4px",
  8188. },
  8189. "innerHTML": "确认并提交"
  8190. })
  8191. let aTool = ''
  8192. let _loading = document.createElement('div')
  8193. _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;"
  8194. // _loading.id = "";
  8195. let _lchild = document.createElement('div')
  8196. let _limg = document.createElement('img')
  8197. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8198. _limg.style = "width: 26px;margin-right: 10px;"
  8199. _lchild.appendChild(_limg)
  8200. let _lspan = document.createElement('span')
  8201. _lspan.innerHTML = "上传中..."
  8202. _lchild.appendChild(_lspan)
  8203. _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%);"
  8204. _loading.appendChild(_lchild)
  8205. var _box = $$('div', {
  8206. "style": {
  8207. "position": "relative",
  8208. "width": "100%",
  8209. "height": "100%",
  8210. },
  8211. })
  8212. _box.appendChild(_loading)
  8213. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8214. switch (str) {
  8215. case "whiteboard":
  8216. aTool = 1;
  8217. _iframe = $$("iframe", {
  8218. "frameborder": "no",
  8219. "border": "0",
  8220. "scrolling ": "no",
  8221. "style": {
  8222. "cssText": "border:0;width:100%;height:100%"
  8223. },
  8224. "src": "https://beta.iwb.cocorobo.cn/"
  8225. })
  8226. _box.appendChild(_iframe);
  8227. _box.appendChild(_jie);
  8228. _formdiv = new U.UF.UI.form(
  8229. "电子白板",
  8230. _box, {
  8231. "id": "whiteboards" + cid + stage + task + tool,
  8232. "style": {
  8233. "width": "90%",
  8234. "height": "90%",
  8235. "overflow": 'hidden'
  8236. },
  8237. "onresize": function () { }
  8238. }, {
  8239. closecallback: function () { }
  8240. }, {
  8241. "style": {
  8242. "height": "36px"
  8243. }
  8244. }).form; //创建窗体
  8245. _taskbar = {
  8246. "id": str + _formdiv.id,
  8247. "style": {
  8248. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8249. },
  8250. "name": "电子白板",
  8251. "forms": _formdiv,
  8252. "click": function () {
  8253. U.MD.D.I.openApplication(str, obj, info);
  8254. }
  8255. }
  8256. break;
  8257. case "mind":
  8258. aTool = 3;
  8259. _iframe = $$("iframe", {
  8260. "frameborder": "no",
  8261. "border": "0",
  8262. "scrolling ": "no",
  8263. "style": {
  8264. "cssText": "border:0;width:100%;height:100%"
  8265. },
  8266. "src": "/kityminder-editor/dist/index.html"
  8267. });
  8268. _box.appendChild(_iframe);
  8269. _box.appendChild(_jie);
  8270. _formdiv = new U.UF.UI.form(
  8271. "思维导图",
  8272. _box, { //"/jsmind/example/demo.html"
  8273. "id": "minds" + cid + stage + task + tool,
  8274. "style": {
  8275. "width": "90%",
  8276. "height": "90%",
  8277. "overflow": 'hidden'
  8278. },
  8279. "onresize": function () { }
  8280. }, {
  8281. closecallback: function () { }
  8282. }, {
  8283. "style": {
  8284. "height": "36px"
  8285. }
  8286. }).form; //创建窗体
  8287. _taskbar = {
  8288. "id": str + _formdiv.id,
  8289. "style": {
  8290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8291. },
  8292. "name": "思维导图",
  8293. "forms": _formdiv,
  8294. "click": function () {
  8295. U.MD.D.I.openApplication(str, obj, info);
  8296. }
  8297. }
  8298. break;
  8299. case "doc":
  8300. aTool = 6;
  8301. _iframe = $$("iframe", {
  8302. "frameborder": "no",
  8303. "border": "0",
  8304. "scrolling ": "no",
  8305. "style": {
  8306. "cssText": "border:0;width:100%;height:100%"
  8307. },
  8308. "src": "/Office/Word/WordEditArea.htm"
  8309. })
  8310. _box.appendChild(_iframe);
  8311. _box.appendChild(_jie);
  8312. _formdiv = new U.UF.UI.form(
  8313. "协同文档",
  8314. _box, {
  8315. "id": "docs" + cid + stage + task + tool,
  8316. "style": {
  8317. "width": "90%",
  8318. "height": "90%",
  8319. "overflow": 'hidden'
  8320. },
  8321. "onresize": function () { }
  8322. }, {
  8323. closecallback: function () { }
  8324. }, {
  8325. "style": {
  8326. "height": "36px"
  8327. }
  8328. }).form; //创建窗体
  8329. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8330. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8331. })
  8332. _taskbar = {
  8333. "id": str + _formdiv.id,
  8334. "style": {
  8335. "backgroundImage": "url(/img/icon/doc.png)"
  8336. },
  8337. "name": "协同文档",
  8338. "forms": _formdiv,
  8339. "click": function () {
  8340. U.MD.D.I.openApplication(str, obj, info);
  8341. }
  8342. }
  8343. break;
  8344. }
  8345. const script1 = document.createElement("script");
  8346. script1.type = "text/javascript";
  8347. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8348. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8349. const script2 = document.createElement("script");
  8350. script2.type = "text/javascript";
  8351. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8352. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8353. const script3 = document.createElement("script");
  8354. script3.type = "text/javascript";
  8355. script3.charset = "UTF-8";
  8356. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8357. const script4 = document.createElement("script");
  8358. script4.type = "text/javascript";
  8359. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8360. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8361. if (_iframe) {
  8362. if (str == 'doc') {
  8363. _iframe = _formdiv.querySelector('iframe')
  8364. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8365. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8366. _iframe.contentWindow.document.body.appendChild(script1);
  8367. _iframe.contentWindow.document.body.appendChild(script2);
  8368. // _iframe.contentWindow.document.body.appendChild(script3);
  8369. _iframe.contentWindow.document.body.appendChild(script4);
  8370. })
  8371. if (onloadListener) {
  8372. _iframe.contentDocument.location.reload()
  8373. } else {
  8374. _iframe.contentDocument.location.reload()
  8375. }
  8376. } else if (str == 'mind') {
  8377. _iframe = _formdiv.querySelector('iframe')
  8378. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8379. _iframe.contentWindow.document.body.appendChild(script1);
  8380. _iframe.contentWindow.document.body.appendChild(script2);
  8381. _iframe.contentWindow.document.body.appendChild(script4);
  8382. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8383. })
  8384. if (onloadListener) {
  8385. _iframe.contentDocument.location.reload()
  8386. } else {
  8387. _iframe.contentDocument.location.reload()
  8388. }
  8389. } else {
  8390. _iframe.onload = () => {
  8391. _iframe.contentWindow.document.body.appendChild(script1);
  8392. _iframe.contentWindow.document.body.appendChild(script2);
  8393. // _iframe.contentWindow.document.body.appendChild(script3);
  8394. _iframe.contentWindow.document.body.appendChild(script4);
  8395. };
  8396. }
  8397. _jie.onclick = async () => {
  8398. let text = ''
  8399. if (aTool == 6) {
  8400. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8401. } else if (aTool == 3) {
  8402. text = await U.MD.D.I.getEditorContent(_iframe);
  8403. }
  8404. _loading.style.display = 'flex'
  8405. console.log(_loading);
  8406. var _ajs = _iframe.contentWindow.document.createElement("script");
  8407. _ajs.type = "text/javascript";
  8408. _ajs.innerHTML =
  8409. // 'console.log(' + _loading + ');\n' +
  8410. 'var _js = document.createElement("script");\n' +
  8411. '_js.type="text/javascript";\n' +
  8412. '_js.charset="UTF-8";\n' +
  8413. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8414. "_js.onload = function(){\n" +
  8415. ' var a = document.getElementsByTagName("img")\n' +
  8416. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8417. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8418. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8419. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8420. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8421. "beforeUpload_shishi(file," +
  8422. "'" +
  8423. _userid +
  8424. "'" +
  8425. ", " +
  8426. "'" +
  8427. _cid +
  8428. "'" +
  8429. ", " +
  8430. "'" +
  8431. _stage +
  8432. "'" +
  8433. ", " +
  8434. "'" +
  8435. _task +
  8436. "'" +
  8437. ", " +
  8438. "'" +
  8439. _tool +
  8440. "'" +
  8441. ", " +
  8442. "'" +
  8443. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8444. "'" +
  8445. ", " +
  8446. "'" +
  8447. aTool +
  8448. "'" +
  8449. ", " +
  8450. "`" +
  8451. text +
  8452. "`" +
  8453. ")\n" +
  8454. " });\n" +
  8455. "}\n" +
  8456. "document.head.appendChild(_js);\n";
  8457. _iframe.contentWindow.document.head.appendChild(_ajs);
  8458. }
  8459. }
  8460. //U.MD.D.I.openClick(str);
  8461. //如果有任务栏信息
  8462. // if (_taskbar) {
  8463. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8464. // }
  8465. }
  8466. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8467. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8468. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8469. _userinfo = US.userInfo, //登录用户信息
  8470. _userid = US.userInfo.userid //登录用户id
  8471. let _iframe;
  8472. let _cid = cid,
  8473. _stage = stage,
  8474. _task = task,
  8475. _tool = tool;
  8476. var _jie = $$("div", {
  8477. "style": {
  8478. "position": "absolute",
  8479. "bottom": "50px",
  8480. "right": "50px",
  8481. "zIndex": "9999",
  8482. "backgroundColor": "#2268bc",
  8483. "color": "#fff",
  8484. "padding": "12px 20px",
  8485. "cursor": "pointer",
  8486. "borderRadius": "4px",
  8487. },
  8488. "innerHTML": "上传模板"
  8489. })
  8490. let aTool = ''
  8491. let _loading = document.createElement('div')
  8492. _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;"
  8493. // _loading.id = "";
  8494. let _lchild = document.createElement('div')
  8495. let _limg = document.createElement('img')
  8496. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8497. _limg.style = "width: 26px;margin-right: 10px;"
  8498. _lchild.appendChild(_limg)
  8499. let _lspan = document.createElement('span')
  8500. _lspan.innerHTML = "上传中..."
  8501. _lchild.appendChild(_lspan)
  8502. _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%);"
  8503. _loading.appendChild(_lchild)
  8504. var _box = $$('div', {
  8505. "style": {
  8506. "position": "relative",
  8507. "width": "100%",
  8508. "height": "100%",
  8509. },
  8510. })
  8511. _box.appendChild(_loading)
  8512. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8513. switch (str) {
  8514. case "whiteboard":
  8515. aTool = 1;
  8516. _iframe = $$("iframe", {
  8517. "frameborder": "no",
  8518. "border": "0",
  8519. "scrolling ": "no",
  8520. "style": {
  8521. "cssText": "border:0;width:100%;height:100%"
  8522. },
  8523. "src": "https://beta.iwb.cocorobo.cn/"
  8524. })
  8525. _box.appendChild(_iframe);
  8526. _box.appendChild(_jie);
  8527. _formdiv = new U.UF.UI.form(
  8528. "电子白板",
  8529. _box, {
  8530. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8531. "style": {
  8532. "width": "90%",
  8533. "height": "90%",
  8534. "overflow": 'hidden'
  8535. },
  8536. "onresize": function () { }
  8537. }, {
  8538. closecallback: function () { }
  8539. }, {
  8540. "style": {
  8541. "height": "36px"
  8542. }
  8543. }).form; //创建窗体
  8544. _taskbar = {
  8545. "id": str + _formdiv.id,
  8546. "style": {
  8547. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8548. },
  8549. "name": "电子白板",
  8550. "forms": _formdiv,
  8551. "click": function () {
  8552. U.MD.D.I.openApplication(str, obj, info);
  8553. }
  8554. }
  8555. break;
  8556. case "mind":
  8557. aTool = 3;
  8558. _iframe = $$("iframe", {
  8559. "frameborder": "no",
  8560. "border": "0",
  8561. "scrolling ": "no",
  8562. "style": {
  8563. "cssText": "border:0;width:100%;height:100%"
  8564. },
  8565. "src": "/kityminder-editor/dist/index.html"
  8566. });
  8567. _box.appendChild(_iframe);
  8568. _box.appendChild(_jie);
  8569. _formdiv = new U.UF.UI.form(
  8570. "思维导图",
  8571. _box, { //"/jsmind/example/demo.html"
  8572. "id": "minds_Yu" + cid + stage + task + tool,
  8573. "style": {
  8574. "width": "90%",
  8575. "height": "90%",
  8576. "overflow": 'hidden'
  8577. },
  8578. "onresize": function () { }
  8579. }, {
  8580. closecallback: function () { }
  8581. }, {
  8582. "style": {
  8583. "height": "36px"
  8584. }
  8585. }).form; //创建窗体
  8586. _taskbar = {
  8587. "id": str + _formdiv.id,
  8588. "style": {
  8589. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8590. },
  8591. "name": "思维导图",
  8592. "forms": _formdiv,
  8593. "click": function () {
  8594. U.MD.D.I.openApplication(str, obj, info);
  8595. }
  8596. }
  8597. break;
  8598. case "doc":
  8599. aTool = 6;
  8600. _iframe = $$("iframe", {
  8601. "frameborder": "no",
  8602. "border": "0",
  8603. "scrolling ": "no",
  8604. "style": {
  8605. "cssText": "border:0;width:100%;height:100%"
  8606. },
  8607. "src": "/Office/Word/WordEditArea.htm"
  8608. })
  8609. _box.appendChild(_iframe);
  8610. _box.appendChild(_jie);
  8611. _formdiv = new U.UF.UI.form(
  8612. "协同文档",
  8613. _box, {
  8614. "id": "docs_Yu" + cid + stage + task + tool,
  8615. "style": {
  8616. "width": "90%",
  8617. "height": "90%",
  8618. "overflow": 'hidden'
  8619. },
  8620. "onresize": function () { }
  8621. }, {
  8622. closecallback: function () { }
  8623. }, {
  8624. "style": {
  8625. "height": "36px"
  8626. }
  8627. }).form; //创建窗体
  8628. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8629. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8630. })
  8631. _taskbar = {
  8632. "id": str + _formdiv.id,
  8633. "style": {
  8634. "backgroundImage": "url(/img/icon/doc.png)"
  8635. },
  8636. "name": "协同文档",
  8637. "forms": _formdiv,
  8638. "click": function () {
  8639. U.MD.D.I.openApplication(str, obj, info);
  8640. }
  8641. }
  8642. break;
  8643. case "CocoPi":
  8644. aTool = 57;
  8645. _iframe = $$("iframe", {
  8646. "allowpaymentrequest": "allowpaymentrequest",
  8647. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8648. "webkitallowfullscreen": "",
  8649. "mozallowfullscreen": "",
  8650. "frameborder": "no",
  8651. "border": "0",
  8652. "scrolling ": "no",
  8653. "style": {
  8654. "cssText": "border:0;width:100%;height:100%"
  8655. },
  8656. "src": "https://pi.cocorobo.cn/"
  8657. })
  8658. _box.appendChild(_iframe);
  8659. _box.appendChild(_jie);
  8660. _formdiv = new U.UF.UI.form(
  8661. "CocoPi",
  8662. _box, {
  8663. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8664. "style": {
  8665. "width": "90%",
  8666. "height": "90%",
  8667. "overflow": 'hidden'
  8668. },
  8669. "onresize": function () { }
  8670. }, {
  8671. closecallback: function () { }
  8672. }, {
  8673. "style": {
  8674. "height": "36px"
  8675. }
  8676. }).form; //创建窗体
  8677. _taskbar = {
  8678. "id": str + _formdiv.id,
  8679. "style": {
  8680. "backgroundImage": "url(/img/icon/cocopi.png)"
  8681. },
  8682. "name": "CocoPi",
  8683. "forms": _formdiv,
  8684. "click": function () {
  8685. U.MD.D.I.openApplication(str, obj, info);
  8686. }
  8687. }
  8688. break;
  8689. }
  8690. if (_iframe) {
  8691. if (str == 'doc') {
  8692. _iframe = _formdiv.querySelector('iframe')
  8693. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8694. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8695. })
  8696. if (onloadListener) {
  8697. _iframe.contentDocument.location.reload()
  8698. } else {
  8699. _iframe.contentDocument.location.reload()
  8700. }
  8701. } else if (str == 'mind') {
  8702. _iframe = _formdiv.querySelector('iframe')
  8703. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8704. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8705. })
  8706. if (onloadListener) {
  8707. _iframe.contentDocument.location.reload()
  8708. } else {
  8709. _iframe.contentDocument.location.reload()
  8710. }
  8711. } else if (str == 'whiteboard') {
  8712. _iframe = _formdiv.querySelector('iframe')
  8713. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8714. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8715. })
  8716. // if (onloadListener) {
  8717. // try {
  8718. // _iframe.src += "?cocorobo="+new Date().getTime()
  8719. // _iframe.contentWindow.document.location.reload()
  8720. // } catch (error) {
  8721. // }
  8722. // } else {
  8723. // _iframe.contentDocument.location.reload()
  8724. // }
  8725. } else if (str == 'CocoPi') {
  8726. _iframe = _formdiv.querySelector('iframe')
  8727. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8728. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8729. })
  8730. if (onloadListener) {
  8731. _iframe.contentDocument.location.reload()
  8732. } else {
  8733. _iframe.contentDocument.location.reload()
  8734. }
  8735. } else {
  8736. _iframe.onload = () => { };
  8737. }
  8738. _jie.onclick = async () => {
  8739. let text = ''
  8740. let type = '2'
  8741. if (aTool == 1) {
  8742. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8743. type = '3'
  8744. } else if (aTool == 6) {
  8745. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8746. type = '1'
  8747. } else if (aTool == 3) {
  8748. text = await U.MD.D.I.getEditorContent(_iframe);
  8749. type = '2'
  8750. } else if (aTool == 57) {
  8751. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8752. type = '4'
  8753. }
  8754. _loading.style.display = 'flex'
  8755. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8756. }
  8757. }
  8758. //U.MD.D.I.openClick(str);
  8759. //如果有任务栏信息
  8760. // if (_taskbar) {
  8761. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8762. // }
  8763. }
  8764. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8765. var xmlhttp;
  8766. var Mac, Sn, DeviceId
  8767. if (window.XMLHttpRequest) {
  8768. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8769. xmlhttp = new XMLHttpRequest();
  8770. } else {
  8771. // IE6, IE5 浏览器执行代码
  8772. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8773. }
  8774. xmlhttp.onreadystatechange = function () {
  8775. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8776. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8777. // resolve(res.value[0][0].text);
  8778. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8779. }
  8780. }
  8781. }
  8782. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8783. xmlhttp.send();
  8784. }
  8785. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8786. var xmlhttp;
  8787. var Mac, Sn, DeviceId
  8788. if (window.XMLHttpRequest) {
  8789. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8790. xmlhttp = new XMLHttpRequest();
  8791. } else {
  8792. // IE6, IE5 浏览器执行代码
  8793. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8794. }
  8795. xmlhttp.onreadystatechange = function () {
  8796. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8797. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8798. // resolve(res.value[0][0].text);
  8799. if (type == '2') {
  8800. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8801. } else if (type == '3') {
  8802. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8803. } else if (type == '4') {
  8804. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8805. }
  8806. } else {
  8807. if (type == '2') {
  8808. iframe.contentWindow.editor.minder.importData('json', '')
  8809. } else if (type == '3') {
  8810. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8811. } else if (type == '4') {
  8812. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8813. }
  8814. }
  8815. }
  8816. }
  8817. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8818. xmlhttp.send();
  8819. }
  8820. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8821. var xmlhttp;
  8822. var Mac, Sn, DeviceId
  8823. if (window.XMLHttpRequest) {
  8824. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8825. xmlhttp = new XMLHttpRequest();
  8826. } else {
  8827. // IE6, IE5 浏览器执行代码
  8828. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8829. }
  8830. xmlhttp.onreadystatechange = function () {
  8831. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8832. if (xmlhttp.response) {
  8833. // resolve(res.value[0][0].text);
  8834. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8835. // $(fileInput).val('');
  8836. // });
  8837. span.innerHTML = '上传成功'
  8838. setTimeout(() => {
  8839. loading.style.display = 'none'
  8840. }, 1000);
  8841. }
  8842. }
  8843. }
  8844. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8845. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8846. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8847. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8848. // 设置请求头,表示请求体的编码格式
  8849. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8850. // 设置请求体,使用url-encoded格式的数据
  8851. }
  8852. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8853. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8854. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8855. _userinfo = US.userInfo, //登录用户信息
  8856. _userid = US.userInfo.userid //登录用户id
  8857. let _iframe;
  8858. let _cid = cid,
  8859. _stage = stage,
  8860. _task = task,
  8861. _tool = tool;
  8862. var _jie = $$("div", {
  8863. "style": {
  8864. "position": "absolute",
  8865. "bottom": "50px",
  8866. "right": "50px",
  8867. "zIndex": "9999",
  8868. "backgroundColor": "#2268bc",
  8869. "color": "#fff",
  8870. "padding": "12px 20px",
  8871. "cursor": "pointer",
  8872. "borderRadius": "4px",
  8873. },
  8874. "innerHTML": "提交作业"
  8875. })
  8876. let aTool = ''
  8877. let _loading = document.createElement('div')
  8878. _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;"
  8879. // _loading.id = "";
  8880. let _lchild = document.createElement('div')
  8881. let _limg = document.createElement('img')
  8882. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8883. _limg.style = "width: 26px;margin-right: 10px;"
  8884. _lchild.appendChild(_limg)
  8885. let _lspan = document.createElement('span')
  8886. _lspan.innerHTML = "上传中..."
  8887. _lchild.appendChild(_lspan)
  8888. _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%);"
  8889. _loading.appendChild(_lchild)
  8890. var _box = $$('div', {
  8891. "style": {
  8892. "position": "relative",
  8893. "width": "100%",
  8894. "height": "100%",
  8895. },
  8896. })
  8897. _box.appendChild(_loading)
  8898. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8899. switch (str) {
  8900. case "CocoPi":
  8901. aTool = 57;
  8902. _iframe = $$("iframe", {
  8903. "allowpaymentrequest": "allowpaymentrequest",
  8904. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8905. "webkitallowfullscreen": "",
  8906. "mozallowfullscreen": "",
  8907. "frameborder": "no",
  8908. "border": "0",
  8909. "scrolling ": "no",
  8910. "style": {
  8911. "cssText": "border:0;width:100%;height:100%"
  8912. },
  8913. "src": "https://pi.cocorobo.cn/"
  8914. })
  8915. _box.appendChild(_iframe);
  8916. _box.appendChild(_jie);
  8917. _formdiv = new U.UF.UI.form(
  8918. "CocoPi",
  8919. _box, {
  8920. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8921. "style": {
  8922. "width": "90%",
  8923. "height": "90%",
  8924. "overflow": 'hidden'
  8925. },
  8926. "onresize": function () { }
  8927. }, {
  8928. closecallback: function () { }
  8929. }, {
  8930. "style": {
  8931. "height": "36px"
  8932. }
  8933. }).form; //创建窗体
  8934. _taskbar = {
  8935. "id": str + _formdiv.id,
  8936. "style": {
  8937. "backgroundImage": "url(/img/icon/cocopi.png)"
  8938. },
  8939. "name": "CocoPi",
  8940. "forms": _formdiv,
  8941. "click": function () {
  8942. U.MD.D.I.openApplication(str, obj, info);
  8943. }
  8944. }
  8945. break;
  8946. }
  8947. if (_iframe) {
  8948. if (str == 'CocoPi') {
  8949. _iframe = _formdiv.querySelector('iframe')
  8950. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8951. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8952. })
  8953. if (onloadListener) {
  8954. _iframe.contentDocument.location.reload()
  8955. } else {
  8956. _iframe.contentDocument.location.reload()
  8957. }
  8958. }
  8959. _jie.onclick = async () => {
  8960. let text = ''
  8961. if (aTool == 57) {
  8962. text = _iframe.contentWindow.getLoadXmlStr()
  8963. }
  8964. _loading.style.display = 'flex'
  8965. console.log(_loading);
  8966. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8967. _loading.style.display = 'none'
  8968. let _div = document.createElement('div')
  8969. _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;"
  8970. let _inner = document.createElement('div')
  8971. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8972. _inner.innerHTML = "上传成功"
  8973. _div.appendChild(_inner)
  8974. _iframe.contentWindow.window.document.body.appendChild(_div)
  8975. _div.onclick = () => {
  8976. _iframe.contentWindow.window.document.body.removeChild(_div)
  8977. }
  8978. setTimeout(() => {
  8979. _iframe.contentWindow.window.document.body.removeChild(_div)
  8980. }, 1000);
  8981. }, [], { "type": "POST", "withCredentials": true });
  8982. }
  8983. }
  8984. }
  8985. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8986. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8987. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8988. _userid = student.userid, //登录用户id
  8989. _username = student.student //用户名字
  8990. let _iframe;
  8991. let _cid = cid,
  8992. _stage = stage,
  8993. _task = task,
  8994. _tool = tool;
  8995. var _jie = $$("div", {
  8996. "style": {
  8997. "position": "absolute",
  8998. "bottom": "50px",
  8999. "right": "50px",
  9000. "zIndex": "9999",
  9001. "backgroundColor": "#2268bc",
  9002. "color": "#fff",
  9003. "padding": "12px 20px",
  9004. "cursor": "pointer",
  9005. "borderRadius": "4px",
  9006. },
  9007. "innerHTML": "提交作业"
  9008. })
  9009. let aTool = ''
  9010. let _loading = document.createElement('div')
  9011. _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;"
  9012. // _loading.id = "";
  9013. let _lchild = document.createElement('div')
  9014. let _limg = document.createElement('img')
  9015. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9016. _limg.style = "width: 26px;margin-right: 10px;"
  9017. _lchild.appendChild(_limg)
  9018. let _lspan = document.createElement('span')
  9019. _lspan.innerHTML = "上传中..."
  9020. _lchild.appendChild(_lspan)
  9021. _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%);"
  9022. _loading.appendChild(_lchild)
  9023. var _box = $$('div', {
  9024. "style": {
  9025. "position": "relative",
  9026. "width": "100%",
  9027. "height": "100%",
  9028. },
  9029. })
  9030. _box.appendChild(_loading)
  9031. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9032. switch (str) {
  9033. case "CocoPi":
  9034. aTool = 57;
  9035. _iframe = $$("iframe", {
  9036. "allowpaymentrequest": "allowpaymentrequest",
  9037. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9038. "webkitallowfullscreen": "",
  9039. "mozallowfullscreen": "",
  9040. "frameborder": "no",
  9041. "border": "0",
  9042. "scrolling ": "no",
  9043. "style": {
  9044. "cssText": "border:0;width:100%;height:100%"
  9045. },
  9046. "src": "https://pi.cocorobo.cn/"
  9047. })
  9048. _box.appendChild(_iframe);
  9049. _box.appendChild(_jie);
  9050. _formdiv = new U.UF.UI.form(
  9051. "CocoPi-" + _username,
  9052. _box, {
  9053. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9054. "style": {
  9055. "width": "90%",
  9056. "height": "90%",
  9057. "overflow": 'hidden'
  9058. },
  9059. "onresize": function () { }
  9060. }, {
  9061. closecallback: function () { }
  9062. }, {
  9063. "style": {
  9064. "height": "36px"
  9065. }
  9066. }).form; //创建窗体
  9067. _taskbar = {
  9068. "id": str + _formdiv.id,
  9069. "style": {
  9070. "backgroundImage": "url(/img/icon/cocopi.png)"
  9071. },
  9072. "name": "CocoPi",
  9073. "forms": _formdiv,
  9074. "click": function () {
  9075. U.MD.D.I.openApplication(str, obj, info);
  9076. }
  9077. }
  9078. break;
  9079. }
  9080. if (_iframe) {
  9081. if (str == 'CocoPi') {
  9082. _iframe = _formdiv.querySelector('iframe')
  9083. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9084. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9085. })
  9086. if (onloadListener) {
  9087. _iframe.contentDocument.location.reload()
  9088. } else {
  9089. _iframe.contentDocument.location.reload()
  9090. }
  9091. }
  9092. _jie.onclick = async () => {
  9093. let text = ''
  9094. if (aTool == 57) {
  9095. text = _iframe.contentWindow.getLoadXmlStr()
  9096. }
  9097. _loading.style.display = 'flex'
  9098. console.log(_loading);
  9099. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9100. _loading.style.display = 'none'
  9101. let _div = document.createElement('div')
  9102. _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;"
  9103. let _inner = document.createElement('div')
  9104. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9105. _inner.innerHTML = "上传成功"
  9106. _div.appendChild(_inner)
  9107. _iframe.contentWindow.window.document.body.appendChild(_div)
  9108. _div.onclick = () => {
  9109. _iframe.contentWindow.window.document.body.removeChild(_div)
  9110. }
  9111. setTimeout(() => {
  9112. _iframe.contentWindow.window.document.body.removeChild(_div)
  9113. }, 1000);
  9114. }, [], { "type": "POST", "withCredentials": true });
  9115. }
  9116. }
  9117. }
  9118. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9119. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9120. if (res.value[0].length > 0) {
  9121. if (atool == 57) {
  9122. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9123. }
  9124. } else {
  9125. if (atool == 57) {
  9126. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9127. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9128. }
  9129. }
  9130. }, [], { "type": "POST", "withCredentials": true });
  9131. }