DeskTop.js 574 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375
  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. //#region 桌面初始化a
  1389. /**
  1390. * 初始化桌面的起始函数
  1391. *
  1392. */
  1393. U.MD.D.I.init = function () {
  1394. if ($("#U_MD_D_K")[0]) {
  1395. //初始化桌面图标
  1396. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1397. // var clickUrl = ':12588/requestIp.php';
  1398. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1399. // U.MD.D.I.Ip = data;
  1400. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1401. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1402. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1403. // })
  1404. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1405. // })
  1406. }
  1407. }
  1408. /**
  1409. * 模式切换
  1410. *
  1411. */
  1412. U.MD.D.I.ModeCheck = function (type) {
  1413. if (US.Config.type == type) {
  1414. return
  1415. }
  1416. US.Config.type = type
  1417. $('.U_PBL_Check .active')[0].className = ''
  1418. if (type == 1) {
  1419. $('.U_PBL_Check div')[0].className = 'active'
  1420. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1421. } else {
  1422. $('.U_PBL_Check div')[1].className = 'active'
  1423. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1424. }
  1425. //初始化桌面图标
  1426. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1427. if (type == 2) {
  1428. U.MD.D.I.openApplication("project")
  1429. }
  1430. }
  1431. /**
  1432. * 隐藏任务栏
  1433. *
  1434. * @param {element} 桌面元素
  1435. */
  1436. U.MD.D.I.hiddenTaskbar = function (el) {
  1437. //任务栏位置变小
  1438. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1439. //桌面的位置变大
  1440. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1441. }
  1442. /**
  1443. * 隐藏任务栏
  1444. *
  1445. * @param {element} 桌面元素
  1446. */
  1447. U.MD.D.I.hiddenTaskbarout = function (el) {
  1448. //任务栏位置变小
  1449. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1450. //任务栏位置变化
  1451. U.selectEl(el).css({ "bottom": "-60px" });
  1452. //桌面的位置变大
  1453. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1454. }
  1455. }
  1456. /**
  1457. * 初始化打印桌面图标
  1458. *
  1459. * @param {element} 桌面元素
  1460. */
  1461. U.MD.D.I.initDesktopIcons = function (el, type) {
  1462. var i, //用于循环
  1463. _content, //桌面图标元素
  1464. _iconcontent, //桌面图标元素
  1465. _frag = $$("frag"), //定义一个碎片元素
  1466. _type = US.userInfo.type,
  1467. _org = US.userInfo.org,
  1468. _oid = US.userInfo.organizeid,
  1469. _role = US.userInfo.role,
  1470. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1471. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1472. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1473. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1474. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1475. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1476. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1477. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1478. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1479. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1480. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1481. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1482. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1483. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1484. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1485. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1486. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1487. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1488. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1489. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1490. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1491. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1492. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1493. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1494. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1495. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1496. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1497. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1498. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1499. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1500. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1501. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1502. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1503. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1504. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1505. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1506. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1507. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1508. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1509. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1510. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1511. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1512. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1513. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1514. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1515. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1516. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1517. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1518. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1519. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1520. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1521. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1522. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1523. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1524. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1525. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1526. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1527. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1528. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1529. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1530. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1531. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1532. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1533. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1534. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1535. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1536. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1537. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1538. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1539. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1540. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1541. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1542. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1543. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1544. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1545. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1546. 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'];
  1547. 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'];
  1548. //清楚桌面图标
  1549. el.innerHTML = "";
  1550. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1551. _teacherDesktopIconInfo.push(
  1552. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1553. { "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)" } },
  1554. )
  1555. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1556. }
  1557. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1558. _teacherDesktopIconInfo.push(
  1559. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1560. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1561. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1562. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1563. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1564. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1565. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1566. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1567. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1568. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1569. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1570. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1571. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1572. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1573. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1574. )
  1575. }
  1576. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1577. _teacherDesktopIconInfo.push(
  1578. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1579. )
  1580. }
  1581. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1582. // _teacherDesktopIconInfo.push(
  1583. // )
  1584. // }
  1585. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1588. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1589. )
  1590. }
  1591. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1592. _teacherDesktopIconInfo.push(
  1593. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1596. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1597. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. )
  1600. _studentDesktopIconInfo.push(
  1601. )
  1602. }
  1603. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1604. _teacherDesktopIconInfo.push(
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. )
  1607. _studentDesktopIconInfo.push(
  1608. )
  1609. }
  1610. //010606 组织
  1611. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1612. _teacherDesktopIconInfo.push(
  1613. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1614. )
  1615. _studentDesktopIconInfo.push(
  1616. )
  1617. }
  1618. //麒麟二中 和 民新小学
  1619. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1620. _teacherDesktopIconInfo.push(
  1621. )
  1622. }
  1623. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1624. _teacherDesktopIconInfo.push(
  1625. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1626. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. )
  1629. }
  1630. //北师大附中(010601)
  1631. if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1632. _teacherDesktopIconInfo.push(
  1633. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1634. )
  1635. _studentDesktopIconInfo.push(
  1636. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1637. )
  1638. }
  1639. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1640. _teacherDesktopIconInfo.push(
  1641. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1642. )
  1643. }
  1644. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1645. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1646. _teacherDesktopIconInfo.push(
  1647. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1649. )
  1650. }
  1651. //麒麟二中
  1652. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1653. _studentDesktopIconInfo.push(
  1654. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1655. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1656. )
  1657. }
  1658. //万科双语
  1659. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1660. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1661. if (el.Name == '项目管理') {
  1662. el.Name = 'PBL项目'
  1663. }
  1664. return el
  1665. })
  1666. _studentDesktopIconInfo3.push(
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. )
  1669. }
  1670. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1671. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1672. return el.Name != '魔盒识字' && el.Name != '24点'
  1673. })
  1674. }
  1675. 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) {
  1676. _studentDesktopIconInfo.push(
  1677. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1678. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. )
  1680. }
  1681. //循环创建桌面图标
  1682. if (type == 1) {
  1683. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1684. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1685. _content = $$("div", {
  1686. className: "U_MD_D_KO",
  1687. "onmousedown": U.UF.C.closure(function (obj) {
  1688. //防止拖动图标即打开了桌面应用
  1689. U.MD.D.click(this, obj);
  1690. }, [_studentDesktopIconInfo[i]]),
  1691. "onclick": U.UF.C.closure(function (obj) {
  1692. //防止拖动图标即打开了桌面应用
  1693. U.MD.D.click(this, obj);
  1694. }, [_studentDesktopIconInfo[i]])
  1695. }, _frag); //
  1696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1699. }
  1700. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1701. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1702. _content = $$("div", {
  1703. className: "U_MD_D_KO",
  1704. "onmousedown": U.UF.C.closure(function (obj) {
  1705. //防止拖动图标即打开了桌面应用
  1706. U.MD.D.click(this, obj);
  1707. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1708. "onclick": U.UF.C.closure(function (obj) {
  1709. //防止拖动图标即打开了桌面应用
  1710. U.MD.D.click(this, obj);
  1711. }, [_hkZJLSStudentDeskIconInfo[i]])
  1712. }, _frag); //
  1713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1716. } //
  1717. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1718. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1719. _content = $$("div", {
  1720. className: "U_MD_D_KO",
  1721. "onmousedown": U.UF.C.closure(function (obj) {
  1722. //防止拖动图标即打开了桌面应用
  1723. U.MD.D.click(this, obj);
  1724. }, [_ytyStudentDeskIconInfo[i]]),
  1725. "onclick": U.UF.C.closure(function (obj) {
  1726. //防止拖动图标即打开了桌面应用
  1727. U.MD.D.click(this, obj);
  1728. }, [_ytyStudentDeskIconInfo[i]])
  1729. }, _frag); //
  1730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1733. } //
  1734. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1735. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1736. _content = $$("div", {
  1737. className: "U_MD_D_KO",
  1738. "onmousedown": U.UF.C.closure(function (obj) {
  1739. //防止拖动图标即打开了桌面应用
  1740. U.MD.D.click(this, obj);
  1741. }, [_jccssylStudentDeskIconInfo[i]]),
  1742. "onclick": U.UF.C.closure(function (obj) {
  1743. //防止拖动图标即打开了桌面应用
  1744. U.MD.D.click(this, obj);
  1745. }, [_jccssylStudentDeskIconInfo[i]])
  1746. }, _frag); //
  1747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1750. }
  1751. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1752. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1753. _content = $$("div", {
  1754. className: "U_MD_D_KO",
  1755. "onmousedown": U.UF.C.closure(function (obj) {
  1756. //防止拖动图标即打开了桌面应用
  1757. U.MD.D.click(this, obj);
  1758. }, [_scnuaiStudentDeskIconInfo[i]]),
  1759. "onclick": U.UF.C.closure(function (obj) {
  1760. //防止拖动图标即打开了桌面应用
  1761. U.MD.D.click(this, obj);
  1762. }, [_scnuaiStudentDeskIconInfo[i]])
  1763. }, _frag); //
  1764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1767. }
  1768. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1769. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1770. _content = $$("div", {
  1771. className: "U_MD_D_KO",
  1772. "onmousedown": U.UF.C.closure(function (obj) {
  1773. //防止拖动图标即打开了桌面应用
  1774. U.MD.D.click(this, obj);
  1775. }, [_caleStudentDeskIconInfo[i]]),
  1776. "onclick": U.UF.C.closure(function (obj) {
  1777. //防止拖动图标即打开了桌面应用
  1778. U.MD.D.click(this, obj);
  1779. }, [_caleStudentDeskIconInfo[i]])
  1780. }, _frag); //
  1781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1784. }
  1785. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1786. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1787. _content = $$("div", {
  1788. className: "U_MD_D_KO",
  1789. "onmousedown": U.UF.C.closure(function (obj) {
  1790. //防止拖动图标即打开了桌面应用
  1791. U.MD.D.click(this, obj);
  1792. }, [_thuioeStudentDeskIconInfo[i]]),
  1793. "onclick": U.UF.C.closure(function (obj) {
  1794. //防止拖动图标即打开了桌面应用
  1795. U.MD.D.click(this, obj);
  1796. }, [_thuioeStudentDeskIconInfo[i]])
  1797. }, _frag); //
  1798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1801. }
  1802. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1803. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1804. _content = $$("div", {
  1805. className: "U_MD_D_KO",
  1806. "onmousedown": U.UF.C.closure(function (obj) {
  1807. //防止拖动图标即打开了桌面应用
  1808. U.MD.D.click(this, obj);
  1809. }, [_tpcStudentDeskIconInfo[i]]),
  1810. "onclick": U.UF.C.closure(function (obj) {
  1811. //防止拖动图标即打开了桌面应用
  1812. U.MD.D.click(this, obj);
  1813. }, [_tpcStudentDeskIconInfo[i]])
  1814. }, _frag); //
  1815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1818. } //
  1819. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1820. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1821. _content = $$("div", {
  1822. className: "U_MD_D_KO",
  1823. "onmousedown": U.UF.C.closure(function (obj) {
  1824. //防止拖动图标即打开了桌面应用
  1825. U.MD.D.click(this, obj);
  1826. }, [_chjyjStudentDeskIconInfo[i]]),
  1827. "onclick": U.UF.C.closure(function (obj) {
  1828. //防止拖动图标即打开了桌面应用
  1829. U.MD.D.click(this, obj);
  1830. }, [_chjyjStudentDeskIconInfo[i]])
  1831. }, _frag); //
  1832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1835. }
  1836. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1837. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1838. _content = $$("div", {
  1839. className: "U_MD_D_KO",
  1840. "onmousedown": U.UF.C.closure(function (obj) {
  1841. //防止拖动图标即打开了桌面应用
  1842. U.MD.D.click(this, obj);
  1843. }, [_szjkyStudentDeskIconInfo[i]]),
  1844. "onclick": U.UF.C.closure(function (obj) {
  1845. //防止拖动图标即打开了桌面应用
  1846. U.MD.D.click(this, obj);
  1847. }, [_szjkyStudentDeskIconInfo[i]])
  1848. }, _frag); //
  1849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1852. }
  1853. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1854. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1855. _content = $$("div", {
  1856. className: "U_MD_D_KO",
  1857. "onmousedown": U.UF.C.closure(function (obj) {
  1858. //防止拖动图标即打开了桌面应用
  1859. U.MD.D.click(this, obj);
  1860. }, [_dseiStudentDeskIconInfo[i]]),
  1861. "onclick": U.UF.C.closure(function (obj) {
  1862. //防止拖动图标即打开了桌面应用
  1863. U.MD.D.click(this, obj);
  1864. }, [_dseiStudentDeskIconInfo[i]])
  1865. }, _frag); //
  1866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1869. }
  1870. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1871. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1872. _content = $$("div", {
  1873. className: "U_MD_D_KO",
  1874. "onmousedown": U.UF.C.closure(function (obj) {
  1875. //防止拖动图标即打开了桌面应用
  1876. U.MD.D.click(this, obj);
  1877. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1878. "onclick": U.UF.C.closure(function (obj) {
  1879. //防止拖动图标即打开了桌面应用
  1880. U.MD.D.click(this, obj);
  1881. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1882. }, _frag); //
  1883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1886. }
  1887. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1888. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1889. _content = $$("div", {
  1890. className: "U_MD_D_KO",
  1891. "onmousedown": U.UF.C.closure(function (obj) {
  1892. //防止拖动图标即打开了桌面应用
  1893. U.MD.D.click(this, obj);
  1894. }, [_siesStudentDeskIconInfo[i]]),
  1895. "onclick": U.UF.C.closure(function (obj) {
  1896. //防止拖动图标即打开了桌面应用
  1897. U.MD.D.click(this, obj);
  1898. }, [_siesStudentDeskIconInfo[i]])
  1899. }, _frag); //
  1900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1903. }
  1904. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1905. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1906. _content = $$("div", {
  1907. className: "U_MD_D_KO",
  1908. "onmousedown": U.UF.C.closure(function (obj) {
  1909. //防止拖动图标即打开了桌面应用
  1910. U.MD.D.click(this, obj);
  1911. }, [_guzmsStudentDeskIconInfo[i]]),
  1912. "onclick": U.UF.C.closure(function (obj) {
  1913. //防止拖动图标即打开了桌面应用
  1914. U.MD.D.click(this, obj);
  1915. }, [_guzmsStudentDeskIconInfo[i]])
  1916. }, _frag); //
  1917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1920. }
  1921. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1922. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1923. _content = $$("div", {
  1924. className: "U_MD_D_KO",
  1925. "onmousedown": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_hkStudentDeskIconInfo[i]]),
  1929. "onclick": U.UF.C.closure(function (obj) {
  1930. //防止拖动图标即打开了桌面应用
  1931. U.MD.D.click(this, obj);
  1932. }, [_hkStudentDeskIconInfo[i]])
  1933. }, _frag); //
  1934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1937. }
  1938. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1939. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1940. _content = $$("div", {
  1941. className: "U_MD_D_KO",
  1942. "onmousedown": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_hkaceStudentDeskIconInfo[i]]),
  1946. "onclick": U.UF.C.closure(function (obj) {
  1947. //防止拖动图标即打开了桌面应用
  1948. U.MD.D.click(this, obj);
  1949. }, [_hkaceStudentDeskIconInfo[i]])
  1950. }, _frag); //
  1951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1954. }
  1955. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  1956. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  1957. _content = $$("div", {
  1958. className: "U_MD_D_KO",
  1959. "onmousedown": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_cocobizStudentDeskIconInfo[i]]),
  1963. "onclick": U.UF.C.closure(function (obj) {
  1964. //防止拖动图标即打开了桌面应用
  1965. U.MD.D.click(this, obj);
  1966. }, [_cocobizStudentDeskIconInfo[i]])
  1967. }, _frag); //
  1968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  1970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  1971. }
  1972. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  1973. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  1974. _content = $$("div", {
  1975. className: "U_MD_D_KO",
  1976. "onmousedown": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_xxzjkyStudentDeskIconInfo[i]]),
  1980. "onclick": U.UF.C.closure(function (obj) {
  1981. //防止拖动图标即打开了桌面应用
  1982. U.MD.D.click(this, obj);
  1983. }, [_xxzjkyStudentDeskIconInfo[i]])
  1984. }, _frag); //
  1985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1988. }
  1989. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1990. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1991. _content = $$("div", {
  1992. className: "U_MD_D_KO",
  1993. "onmousedown": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_studentDesktopIconInfo[i]]),
  1997. "onclick": U.UF.C.closure(function (obj) {
  1998. //防止拖动图标即打开了桌面应用
  1999. U.MD.D.click(this, obj);
  2000. }, [_studentDesktopIconInfo[i]])
  2001. }, _frag); //
  2002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2005. }
  2006. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2007. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2008. _content = $$("div", {
  2009. className: "U_MD_D_KO",
  2010. "onmousedown": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_tcStudentDeskIconInfo[i]]),
  2014. "onclick": U.UF.C.closure(function (obj) {
  2015. //防止拖动图标即打开了桌面应用
  2016. U.MD.D.click(this, obj);
  2017. }, [_tcStudentDeskIconInfo[i]])
  2018. }, _frag); //
  2019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2022. }
  2023. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2024. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2025. _content = $$("div", {
  2026. className: "U_MD_D_KO",
  2027. "onmousedown": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_szscStudentDeskIconInfo[i]]),
  2031. "onclick": U.UF.C.closure(function (obj) {
  2032. //防止拖动图标即打开了桌面应用
  2033. U.MD.D.click(this, obj);
  2034. }, [_szscStudentDeskIconInfo[i]])
  2035. }, _frag); //
  2036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2039. }
  2040. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2041. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2042. _content = $$("div", {
  2043. className: "U_MD_D_KO",
  2044. "onmousedown": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_studentDesktopIconInfo3[i]]),
  2048. "onclick": U.UF.C.closure(function (obj) {
  2049. //防止拖动图标即打开了桌面应用
  2050. U.MD.D.click(this, obj);
  2051. }, [_studentDesktopIconInfo3[i]])
  2052. }, _frag); //
  2053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2056. }
  2057. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2058. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2059. _content = $$("div", {
  2060. className: "U_MD_D_KO",
  2061. "onmousedown": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_studentDesktopIconInfo2[i]]),
  2065. "onclick": U.UF.C.closure(function (obj) {
  2066. //防止拖动图标即打开了桌面应用
  2067. U.MD.D.click(this, obj);
  2068. }, [_studentDesktopIconInfo2[i]])
  2069. }, _frag); //
  2070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2073. }
  2074. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2075. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2076. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2077. continue
  2078. }
  2079. _content = $$("div", {
  2080. className: "U_MD_D_KO",
  2081. "onmousedown": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_wanketeacherDesktopIconInfo[i]]),
  2085. "onclick": U.UF.C.closure(function (obj) {
  2086. //防止拖动图标即打开了桌面应用
  2087. U.MD.D.click(this, obj);
  2088. }, [_wanketeacherDesktopIconInfo[i]])
  2089. }, _frag); //
  2090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2093. }
  2094. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2095. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2096. _content = $$("div", {
  2097. className: "U_MD_D_KO",
  2098. "onmousedown": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_wankeAdminDesktopIconInfo[i]]),
  2102. "onclick": U.UF.C.closure(function (obj) {
  2103. //防止拖动图标即打开了桌面应用
  2104. U.MD.D.click(this, obj);
  2105. }, [_wankeAdminDesktopIconInfo[i]])
  2106. }, _frag); //
  2107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2110. }
  2111. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2112. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2113. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2114. continue
  2115. }
  2116. _content = $$("div", {
  2117. className: "U_MD_D_KO",
  2118. "onmousedown": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2122. "onclick": U.UF.C.closure(function (obj) {
  2123. //防止拖动图标即打开了桌面应用
  2124. U.MD.D.click(this, obj);
  2125. }, [_scnuaiTeacherDeskIconInfo[i]])
  2126. }, _frag); //
  2127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2130. }
  2131. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2132. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2133. _content = $$("div", {
  2134. className: "U_MD_D_KO",
  2135. "onmousedown": U.UF.C.closure(function (obj) {
  2136. //防止拖动图标即打开了桌面应用
  2137. U.MD.D.click(this, obj);
  2138. }, [_scnuaiAdminDeskIconInfo[i]]),
  2139. "onclick": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_scnuaiAdminDeskIconInfo[i]])
  2143. }, _frag); //
  2144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2147. }
  2148. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2149. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2150. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2151. continue
  2152. }
  2153. _content = $$("div", {
  2154. className: "U_MD_D_KO",
  2155. "onmousedown": U.UF.C.closure(function (obj) {
  2156. //防止拖动图标即打开了桌面应用
  2157. U.MD.D.click(this, obj);
  2158. }, [_jccssylTeacherDeskIconInfo[i]]),
  2159. "onclick": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_jccssylTeacherDeskIconInfo[i]])
  2163. }, _frag); //
  2164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2167. }
  2168. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2169. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2170. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2171. continue
  2172. }
  2173. _content = $$("div", {
  2174. className: "U_MD_D_KO",
  2175. "onmousedown": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_caleTeacherDeskIconInfo[i]]),
  2179. "onclick": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_caleTeacherDeskIconInfo[i]])
  2183. }, _frag); //
  2184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2187. }
  2188. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2189. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2190. _content = $$("div", {
  2191. className: "U_MD_D_KO",
  2192. "onmousedown": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_tpcOrganizerDeskIconInfo[i]]),
  2196. "onclick": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_tpcOrganizerDeskIconInfo[i]])
  2200. }, _frag); //
  2201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2204. }
  2205. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2206. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2207. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2208. continue
  2209. }
  2210. _content = $$("div", {
  2211. className: "U_MD_D_KO",
  2212. "onmousedown": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_tpcTeacherDeskIconInfo[i]]),
  2216. "onclick": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_tpcTeacherDeskIconInfo[i]])
  2220. }, _frag); //
  2221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2224. }
  2225. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2226. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2227. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2228. continue
  2229. }
  2230. _content = $$("div", {
  2231. className: "U_MD_D_KO",
  2232. "onmousedown": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_teacherDesktopIconInfo2[i]]),
  2236. "onclick": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_teacherDesktopIconInfo2[i]])
  2240. }, _frag); //
  2241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2244. }
  2245. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2246. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2247. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2248. continue
  2249. }
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_thuioeTeacherDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_thuioeTeacherDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2266. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2267. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2268. continue
  2269. }
  2270. _content = $$("div", {
  2271. className: "U_MD_D_KO",
  2272. "onmousedown": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_lotechTeacherDeskIconInfo[i]]),
  2276. "onclick": U.UF.C.closure(function (obj) {
  2277. //防止拖动图标即打开了桌面应用
  2278. U.MD.D.click(this, obj);
  2279. }, [_lotechTeacherDeskIconInfo[i]])
  2280. }, _frag); //
  2281. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2282. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2283. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2284. }//
  2285. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2286. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2287. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2288. continue
  2289. }
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2306. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2307. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2308. continue
  2309. }
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_siesTeacherDeskIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_siesTeacherDeskIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2326. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2327. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2328. continue
  2329. }
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_guzmsTeacherDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_guzmsTeacherDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2346. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2347. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2348. continue
  2349. }
  2350. _content = $$("div", {
  2351. className: "U_MD_D_KO",
  2352. "onmousedown": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_longhuaTeacherDeskIconInfo[i]]),
  2356. "onclick": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_longhuaTeacherDeskIconInfo[i]])
  2360. }, _frag); //
  2361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2364. }
  2365. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2366. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2367. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2368. continue
  2369. }
  2370. _content = $$("div", {
  2371. className: "U_MD_D_KO",
  2372. "onmousedown": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_ytyTeacherDeskIconInfo[i]]),
  2376. "onclick": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_ytyTeacherDeskIconInfo[i]])
  2380. }, _frag); //
  2381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2384. }
  2385. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2386. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2387. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2388. continue
  2389. }
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_yunhaiTeacherDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2404. } //_hkStudentDeskIconInfo
  2405. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2406. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2407. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2408. continue
  2409. }
  2410. _content = $$("div", {
  2411. className: "U_MD_D_KO",
  2412. "onmousedown": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2416. "onclick": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2420. }, _frag); //
  2421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2424. }
  2425. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2426. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2427. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2428. continue
  2429. }
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_hkTeacherDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_hkTeacherDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2444. }
  2445. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2446. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2447. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2448. continue
  2449. }
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_hkaceTeacherDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_hkaceTeacherDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2464. }
  2465. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2466. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2467. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2468. continue
  2469. }
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_cocobizTeacherDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_cocobizTeacherDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2486. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2487. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2488. continue
  2489. }
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2506. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_gdjgAdminDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_gdjgAdminDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2523. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2524. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2525. continue
  2526. }
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_gdjgTeacherDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_gdjgTeacherDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2543. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2544. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2545. continue
  2546. }
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_szherTeacherDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_szherTeacherDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2561. }
  2562. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2563. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_heyuannAdminDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_heyuannAdminDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2580. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2581. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2582. continue
  2583. }
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_heyuanTeacherDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_heyuanTeacherDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2598. } //
  2599. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2600. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_dseiAdminDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_dseiAdminDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2617. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2618. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2619. continue
  2620. }
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_dseiTeacherDeskIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_dseiTeacherDeskIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2635. } //
  2636. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2637. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_chjyjAdminDeskIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_chjyjAdminDeskIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2652. }//
  2653. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2654. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2655. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2656. continue
  2657. }
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_chjyjTeacherDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_chjyjTeacherDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2674. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_szjkyAdminDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_szjkyAdminDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2689. }//
  2690. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2691. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2692. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2693. continue
  2694. }
  2695. _content = $$("div", {
  2696. className: "U_MD_D_KO",
  2697. "onmousedown": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_szjkyTeacherDeskIconInfo[i]]),
  2701. "onclick": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_szjkyTeacherDeskIconInfo[i]])
  2705. }, _frag); //
  2706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2709. }
  2710. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2711. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2712. _content = $$("div", {
  2713. className: "U_MD_D_KO",
  2714. "onmousedown": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_futianAdminDeskIconInfo[i]]),
  2718. "onclick": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_futianAdminDeskIconInfo[i]])
  2722. }, _frag); //
  2723. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2724. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2725. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2726. }
  2727. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2728. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2729. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2730. continue
  2731. }
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_futianTeacherDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_futianTeacherDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2748. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2749. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2750. continue
  2751. }
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_MingdeTeacherDeskIcon[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_MingdeTeacherDeskIcon[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2766. }
  2767. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2768. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2769. _content = $$("div", {
  2770. className: "U_MD_D_KO",
  2771. "onmousedown": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_lhsAdminDesktopIconInfo[i]]),
  2775. "onclick": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_lhsAdminDesktopIconInfo[i]])
  2779. }, _frag); //
  2780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2783. }
  2784. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2785. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2786. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2787. continue
  2788. }
  2789. _content = $$("div", {
  2790. className: "U_MD_D_KO",
  2791. "onmousedown": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_lhsteacherDesktopIconInfo[i]]),
  2795. "onclick": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_lhsteacherDesktopIconInfo[i]])
  2799. }, _frag); //
  2800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2803. }
  2804. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2805. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2806. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2807. continue
  2808. }
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_zhoujiateacherDesktopIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2825. for (i = 0; i < _hanDeskIcon.length; i++) {
  2826. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2827. continue
  2828. }
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_hanDeskIcon[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_hanDeskIcon[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2843. }
  2844. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2845. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2846. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2847. continue
  2848. }
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_orgStemDeskIcon[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_orgStemDeskIcon[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2863. }
  2864. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2865. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2866. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2867. continue
  2868. }
  2869. _content = $$("div", {
  2870. className: "U_MD_D_KO",
  2871. "onmousedown": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_szulsDeskIcon[i]]),
  2875. "onclick": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_szulsDeskIcon[i]])
  2879. }, _frag); //
  2880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2883. }
  2884. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2885. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2886. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2887. continue
  2888. }
  2889. _content = $$("div", {
  2890. className: "U_MD_D_KO",
  2891. "onmousedown": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_orgDesktopIconInfo[i]]),
  2895. "onclick": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_orgDesktopIconInfo[i]])
  2899. }, _frag); //
  2900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2903. }
  2904. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2905. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2906. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2907. continue
  2908. }
  2909. _content = $$("div", {
  2910. className: "U_MD_D_KO",
  2911. "onmousedown": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_schoolDesktopIconInfo[i]]),
  2915. "onclick": U.UF.C.closure(function (obj) {
  2916. //防止拖动图标即打开了桌面应用
  2917. U.MD.D.click(this, obj);
  2918. }, [_schoolDesktopIconInfo[i]])
  2919. }, _frag); //
  2920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2923. }
  2924. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2925. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2926. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2927. continue
  2928. }
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_GMteacherDesktopIconInfo[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_GMteacherDesktopIconInfo[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2943. }
  2944. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2945. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2946. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2947. continue
  2948. }
  2949. _content = $$("div", {
  2950. className: "U_MD_D_KO",
  2951. "onmousedown": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_SONGteacherDesktopIconInfo[i]]),
  2955. "onclick": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_SONGteacherDesktopIconInfo[i]])
  2959. }, _frag); //
  2960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2963. }
  2964. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2965. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2966. _content = $$("div", {
  2967. className: "U_MD_D_KO",
  2968. "onmousedown": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_GMstudentDesktopIconInfo[i]]),
  2972. "onclick": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_GMstudentDesktopIconInfo[i]])
  2976. }, _frag); //
  2977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2980. }
  2981. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2982. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2983. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2984. continue
  2985. }
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_tcTeacherDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_tcTeacherDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3002. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3003. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3004. continue
  3005. }
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_tcOrganizerDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_tcOrganizerDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3022. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3023. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3024. continue
  3025. }
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_szscTeacherDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_szscTeacherDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3042. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3043. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3044. continue
  3045. }
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_szscOrganizerDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_szscOrganizerDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else {
  3062. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3063. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_teacherDesktopIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_teacherDesktopIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3080. }
  3081. }
  3082. } else {
  3083. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3084. _content = $$("div", {
  3085. className: "U_MD_D_KO",
  3086. style: { 'width': '124px', 'height': '145px' },
  3087. "onmousedown": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_easyDesktopIconInfo[i]]),
  3091. "onclick": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_easyDesktopIconInfo[i]])
  3095. }, _frag); //
  3096. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3099. }
  3100. }
  3101. if (type == 1) {
  3102. //加载好后给图标定位
  3103. U.MD.D.iconPostion($(_frag).Child());
  3104. } else {
  3105. //加载好后给图标定位
  3106. U.MD.D.iconPostion2($(_frag).Child());
  3107. }
  3108. //把图标加载到页面
  3109. el.appendChild(_frag);
  3110. }
  3111. /**
  3112. * 显示任务栏
  3113. *
  3114. * @param {element} 桌面元素
  3115. */
  3116. U.MD.D.I.displayTaskbar = function (el) {
  3117. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3118. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3119. //任务栏位置变化
  3120. U.selectEl(el).css({ "bottom": "0px" });
  3121. //桌面位置变话
  3122. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3123. }
  3124. }
  3125. //#region 桌面图标拖动逻辑
  3126. /**
  3127. * 桌面排列图标
  3128. *
  3129. * @param {element} 桌面元素
  3130. * @param {object} 上下相距的距离
  3131. * @param {object} 左右相距的距离
  3132. * @return {object} 命名空间
  3133. */
  3134. U.MD.D.iconPostion = function (childs, top, left) {
  3135. var i; //用于循环处理
  3136. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3137. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3138. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3139. for (i = 0; i < childs.length; i++) {
  3140. //如果竖排top超过了范围处理
  3141. if (top + 95 > US.height - 10) {
  3142. //left超过了页面范围处理,则向上重叠打印处理
  3143. if ((left + 180) > US.width) {
  3144. top -= 110;
  3145. left -= 90;
  3146. }
  3147. //没有超过范围,那么left+90添加到下一个竖排打印
  3148. else {
  3149. left += 90;
  3150. top = 15;
  3151. };
  3152. }
  3153. //给图标的位置赋值
  3154. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3155. if (i < childs.length - 1) {
  3156. //页面图标每次向下加95
  3157. top += 95;
  3158. }
  3159. }
  3160. //返回最后调用的图标的位置
  3161. return [top, left];
  3162. }
  3163. /**
  3164. * 桌面排列图标
  3165. *
  3166. * @param {element} 桌面元素
  3167. * @param {object} 上下相距的距离
  3168. * @param {object} 左右相距的距离
  3169. * @return {object} 命名空间
  3170. */
  3171. U.MD.D.iconPostion2 = function (childs, top, left) {
  3172. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3173. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3174. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3175. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3176. for (i = 0; i < childs.length; i++) {
  3177. //如果竖排top超过了范围处理
  3178. if (left + 150 > US.width - 10) {
  3179. //left超过了页面范围处理,则向上重叠打印处理
  3180. if ((top + 180) > US.Height) {
  3181. top -= 150;
  3182. left -= 150;
  3183. }
  3184. //没有超过范围,那么left+90添加到下一个竖排打印
  3185. else {
  3186. top += 150;
  3187. left = ol;
  3188. };
  3189. }
  3190. //给图标的位置赋值
  3191. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3192. if (i < childs.length - 1) {
  3193. //页面图标每次向下加95
  3194. left += 150;
  3195. }
  3196. }
  3197. //返回最后调用的图标的位置
  3198. return [top, left];
  3199. }
  3200. /**
  3201. * 桌面点击事件逻辑
  3202. *
  3203. * @param {element} 桌面元素
  3204. * @param {object} 上下相距的距离
  3205. * @param {object} 左右相距的距离
  3206. * @return {object} 命名空间
  3207. */
  3208. U.MD.D.click = function (el, obj) {
  3209. var _buttonnumber = event.button; //点击的按钮的事件值
  3210. var _userinfo = US.userInfo;
  3211. U.UF.EV.stopBubble(); //阻止向上冒泡
  3212. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3213. if (_buttonnumber < 2) {
  3214. //如果是click事件的处理
  3215. if (event.type == "click") {
  3216. //如果元素在mousemove事件中没有移动则出发click事件
  3217. if (!U.MD.D.I.IsDrag) {
  3218. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3219. U.alert("请先登录您的账号!");
  3220. setTimeout(() => {
  3221. U.MD.U.L.login();
  3222. }, 2000);
  3223. } else {
  3224. //打开应用处理
  3225. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3226. }
  3227. }
  3228. }
  3229. //如果是mouse事件的处理
  3230. else {
  3231. if (US.Config.type == '1') {
  3232. //拖动处理,添加拖动和拖动结束事件
  3233. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3234. }
  3235. }
  3236. U.MD.D.I.IsDrag = false;
  3237. }
  3238. }
  3239. /**
  3240. * 拖动的处理
  3241. *
  3242. */
  3243. U.MD.D.iconMove = function () {
  3244. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3245. U.MD.D.I.IsDrag = true;
  3246. }
  3247. /**
  3248. * 拖动结束后,这里是定位处理,以网状的形式定位
  3249. *
  3250. * @param {element} 拖动的元素
  3251. * @return {object} 命名空间
  3252. */
  3253. U.MD.D.iconUp = function (el) {
  3254. var _top = 15,
  3255. _left = 20,
  3256. _margin,
  3257. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3258. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3259. if (_positioninfo["OT"] > 15) {
  3260. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3261. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3262. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3263. }
  3264. if (_positioninfo["OL"] > 20) {
  3265. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3266. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3267. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3268. }
  3269. //while循环判断么一个重叠的元素
  3270. do {
  3271. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3272. _top = _positioninfo[0] + 95; //得到定位后的top
  3273. _left = _positioninfo[1]; //得到定位后的left
  3274. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3275. }
  3276. /**
  3277. * 判断拖动后图标是否重叠
  3278. *
  3279. * @param {element} 拖动的元素
  3280. * @param {element} 桌面所有的元素
  3281. * @param {array} 拖动元素的位置
  3282. ----------[0] 上 top
  3283. ----------[1] 左 left
  3284. * @return {object} 命名空间
  3285. */
  3286. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3287. //循环所有的图标
  3288. for (var i = 0; i < childs.length; i++) {
  3289. //判断有没有和该图标诶子重叠的元素
  3290. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3291. return childs[i]; //如果有返回
  3292. }
  3293. }
  3294. }
  3295. //#endregion
  3296. //#endregion
  3297. //#region 桌面应用
  3298. /**
  3299. * 打开应用
  3300. *
  3301. * @param {string} 类型
  3302. -----------------Disk 网盘系统
  3303. -----------------PDisk 学习系统网盘
  3304. -----------------Poto 图片
  3305. -----------------Video 视频
  3306. -----------------Music 音乐
  3307. -----------------Word word
  3308. -----------------Excel excel
  3309. -----------------Txt 记事本
  3310. -----------------PB 学习系统
  3311. -----------------Blog 朋友圈系统
  3312. -----------------FTP ftp系统
  3313. -----------------Group 好友群
  3314. -----------------SY 首页系统
  3315. -----------------Set 个人设置
  3316. -----------------XSet 系统设置
  3317. -----------------App 我们所有的app
  3318. -----------------BC c.1473.cn 平台
  3319. -----------------CWeb d.1473.cn 变成平台
  3320. -----------------其他的外联系统 我们统一用iframe打开
  3321. * @param {array} 类型
  3322. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3323. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3324. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3325. 如果第一个参数为其他,则无第二个参数
  3326. * @returns {array}
  3327. */
  3328. window.addEventListener('message', function (e) { // 监听 message 事件
  3329. // alert(e.data.type);
  3330. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3331. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3332. //3是展示全部阶段 2学生 1老师 4专家
  3333. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3334. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3335. //3是展示全部阶段 2学生 1老师 4专家
  3336. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3337. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3338. //3是展示全部阶段 2学生 1老师 4专家
  3339. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3340. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3341. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3342. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3343. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3344. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3345. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3346. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3347. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3348. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3349. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3350. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3351. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3352. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3353. //3是展示全部阶段 2学生 1老师 4专家
  3354. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3355. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3356. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3357. U.MD.D.I.selectUser();
  3358. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3359. var _formel = document.getElementById("study");
  3360. U.UF.F.windowZooming(_formel);
  3361. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3362. var _formel = document.getElementById("studyDetail");
  3363. U.UF.F.windowZooming(_formel);
  3364. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3365. var _formel = document.getElementById("studyDetail");
  3366. U.UF.F.windowZooming(_formel);
  3367. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3368. var _formel = document.getElementById("studentStudy");
  3369. U.UF.F.windowZooming(_formel);
  3370. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3371. // var _formel = document.getElementById("study");
  3372. //如果最大化了,那么就把他缩小
  3373. // if (_formel.ismaximize) {
  3374. // return;
  3375. // }
  3376. // U.UF.F.windowZooming(_formel);
  3377. // U.UF.F.topWindow(_formel);
  3378. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3379. // var _formel = document.getElementById("studyDetail");
  3380. //如果最大化了,那么就把他缩小
  3381. // if (_formel.ismaximize) {
  3382. // return;
  3383. // }
  3384. // U.UF.F.windowZooming(_formel);
  3385. // U.UF.F.topWindow(_formel);
  3386. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3387. // var _formel = document.getElementById("studentStudy");
  3388. // if (_formel.ismaximize) {
  3389. // return;
  3390. // }
  3391. // U.UF.F.windowZooming(_formel);
  3392. // U.UF.F.topWindow(_formel);
  3393. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3394. var _formel = document.getElementById("study");
  3395. // if (_formel.ismaximize) {
  3396. // return;
  3397. // }
  3398. // U.UF.F.windowZooming(_formel);
  3399. U.UF.F.topWindow(_formel);
  3400. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3401. var _formel = document.getElementById("studentIndex");
  3402. U.UF.F.windowZooming(_formel);
  3403. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3404. var _formel = document.getElementById("studyDetailS");
  3405. U.UF.F.windowZooming(_formel);
  3406. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3407. var _formel = document.getElementById("studioIndex");
  3408. U.UF.F.windowZooming(_formel);
  3409. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3410. var _formel = document.getElementById("studyDetailStudio");
  3411. U.UF.F.windowZooming(_formel);
  3412. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3413. var _formel = document.getElementById("studyDetailStudio");
  3414. U.UF.F.windowZooming(_formel);
  3415. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3416. var _formel = document.getElementById("studyDetailNT");
  3417. U.UF.F.windowZooming(_formel);
  3418. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3419. var _formel = document.getElementById("studyDetailS");
  3420. U.UF.F.windowZooming(_formel);
  3421. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3422. var _formel = document.getElementById("studyDetailS");
  3423. U.UF.F.topWindow(_formel);
  3424. } else if (e.data.tools && e.data.tools == "1") {
  3425. // U.MD.D.I.openApplication("whiteboard")
  3426. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3427. } else if (e.data.tools && e.data.tools == "2") {
  3428. U.MD.D.I.openApplication("note")
  3429. } else if (e.data.tools && e.data.tools == "3") {
  3430. // U.MD.D.I.openApplication("mind")
  3431. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3432. } else if (e.data.tools && e.data.tools == "4") {
  3433. U.MD.D.I.openApplication("investigation")
  3434. } else if (e.data.tools && e.data.tools == "6") {
  3435. // U.MD.D.I.openApplication("doc")
  3436. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3437. } else if (e.data.tools && e.data.tools == "7") {
  3438. // U.MD.D.I.openApplication("mindNetwork")
  3439. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3440. } else if (e.data.tools && e.data.tools == "8") {
  3441. U.MD.D.I.openApplication("library")
  3442. } else if (e.data.tools && e.data.tools == "17") {
  3443. U.MD.D.I.openApplication("stuLibrary")
  3444. } else if (e.data.tools && e.data.tools == "18") {
  3445. U.MD.D.I.openApplication("train")
  3446. } else if (e.data.tools && e.data.tools == "21") {
  3447. U.MD.D.I.openApplication("program")
  3448. } else if (e.data.tools && e.data.tools == "22") {
  3449. U.MD.D.I.openApplication("AIprogram2")
  3450. } else if (e.data.tools && e.data.tools == "23") {
  3451. U.MD.D.I.openApplication("Pythonprogram")
  3452. } else if (e.data.tools && e.data.tools == "24") {
  3453. U.MD.D.I.openApplication("AIprogram")
  3454. } else if (e.data.tools && e.data.tools == "25") {
  3455. U.MD.D.I.openApplication("sys")
  3456. } else if (e.data.tools && e.data.tools == "26") {
  3457. // U.MD.D.I.openApplication("courseDesign")
  3458. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3459. } else if (e.data.tools && e.data.tools == "31") {
  3460. U.MD.D.I.openApplication("netWorkPanel")
  3461. } else if (e.data.tools && e.data.tools == "32") {
  3462. U.MD.D.I.openApplication("codeEdit")
  3463. } else if (e.data.tools && e.data.tools == "57") {
  3464. U.MD.D.I.openApplication("CocoPi")
  3465. } else if (e.data.tools && e.data.tools == "63") {
  3466. U.MD.D.I.openApplication("Wood")
  3467. } else if (e.data.tools && e.data.tools == "58") {
  3468. U.MD.D.I.openApplication("car")
  3469. } else if (e.data.tools && e.data.tools == "59") {
  3470. U.MD.D.I.openApplication("lineSearch")
  3471. } else if (e.data.tools && e.data.tools == "60") {
  3472. U.MD.D.I.openApplication("deepLearning")
  3473. } else if (e.data.tools && e.data.tools == "61") {
  3474. U.MD.D.I.openApplication("allHistory")
  3475. } else if (e.data.tools && e.data.tools == "28") {
  3476. U.MD.D.I.openApplication("translation")
  3477. } else if (e.data.tools && e.data.tools == "37") {
  3478. U.MD.D.I.openApplication("mohe")
  3479. } else if (e.data.tools && e.data.tools == "38") {
  3480. U.MD.D.I.openApplication("24game")
  3481. } else if (e.data.tools && e.data.tools == "39") {
  3482. U.MD.D.I.openApplication("GeoGebra")
  3483. } else if (e.data.tools && e.data.tools == "43") {
  3484. U.MD.D.I.openApplication("studentEvaluate")
  3485. } else if (e.data.tools && e.data.tools == "44") {
  3486. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3487. } else if (e.data.tools && e.data.tools == "46") {
  3488. U.MD.D.I.openApplication("project")
  3489. } else if (e.data.tools && e.data.tools == "71") {
  3490. U.MD.D.I.openApplication("aigptCourse")
  3491. } else if (e.data.tools && e.data.tools == "1s") {
  3492. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3493. } else if (e.data.tools && e.data.tools == "3s") {
  3494. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3495. } else if (e.data.tools && e.data.tools == "6s") {
  3496. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3497. } else if (e.data.tools && e.data.tools == "1studio") {
  3498. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3499. } else if (e.data.tools && e.data.tools == "3studio") {
  3500. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3501. } else if (e.data.tools && e.data.tools == "6studio") {
  3502. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3503. } else if (e.data.tools && e.data.tools == "3y") {
  3504. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3505. } else if (e.data.tools && e.data.tools == "1y") {
  3506. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3507. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3508. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3509. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3510. U.MD.D.I.openApplication("AIAnalyse")
  3511. } else if (e.data.tools && e.data.tools == "1teacher") {
  3512. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3513. } else if (e.data.tools && e.data.tools == "3teacher") {
  3514. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3515. } else if (e.data.tools && e.data.tools == "7teacher") {
  3516. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3517. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3518. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3519. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3520. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3521. } else if (e.data.tools && e.data.tools == "1E") {
  3522. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3523. } else if (e.data.tools && e.data.tools == "3E") {
  3524. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3525. } else if (e.data.tools && e.data.tools == "57y") {
  3526. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3527. } else if (e.data.tools && e.data.tools == "57u") {
  3528. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3529. } else if (e.data.tools && e.data.tools == "57teacher") {
  3530. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3531. } else if (e.data.tools && e.data.tools == "64") {
  3532. U.MD.D.I.openApplication("AIChat")
  3533. } else if (e.data.tools && e.data.tools == "66") {
  3534. U.MD.D.I.openApplication("formulaEdi")
  3535. } else if (e.data.tools && e.data.tools == "67") {
  3536. U.MD.D.I.openApplication("molStr")
  3537. } else if (e.data.tools && e.data.tools == "68") {
  3538. U.MD.D.I.openApplication("timeAxis")
  3539. } else if (e.data.tools && e.data.tools == "openCourse") {
  3540. let _data = {
  3541. typea: e.data.typea || '',
  3542. typeb: e.data.typeb || '',
  3543. typed: e.data.typed || '',
  3544. }
  3545. U.MD.D.I.openInApplication("index", _data)
  3546. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3547. let _data = {
  3548. classid: e.data.classid || '',
  3549. }
  3550. U.MD.D.I.openInApplication("dataClass", _data)
  3551. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3552. let _data = {
  3553. cid: e.data.cid || '',
  3554. gid: e.data.gid || '',
  3555. }
  3556. U.MD.D.I.openInApplication("opencCscl", _data)
  3557. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3558. U.MD.D.I.openApplication("dataBoardTest")
  3559. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3560. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3561. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3562. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3563. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3564. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3565. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3566. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3567. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3568. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3569. }else if (e.data.tools && e.data.tools == "loginSz") {
  3570. U.MD.D.I.openInApplication("loginSz")
  3571. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3572. if($('#classroom_observation_board')[0]){
  3573. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3574. }
  3575. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3576. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3577. if($('#classroom_observation_ob_comment')[0]){
  3578. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3579. }
  3580. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3581. }
  3582. });
  3583. U.MD.D.I.selectUser = function () {
  3584. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3585. if (res.value[0].length > 0) {
  3586. US.userInfo = res.value[0][0];
  3587. $(".userName")[0].innerHTML = US.userInfo.username;
  3588. }
  3589. }, [], { "type": "GET", "withCredentials": true });
  3590. }
  3591. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3592. var _userinfo = US.userInfo, //登录用户信息
  3593. _userid = US.userInfo.userid, //登录用户id
  3594. _oid = _userinfo.organizeid,
  3595. _type = US.userInfo.type,
  3596. _org = US.userInfo.org,
  3597. _role = US.userInfo.role,
  3598. _classId = US.userInfo.classid;
  3599. if (_type == 4) {
  3600. tType = 4
  3601. }
  3602. switch (str) {
  3603. case "studyDetailNT": //无终端模式
  3604. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3605. setTimeout(() => {
  3606. U.MD.U.L.login();
  3607. }, 2000);
  3608. } else {
  3609. _formdiv = new U.UF.UI.form(
  3610. "课程详情",
  3611. $$("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 }), {
  3612. "id": "studyDetailNT",
  3613. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3614. "onresize": function () { }
  3615. }, {
  3616. closecallback: function () { }
  3617. }, { "style": { "height": "36px" } }).form; //创建窗体
  3618. _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); } }
  3619. break;
  3620. }
  3621. case "studyDetail":
  3622. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3623. setTimeout(() => {
  3624. U.MD.U.L.login();
  3625. }, 2000);
  3626. } else {
  3627. _formdiv = new U.UF.UI.form(
  3628. "课程详情",
  3629. $$("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 }), {
  3630. "id": "studyDetail",
  3631. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3632. "onresize": function () { }
  3633. }, {
  3634. closecallback: function () { }
  3635. }, { "style": { "height": "36px" } }).form; //创建窗体
  3636. _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); } }
  3637. break;
  3638. }
  3639. case "studyDetailTrain":
  3640. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3641. setTimeout(() => {
  3642. U.MD.U.L.login();
  3643. }, 2000);
  3644. } else {
  3645. _formdiv = new U.UF.UI.form(
  3646. "培训详情",
  3647. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3648. "id": "studyDetailTrain",
  3649. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3650. "onresize": function () { }
  3651. }, {
  3652. closecallback: function () { }
  3653. }, { "style": { "height": "36px" } }).form; //创建窗体
  3654. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3655. break;
  3656. }
  3657. case "studyDetailS":
  3658. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3659. setTimeout(() => {
  3660. U.MD.U.L.login();
  3661. }, 2000);
  3662. } else {
  3663. _formdiv = new U.UF.UI.form(
  3664. "项目详情",
  3665. $$("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 }), {
  3666. "id": "studyDetailS",
  3667. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3668. "onresize": function () { }
  3669. }, {
  3670. closecallback: function () { }
  3671. }, { "style": { "height": "36px" } }).form; //创建窗体
  3672. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3673. break;
  3674. }
  3675. case "studyDetailStudio":
  3676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3677. setTimeout(() => {
  3678. U.MD.U.L.login();
  3679. }, 2000);
  3680. } else {
  3681. _formdiv = new U.UF.UI.form(
  3682. "工作详情",
  3683. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  3684. "id": "studyDetailStudio",
  3685. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3686. "onresize": function () { }
  3687. }, {
  3688. closecallback: function () { }
  3689. }, { "style": { "height": "36px" } }).form; //创建窗体
  3690. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3691. break;
  3692. }
  3693. case "studyDetailS5":
  3694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3695. setTimeout(() => {
  3696. U.MD.U.L.login();
  3697. }, 2000);
  3698. } else {
  3699. _formdiv = new U.UF.UI.form(
  3700. "项目详情",
  3701. $$("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 }), {
  3702. "id": "studyDetailS",
  3703. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3704. "onresize": function () { }
  3705. }, {
  3706. closecallback: function () { }
  3707. }, { "style": { "height": "36px" } }).form; //创建窗体
  3708. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3709. break;
  3710. }
  3711. case "studyDetailGM":
  3712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3713. setTimeout(() => {
  3714. U.MD.U.L.login();
  3715. }, 2000);
  3716. } else {
  3717. _formdiv = new U.UF.UI.form(
  3718. "课程详情",
  3719. $$("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 }), {
  3720. "id": "studyDetail",
  3721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3722. "onresize": function () { }
  3723. }, {
  3724. closecallback: function () { }
  3725. }, { "style": { "height": "36px" } }).form; //创建窗体
  3726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3727. break;
  3728. }
  3729. case "hanUrl":
  3730. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3731. setTimeout(() => {
  3732. U.MD.U.L.login();
  3733. }, 2000);
  3734. } else {
  3735. _formdiv = new U.UF.UI.form(
  3736. "汉字宫",
  3737. $$("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" }), {
  3738. "id": "hanUrl",
  3739. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3740. "onresize": function () { }
  3741. }, {
  3742. closecallback: function () { }
  3743. }, { "style": { "height": "36px" } }).form; //创建窗体
  3744. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3745. break;
  3746. }
  3747. case "index":
  3748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3749. setTimeout(() => {
  3750. U.MD.U.L.login();
  3751. }, 2000);
  3752. } else {
  3753. _formdiv = new U.UF.UI.form(
  3754. "课程中心",
  3755. $$("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 }), {
  3756. "id": "study",
  3757. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3758. "onresize": function () { }
  3759. }, {
  3760. closecallback: function () { }
  3761. }, { "style": { "height": "36px" } }).form; //创建窗体
  3762. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3763. break;
  3764. }
  3765. case "dataClass":
  3766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3767. setTimeout(() => {
  3768. U.MD.U.L.login();
  3769. }, 2000);
  3770. } else {
  3771. _formdiv = new U.UF.UI.form(
  3772. "数据报告",
  3773. $$("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 }), {
  3774. "id": "dataClass",
  3775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3776. "onresize": function () { }
  3777. }, {
  3778. closecallback: function () { }
  3779. }, { "style": { "height": "36px" } }).form; //创建窗体
  3780. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3781. break;
  3782. }
  3783. case "opencCscl":
  3784. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3785. setTimeout(() => {
  3786. U.MD.U.L.login();
  3787. }, 2000);
  3788. } else {
  3789. _formdiv = new U.UF.UI.form(
  3790. "协同建构",
  3791. $$("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 }), {
  3792. "id": "futureClass",
  3793. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. }
  3801. case "openCourseUpdate":
  3802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3803. setTimeout(() => {
  3804. U.MD.U.L.login();
  3805. }, 2000);
  3806. } else {
  3807. _formdiv = new U.UF.UI.form(
  3808. "课程管理",
  3809. $$("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 }), {
  3810. "id": "openCourseUpdate",
  3811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3812. "onresize": function () { }
  3813. }, {
  3814. closecallback: function () { }
  3815. }, { "style": { "height": "36px" } }).form; //创建窗体
  3816. break;
  3817. }
  3818. case "openNewCourseUpdate":
  3819. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3820. setTimeout(() => {
  3821. U.MD.U.L.login();
  3822. }, 2000);
  3823. } else {
  3824. _formdiv = new U.UF.UI.form(
  3825. "课程管理",
  3826. $$("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 }), {
  3827. "id": "openCourseUpdate",
  3828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3829. "onresize": function () { }
  3830. }, {
  3831. closecallback: function () { }
  3832. }, { "style": { "height": "36px" } }).form; //创建窗体
  3833. break;
  3834. }
  3835. case "openCourseEUpdate":
  3836. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3837. setTimeout(() => {
  3838. U.MD.U.L.login();
  3839. }, 2000);
  3840. } else {
  3841. _formdiv = new U.UF.UI.form(
  3842. "课程管理",
  3843. $$("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 }), {
  3844. "id": "openCourseUpdate",
  3845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3846. "onresize": function () { }
  3847. }, {
  3848. closecallback: function () { }
  3849. }, { "style": { "height": "36px" } }).form; //创建窗体
  3850. break;
  3851. }
  3852. case "openCourseAiUpdate":
  3853. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3854. setTimeout(() => {
  3855. U.MD.U.L.login();
  3856. }, 2000);
  3857. } else {
  3858. _formdiv = new U.UF.UI.form(
  3859. "课程管理",
  3860. $$("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 }), {
  3861. "id": "openCourseUpdate",
  3862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3863. "onresize": function () { }
  3864. }, {
  3865. closecallback: function () { }
  3866. }, { "style": { "height": "36px" } }).form; //创建窗体
  3867. break;
  3868. }
  3869. case "openCourseNewUpdate":
  3870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3871. setTimeout(() => {
  3872. U.MD.U.L.login();
  3873. }, 2000);
  3874. } else {
  3875. _formdiv = new U.UF.UI.form(
  3876. "课程管理",
  3877. $$("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 }), {
  3878. "id": "openCourseUpdate",
  3879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3880. "onresize": function () { }
  3881. }, {
  3882. closecallback: function () { }
  3883. }, { "style": { "height": "36px" } }).form; //创建窗体
  3884. break;
  3885. }
  3886. case "inviteLoginSz":
  3887. _formdiv = new U.UF.UI.form(
  3888. "随机码登录",
  3889. $$("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 }), {
  3890. "id": "loginSz",
  3891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3892. "onresize": function () { }
  3893. }, {
  3894. closecallback: function () { }
  3895. }, { "style": { "height": "36px" } }).form; //创建窗体
  3896. break;
  3897. case "loginSz":
  3898. _formdiv = new U.UF.UI.form(
  3899. "教师登录",
  3900. $$("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" }), {
  3901. "id": "loginSz",
  3902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3903. "onresize": function () { }
  3904. }, {
  3905. closecallback: function () { }
  3906. }, { "style": { "height": "36px" } }).form; //创建窗体
  3907. break;
  3908. case "teacher":
  3909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3910. setTimeout(() => {
  3911. U.MD.U.L.login();
  3912. }, 2000);
  3913. } else {
  3914. _formdiv = new U.UF.UI.form(
  3915. "教师管理",
  3916. $$("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 }), {
  3917. "id": "teacher",
  3918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3919. "onresize": function () { }
  3920. }, {
  3921. closecallback: function () { }
  3922. }, { "style": { "height": "36px" } }).form; //创建窗体
  3923. break;
  3924. }
  3925. case "dataBoardSZArea":
  3926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3927. setTimeout(() => {
  3928. U.MD.U.L.login();
  3929. }, 2000);
  3930. } else {
  3931. _formdiv = new U.UF.UI.form(
  3932. "综合数据看板",
  3933. $$("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 }), {
  3934. "id": "dataBoardSZArea",
  3935. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3936. "onresize": function () { }
  3937. }, {
  3938. closecallback: function () { }
  3939. }, { "style": { "height": "36px" } }).form; //创建窗体
  3940. break;
  3941. }
  3942. case "dataBoardSZCity":
  3943. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3944. setTimeout(() => {
  3945. U.MD.U.L.login();
  3946. }, 2000);
  3947. } else {
  3948. _formdiv = new U.UF.UI.form(
  3949. "综合数据看板",
  3950. $$("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 }), {
  3951. "id": "dataBoardSZCity",
  3952. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3953. "onresize": function () { }
  3954. }, {
  3955. closecallback: function () { }
  3956. }, { "style": { "height": "36px" } }).form; //创建窗体
  3957. break;
  3958. }
  3959. case "classroom_observation_board":
  3960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3961. setTimeout(() => {
  3962. U.MD.U.L.login();
  3963. }, 2000);
  3964. } else {
  3965. _formdiv = new U.UF.UI.form(
  3966. "课堂观察",
  3967. $$("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 }), {
  3968. "id": "classroom_observation_board",
  3969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3970. "onresize": function () { }
  3971. }, {
  3972. closecallback: function () { }
  3973. }, { "style": { "height": "36px" } }).form; //创建窗体
  3974. break;
  3975. }
  3976. case "classroom_observation_ob_comment":
  3977. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3978. setTimeout(() => {
  3979. U.MD.U.L.login();
  3980. }, 2000);
  3981. } else {
  3982. _formdiv = new U.UF.UI.form(
  3983. "课堂审核",
  3984. $$("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 }), {
  3985. "id": "classroom_observation_ob_comment",
  3986. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3987. "onresize": function () { }
  3988. }, {
  3989. closecallback: function () { }
  3990. }, { "style": { "height": "36px" } }).form; //创建窗体
  3991. break;
  3992. }
  3993. }
  3994. }
  3995. U.MD.D.I.openApplication = function (str, obj, info) {
  3996. obj = obj || {};
  3997. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3998. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3999. _userinfo = US.userInfo, //登录用户信息
  4000. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4001. _oid = obj.organizeid || _userinfo.organizeid,
  4002. _type = US.userInfo.type,
  4003. _org = US.userInfo.org,
  4004. _role = US.userInfo.role,
  4005. _classId = US.userInfo.classid,
  4006. _TscreenType = 1
  4007. _screenType = 2,
  4008. _SscreenType = 3;
  4009. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4010. return;
  4011. }
  4012. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4013. switch (str) {
  4014. case "studnetProject": //好友打开
  4015. _formdiv = new U.UF.UI.form(
  4016. "我的项目",
  4017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  4018. "id": "studnetProject",
  4019. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4020. "onresize": function () { }
  4021. }, {
  4022. closecallback: function () { }
  4023. }, { "style": { "height": "36px" } }).form; //创建窗体
  4024. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4025. break;
  4026. case "studentEvaluate": //好友打开
  4027. _formdiv = new U.UF.UI.form(
  4028. "我的评价",
  4029. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4030. "id": "studentEvaluate",
  4031. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4032. "onresize": function () { }
  4033. }, {
  4034. closecallback: function () { }
  4035. }, { "style": { "height": "36px" } }).form; //创建窗体
  4036. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4037. break;
  4038. case "my":
  4039. _formdiv = new U.UF.UI.form(
  4040. "我的资料",
  4041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4042. "id": "my",
  4043. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4044. "onresize": function () { }
  4045. }, {
  4046. closecallback: function () { }
  4047. }, { "style": { "height": "36px" } }).form; //创建窗体
  4048. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4049. break;
  4050. case "program":
  4051. _formdiv = new U.UF.UI.form(
  4052. "编程平台",
  4053. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4054. "id": "program",
  4055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4056. "onresize": function () { }
  4057. }, {
  4058. closecallback: function () { }
  4059. }, { "style": { "height": "36px" } }).form; //创建窗体
  4060. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4061. break;
  4062. case "library":
  4063. _formdiv = new U.UF.UI.form(
  4064. "素材库",
  4065. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4066. "id": "library",
  4067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4068. "onresize": function () { }
  4069. }, {
  4070. closecallback: function () { }
  4071. }, { "style": { "height": "36px" } }).form; //创建窗体
  4072. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4073. break;
  4074. case "whiteboard":
  4075. _formdiv = new U.UF.UI.form(
  4076. "电子白板",
  4077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4078. "id": "whiteboard",
  4079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4080. "onresize": function () { }
  4081. }, {
  4082. closecallback: function () { }
  4083. }, { "style": { "height": "36px" } }).form; //创建窗体
  4084. _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); } }
  4085. break;
  4086. case "investigation":
  4087. _formdiv = new U.UF.UI.form(
  4088. "问卷调查",
  4089. $$("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 }), {
  4090. "id": "investigation",
  4091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4092. "onresize": function () { }
  4093. }, {
  4094. closecallback: function () { }
  4095. }, { "style": { "height": "36px" } }).form; //创建窗体
  4096. _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); } }
  4097. break;
  4098. case "note":
  4099. _formdiv = new U.UF.UI.form(
  4100. "便签分类",
  4101. $$("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 }), {
  4102. "id": "note",
  4103. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4104. "onresize": function () { }
  4105. }, {
  4106. closecallback: function () { }
  4107. }, { "style": { "height": "36px" } }).form; //创建窗体
  4108. _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); } }
  4109. break;
  4110. // case "score":
  4111. // _formdiv = new U.UF.UI.form(
  4112. // "量规评分",
  4113. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4114. // "id": "score",
  4115. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4116. // "onresize": function() {}
  4117. // }, {
  4118. // closecallback: function() {}
  4119. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4120. // _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); } }
  4121. // break;
  4122. case "mind":
  4123. _formdiv = new U.UF.UI.form(
  4124. "思维导图",
  4125. $$("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"
  4126. "id": "mind",
  4127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4128. "onresize": function () { }
  4129. }, {
  4130. closecallback: function () { }
  4131. }, { "style": { "height": "36px" } }).form; //创建窗体
  4132. _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); } }
  4133. break;
  4134. case "doc":
  4135. // U.MD.D.I.isRoom();
  4136. _formdiv = new U.UF.UI.form(
  4137. "协同文档",
  4138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4139. "id": "doc",
  4140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4141. "onresize": function () { }
  4142. }, {
  4143. closecallback: function () { }
  4144. }, { "style": { "height": "36px" } }).form; //创建窗体
  4145. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4146. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4147. // })
  4148. _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); } }
  4149. break;
  4150. case "studentStudy":
  4151. _formdiv = new U.UF.UI.form(
  4152. "课程中心",
  4153. $$("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
  4154. "id": "studentStudy",
  4155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4156. "onresize": function () { }
  4157. }, {
  4158. closecallback: function () { }
  4159. }, { "style": { "height": "36px" } }).form; //创建窗体
  4160. _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); } }
  4161. break;
  4162. case "train": //好友打开
  4163. _formdiv = new U.UF.UI.form(
  4164. "训练平台",
  4165. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4166. "id": "train",
  4167. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4168. "onresize": function () { }
  4169. }, {
  4170. closecallback: function () { }
  4171. }, { "style": { "height": "36px" } }).form; //创建窗体
  4172. _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); } }
  4173. break;
  4174. case "mindNetwork": //好友打开
  4175. _formdiv = new U.UF.UI.form(
  4176. "思维网格",
  4177. $$("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 }), {
  4178. "id": "mindNetwork",
  4179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4180. "onresize": function () { }
  4181. }, {
  4182. closecallback: function () { }
  4183. }, { "style": { "height": "36px" } }).form; //创建窗体
  4184. _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); } }
  4185. break;
  4186. case "studentClassRoom": //好友打开
  4187. _formdiv = new U.UF.UI.form(
  4188. "实时课堂",
  4189. $$("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 }), {
  4190. "id": "studentClassRoom",
  4191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4192. "onresize": function () { }
  4193. }, {
  4194. closecallback: function () { }
  4195. }, { "style": { "height": "36px" } }).form; //创建窗体
  4196. _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); } }
  4197. setTimeout(() => {
  4198. U.UF.F.windowZooming(_formdiv)
  4199. }, 0);
  4200. break;
  4201. }
  4202. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4203. switch (str) {
  4204. case "studnetProject": //好友打开
  4205. _formdiv = new U.UF.UI.form(
  4206. "我的项目",
  4207. $$("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 }), {
  4208. "id": "studnetProject",
  4209. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4210. "onresize": function () { }
  4211. }, {
  4212. closecallback: function () { }
  4213. }, { "style": { "height": "36px" } }).form; //创建窗体
  4214. _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); } }
  4215. break;
  4216. case "studentEvaluate": //好友打开
  4217. _formdiv = new U.UF.UI.form(
  4218. "我的评价",
  4219. $$("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 }), {
  4220. "id": "studentEvaluate",
  4221. "style": { "width": "70%", "height": "90%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4227. break;
  4228. case "my":
  4229. _formdiv = new U.UF.UI.form(
  4230. "我的资料",
  4231. $$("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 }), {
  4232. "id": "my",
  4233. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4239. break;
  4240. case "program":
  4241. _formdiv = new U.UF.UI.form(
  4242. "编程平台",
  4243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4244. "id": "program",
  4245. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4251. break;
  4252. case "library":
  4253. _formdiv = new U.UF.UI.form(
  4254. "素材库",
  4255. $$("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 }), {
  4256. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4263. break;
  4264. case "whiteboard":
  4265. _formdiv = new U.UF.UI.form(
  4266. "电子白板",
  4267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4268. "id": "whiteboard",
  4269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4270. "onresize": function () { }
  4271. }, {
  4272. closecallback: function () { }
  4273. }, { "style": { "height": "36px" } }).form; //创建窗体
  4274. _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); } }
  4275. break;
  4276. case "investigation":
  4277. _formdiv = new U.UF.UI.form(
  4278. "问卷调查",
  4279. $$("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 }), {
  4280. "id": "investigation",
  4281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4282. "onresize": function () { }
  4283. }, {
  4284. closecallback: function () { }
  4285. }, { "style": { "height": "36px" } }).form; //创建窗体
  4286. _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); } }
  4287. break;
  4288. case "note":
  4289. _formdiv = new U.UF.UI.form(
  4290. "便签分类",
  4291. $$("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 }), {
  4292. "id": "note",
  4293. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4294. "onresize": function () { }
  4295. }, {
  4296. closecallback: function () { }
  4297. }, { "style": { "height": "36px" } }).form; //创建窗体
  4298. _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); } }
  4299. break;
  4300. // case "score":
  4301. // _formdiv = new U.UF.UI.form(
  4302. // "量规评分",
  4303. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4304. // "id": "score",
  4305. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4306. // "onresize": function() {}
  4307. // }, {
  4308. // closecallback: function() {}
  4309. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4310. // _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); } }
  4311. // break;
  4312. case "mind":
  4313. _formdiv = new U.UF.UI.form(
  4314. "思维导图",
  4315. $$("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"
  4316. "id": "mind",
  4317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4318. "onresize": function () { }
  4319. }, {
  4320. closecallback: function () { }
  4321. }, { "style": { "height": "36px" } }).form; //创建窗体
  4322. _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); } }
  4323. break;
  4324. case "doc":
  4325. // U.MD.D.I.isRoom();
  4326. _formdiv = new U.UF.UI.form(
  4327. "协同文档",
  4328. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4329. "id": "doc",
  4330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4331. "onresize": function () { }
  4332. }, {
  4333. closecallback: function () { }
  4334. }, { "style": { "height": "36px" } }).form; //创建窗体
  4335. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4336. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4337. })
  4338. _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); } }
  4339. break;
  4340. case "train": //好友打开
  4341. _formdiv = new U.UF.UI.form(
  4342. "训练平台",
  4343. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4344. "id": "train",
  4345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4346. "onresize": function () { }
  4347. }, {
  4348. closecallback: function () { }
  4349. }, { "style": { "height": "36px" } }).form; //创建窗体
  4350. _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); } }
  4351. break;
  4352. case "studentStudy":
  4353. _formdiv = new U.UF.UI.form(
  4354. "课程中心",
  4355. $$("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
  4356. "id": "studentStudy",
  4357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4358. "onresize": function () { }
  4359. }, {
  4360. closecallback: function () { }
  4361. }, { "style": { "height": "36px" } }).form; //创建窗体
  4362. _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); } }
  4363. break;
  4364. case "mindNetwork": //好友打开
  4365. _formdiv = new U.UF.UI.form(
  4366. "思维网格",
  4367. $$("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 }), {
  4368. "id": "mindNetwork",
  4369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4370. "onresize": function () { }
  4371. }, {
  4372. closecallback: function () { }
  4373. }, { "style": { "height": "36px" } }).form; //创建窗体
  4374. _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); } }
  4375. break;
  4376. case "studentClassRoom": //好友打开
  4377. _formdiv = new U.UF.UI.form(
  4378. "实时课堂",
  4379. $$("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 }), {
  4380. "id": "studentClassRoom",
  4381. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4382. "onresize": function () { }
  4383. }, {
  4384. closecallback: function () { }
  4385. }, { "style": { "height": "36px" } }).form; //创建窗体
  4386. _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); } }
  4387. setTimeout(() => {
  4388. U.UF.F.windowZooming(_formdiv)
  4389. }, 0);
  4390. break;
  4391. }
  4392. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4393. //选择应用处理
  4394. switch (str) {
  4395. case "project": //好友打开
  4396. _formdiv = new U.UF.UI.form(
  4397. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4398. $$("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 }), {
  4399. "id": "project",
  4400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4406. break;
  4407. case "student":
  4408. _formdiv = new U.UF.UI.form(
  4409. "学生管理",
  4410. $$("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 }), {
  4411. "id": "student",
  4412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4413. "onresize": function () { }
  4414. }, {
  4415. closecallback: function () { }
  4416. }, { "style": { "height": "36px" } }).form; //创建窗体
  4417. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4418. break;
  4419. case "evaluate":
  4420. _formdiv = new U.UF.UI.form(
  4421. "学生评价",
  4422. $$("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 }), {
  4423. "id": "evaluate",
  4424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4425. "onresize": function () { }
  4426. }, {
  4427. closecallback: function () { }
  4428. }, { "style": { "height": "36px" } }).form; //创建窗体
  4429. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4430. break;
  4431. case "sys":
  4432. _formdiv = new U.UF.UI.form(
  4433. "目标管理",
  4434. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4435. "id": "sys",
  4436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4437. "onresize": function () { }
  4438. }, {
  4439. closecallback: function () { }
  4440. }, { "style": { "height": "36px" } }).form; //创建窗体
  4441. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4442. break;
  4443. case "courseDesign":
  4444. _formdiv = new U.UF.UI.form(
  4445. "项目设计",
  4446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4447. "id": "courseDesign",
  4448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4449. "onresize": function () { }
  4450. }, {
  4451. closecallback: function () { }
  4452. }, { "style": { "height": "36px" } }).form; //创建窗体
  4453. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4454. break;
  4455. case "program":
  4456. _formdiv = new U.UF.UI.form(
  4457. "编程平台",
  4458. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4459. "id": "program",
  4460. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4461. "onresize": function () { }
  4462. }, {
  4463. closecallback: function () { }
  4464. }, { "style": { "height": "36px" } }).form; //创建窗体
  4465. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4466. break;
  4467. case "class":
  4468. _formdiv = new U.UF.UI.form(
  4469. "班级管理",
  4470. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4471. "id": "class",
  4472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4473. "onresize": function () { }
  4474. }, {
  4475. closecallback: function () { }
  4476. }, { "style": { "height": "36px" } }).form; //创建窗体
  4477. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4478. break;
  4479. case "Grade":
  4480. _formdiv = new U.UF.UI.form(
  4481. "年级管理",
  4482. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4483. "id": "Grade",
  4484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4485. "onresize": function () { }
  4486. }, {
  4487. closecallback: function () { }
  4488. }, { "style": { "height": "36px" } }).form; //创建窗体
  4489. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4490. break;
  4491. case "teacherOffice":
  4492. _formdiv = new U.UF.UI.form(
  4493. "教研室",
  4494. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4495. "id": "teacherOffice",
  4496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4497. "onresize": function () { }
  4498. }, {
  4499. closecallback: function () { }
  4500. }, { "style": { "height": "36px" } }).form; //创建窗体
  4501. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4502. break;
  4503. case "my":
  4504. _formdiv = new U.UF.UI.form(
  4505. "我的资料",
  4506. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  4507. "id": "my",
  4508. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4509. "onresize": function () { }
  4510. }, {
  4511. closecallback: function () { }
  4512. }, { "style": { "height": "36px" } }).form; //创建窗体
  4513. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4514. break;
  4515. case "notice":
  4516. _formdiv = new U.UF.UI.form(
  4517. "通知公告",
  4518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4519. "id": "notice",
  4520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4521. "onresize": function () { }
  4522. }, {
  4523. closecallback: function () { }
  4524. }, { "style": { "height": "36px" } }).form; //创建窗体
  4525. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4526. break;
  4527. case "library":
  4528. _formdiv = new U.UF.UI.form(
  4529. "素材库",
  4530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4531. "id": "library",
  4532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4533. "onresize": function () { }
  4534. }, {
  4535. closecallback: function () { }
  4536. }, { "style": { "height": "36px" } }).form; //创建窗体
  4537. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4538. break;
  4539. case "whiteboard":
  4540. _formdiv = new U.UF.UI.form(
  4541. "电子白板",
  4542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4543. "id": "whiteboard",
  4544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4545. "onresize": function () { }
  4546. }, {
  4547. closecallback: function () { }
  4548. }, { "style": { "height": "36px" } }).form; //创建窗体
  4549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4550. break;
  4551. case "investigation":
  4552. _formdiv = new U.UF.UI.form(
  4553. "问卷调查",
  4554. $$("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 }), {
  4555. "id": "investigation",
  4556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4557. "onresize": function () { }
  4558. }, {
  4559. closecallback: function () { }
  4560. }, { "style": { "height": "36px" } }).form; //创建窗体
  4561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4562. break;
  4563. case "note":
  4564. _formdiv = new U.UF.UI.form(
  4565. "便签分类",
  4566. $$("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 }), {
  4567. "id": "note",
  4568. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4569. "onresize": function () { }
  4570. }, {
  4571. closecallback: function () { }
  4572. }, { "style": { "height": "36px" } }).form; //创建窗体
  4573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4574. break;
  4575. // case "score":
  4576. // _formdiv = new U.UF.UI.form(
  4577. // "量规评分",
  4578. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4579. // "id": "score",
  4580. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4581. // "onresize": function() {}
  4582. // }, {
  4583. // closecallback: function() {}
  4584. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4585. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4586. // break;
  4587. case "mind":
  4588. _formdiv = new U.UF.UI.form(
  4589. "思维导图",
  4590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4591. "id": "mind",
  4592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4593. "onresize": function () { }
  4594. }, {
  4595. closecallback: function () { }
  4596. }, { "style": { "height": "36px" } }).form; //创建窗体
  4597. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4598. break;
  4599. case "doc":
  4600. // U.MD.D.I.isRoom();
  4601. _formdiv = new U.UF.UI.form(
  4602. "协同文档",
  4603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4604. "id": "doc",
  4605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4606. "onresize": function () { }
  4607. }, {
  4608. closecallback: function () { }
  4609. }, { "style": { "height": "36px" } }).form; //创建窗体
  4610. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4611. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4612. })
  4613. _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); } }
  4614. break;
  4615. case "study":
  4616. _formdiv = new U.UF.UI.form(
  4617. "课程中心",
  4618. $$("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
  4619. "id": "study",
  4620. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4621. "onresize": function () { }
  4622. }, {
  4623. closecallback: function () { }
  4624. }, { "style": { "height": "36px" } }).form; //创建窗体
  4625. _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); } }
  4626. break;
  4627. case "mindNetwork": //好友打开
  4628. _formdiv = new U.UF.UI.form(
  4629. "思维网格",
  4630. $$("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 }), {
  4631. "id": "mindNetwork",
  4632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4633. "onresize": function () { }
  4634. }, {
  4635. closecallback: function () { }
  4636. }, { "style": { "height": "36px" } }).form; //创建窗体
  4637. _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); } }
  4638. break;
  4639. case "train": //好友打开
  4640. _formdiv = new U.UF.UI.form(
  4641. "训练平台",
  4642. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4643. "id": "mindNetwork",
  4644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4645. "onresize": function () { }
  4646. }, {
  4647. closecallback: function () { }
  4648. }, { "style": { "height": "36px" } }).form; //创建窗体
  4649. _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); } }
  4650. break;
  4651. case "teacherClassRoom": //好友打开
  4652. _formdiv = new U.UF.UI.form(
  4653. "实时课堂",
  4654. $$("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 }), {
  4655. "id": "teacherClassRoom",
  4656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4657. "onresize": function () { }
  4658. }, {
  4659. closecallback: function () { }
  4660. }, { "style": { "height": "36px" } }).form; //创建窗体
  4661. _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); } }
  4662. setTimeout(() => {
  4663. U.UF.F.windowZooming(_formdiv)
  4664. }, 0);
  4665. break;
  4666. }
  4667. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4668. switch (str) {
  4669. case "project": //好友打开
  4670. _formdiv = new U.UF.UI.form(
  4671. "课程管理",
  4672. $$("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 }), {
  4673. "id": "project",
  4674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4675. "onresize": function () { }
  4676. }, {
  4677. closecallback: function () { }
  4678. }, { "style": { "height": "36px" } }).form; //创建窗体
  4679. _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); } }
  4680. break;
  4681. case "evaluate":
  4682. _formdiv = new U.UF.UI.form(
  4683. "学生评价",
  4684. $$("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 }), {
  4685. "id": "evaluate",
  4686. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4692. break;
  4693. case "notice":
  4694. _formdiv = new U.UF.UI.form(
  4695. "通知公告",
  4696. $$("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 }), {
  4697. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4704. break;
  4705. case "stuLibrary":
  4706. _formdiv = new U.UF.UI.form(
  4707. "学习资料",
  4708. $$("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 }), {
  4709. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4716. break;
  4717. case "program":
  4718. _formdiv = new U.UF.UI.form(
  4719. "编程平台",
  4720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4721. "id": "program",
  4722. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4728. break;
  4729. case "whiteboard":
  4730. _formdiv = new U.UF.UI.form(
  4731. "电子白板",
  4732. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4733. "id": "whiteboard",
  4734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4740. break;
  4741. case "investigation":
  4742. _formdiv = new U.UF.UI.form(
  4743. "问卷调查",
  4744. $$("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 }), {
  4745. "id": "investigation",
  4746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4747. "onresize": function () { }
  4748. }, {
  4749. closecallback: function () { }
  4750. }, { "style": { "height": "36px" } }).form; //创建窗体
  4751. _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); } }
  4752. break;
  4753. case "mind":
  4754. _formdiv = new U.UF.UI.form(
  4755. "思维导图",
  4756. $$("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"
  4757. "id": "mind",
  4758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4759. "onresize": function () { }
  4760. }, {
  4761. closecallback: function () { }
  4762. }, { "style": { "height": "36px" } }).form; //创建窗体
  4763. _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); } }
  4764. break;
  4765. case "doc":
  4766. // U.MD.D.I.isRoom();
  4767. _formdiv = new U.UF.UI.form(
  4768. "协同文档",
  4769. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4770. "id": "doc",
  4771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4772. "onresize": function () { }
  4773. }, {
  4774. closecallback: function () { }
  4775. }, { "style": { "height": "36px" } }).form; //创建窗体
  4776. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4777. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4778. })
  4779. _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); } }
  4780. break;
  4781. case "study":
  4782. _formdiv = new U.UF.UI.form(
  4783. "课程中心",
  4784. $$("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
  4785. "id": "study",
  4786. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4792. break;
  4793. case "mindNetwork": //好友打开
  4794. _formdiv = new U.UF.UI.form(
  4795. "思维网格",
  4796. $$("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 }), {
  4797. "id": "mindNetwork",
  4798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4799. "onresize": function () { }
  4800. }, {
  4801. closecallback: function () { }
  4802. }, { "style": { "height": "36px" } }).form; //创建窗体
  4803. _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); } }
  4804. break;
  4805. case "train": //好友打开
  4806. _formdiv = new U.UF.UI.form(
  4807. "训练平台",
  4808. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4809. "id": "train",
  4810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4811. "onresize": function () { }
  4812. }, {
  4813. closecallback: function () { }
  4814. }, { "style": { "height": "36px" } }).form; //创建窗体
  4815. _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); } }
  4816. break;
  4817. case "sys":
  4818. _formdiv = new U.UF.UI.form(
  4819. "目标管理",
  4820. $$("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 }), {
  4821. "id": "sys",
  4822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. case "courseDesign":
  4830. _formdiv = new U.UF.UI.form(
  4831. "项目设计",
  4832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4833. "id": "courseDesign",
  4834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4835. "onresize": function () { }
  4836. }, {
  4837. closecallback: function () { }
  4838. }, { "style": { "height": "36px" } }).form; //创建窗体
  4839. _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); } }
  4840. break;
  4841. }
  4842. } else if (!_type) {
  4843. switch (str) {
  4844. case "my":
  4845. _formdiv = new U.UF.UI.form(
  4846. "我的资料",
  4847. $$("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 }), {
  4848. "id": "my",
  4849. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. break;
  4856. }
  4857. }
  4858. switch (str) {
  4859. // AIprogram2 AI体验 aihub.cocorobo.cn
  4860. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4861. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4862. case "formulaEdi": //公式编辑
  4863. _formdiv = new U.UF.UI.form(
  4864. "公式编辑",
  4865. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4866. "id": "formulaEdi",
  4867. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { }
  4871. }, { "style": { "height": "36px" } }).form; //创建窗体
  4872. _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); } }
  4873. break;
  4874. case "molStr": //分子结构
  4875. _formdiv = new U.UF.UI.form(
  4876. "分子结构",
  4877. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4878. "id": "molStr",
  4879. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _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); } }
  4885. break;
  4886. case "timeAxis": //时间轴
  4887. _formdiv = new U.UF.UI.form(
  4888. "时间轴",
  4889. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4890. "id": "timeAxis",
  4891. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4892. "onresize": function () { }
  4893. }, {
  4894. closecallback: function () { }
  4895. }, { "style": { "height": "36px" } }).form; //创建窗体
  4896. _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); } }
  4897. break;
  4898. case "AIprogram2": //AI体验
  4899. _formdiv = new U.UF.UI.form(
  4900. "AI体验",
  4901. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4902. "id": "AIprogram2",
  4903. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4904. "onresize": function () { }
  4905. }, {
  4906. closecallback: function () { }
  4907. }, { "style": { "height": "36px" } }).form; //创建窗体
  4908. _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); } }
  4909. break;
  4910. case "Pythonprogram": //python编程
  4911. _formdiv = new U.UF.UI.form(
  4912. "Python编程",
  4913. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4914. "id": "Pythonprogram",
  4915. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4921. break;
  4922. case "AIprogram": //ai编程
  4923. _formdiv = new U.UF.UI.form(
  4924. "AI编程平台",
  4925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4926. "id": "AIprogram",
  4927. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4928. "onresize": function () { }
  4929. }, {
  4930. closecallback: function () { }
  4931. }, { "style": { "height": "36px" } }).form; //创建窗体
  4932. _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); } }
  4933. break;
  4934. case "CocoPi": //CocoPi
  4935. _formdiv = new U.UF.UI.form(
  4936. "CocoPi",
  4937. $$("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" }), {
  4938. "id": "CocoPi",
  4939. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. _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); } }
  4945. break;
  4946. case "Wood": //Wood
  4947. _formdiv = new U.UF.UI.form(
  4948. "海龟编程",
  4949. $$("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/" }), {
  4950. "id": "Wood",
  4951. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _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); } }
  4957. break;
  4958. case "car": //模拟驾驶
  4959. _formdiv = new U.UF.UI.form(
  4960. "模拟驾驶",
  4961. $$("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/" }), {
  4962. "id": "car",
  4963. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. closecallback: function () { }
  4967. }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. _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); } }
  4969. break;
  4970. case "lineSearch": //路径搜索
  4971. _formdiv = new U.UF.UI.form(
  4972. "路径搜索",
  4973. $$("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/" }), {
  4974. "id": "lineSearch",
  4975. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () { }
  4979. }, { "style": { "height": "36px" } }).form; //创建窗体
  4980. _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); } }
  4981. break;
  4982. case "deepLearning": //深度学习
  4983. _formdiv = new U.UF.UI.form(
  4984. "深度学习",
  4985. $$("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/#" }), {
  4986. "id": "deepLearning",
  4987. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. case "allHistory": //深度学习
  4995. _formdiv = new U.UF.UI.form(
  4996. "全历史",
  4997. $$("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/" }), {
  4998. "id": "allHistory",
  4999. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5000. "onresize": function () { }
  5001. }, {
  5002. closecallback: function () { }
  5003. }, { "style": { "height": "36px" } }).form; //创建窗体
  5004. _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); } }
  5005. break;
  5006. case "chatPDF": //ai编程
  5007. _formdiv = new U.UF.UI.form(
  5008. "chatPDF",
  5009. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5010. "id": "chatPDF",
  5011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5012. "onresize": function () { }
  5013. }, {
  5014. closecallback: function () { }
  5015. }, { "style": { "height": "36px" } }).form; //创建窗体
  5016. _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); } }
  5017. break;
  5018. case "resources": //国家教育
  5019. _formdiv = new U.UF.UI.form(
  5020. "国家教育",
  5021. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5022. "id": "resources",
  5023. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _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); } }
  5029. break;
  5030. case "codeEdit": //源码编辑
  5031. _formdiv = new U.UF.UI.form(
  5032. "源码编辑",
  5033. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5034. "id": "codeEdit",
  5035. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5036. "onresize": function () { }
  5037. }, {
  5038. closecallback: function () { }
  5039. }, { "style": { "height": "36px" } }).form; //创建窗体
  5040. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5041. break; //
  5042. case "MindMap": //MindMap
  5043. _formdiv = new U.UF.UI.form(
  5044. "MindMap",
  5045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5046. "id": "MindMap",
  5047. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5048. "onresize": function () { }
  5049. }, {
  5050. closecallback: function () { }
  5051. }, { "style": { "height": "36px" } }).form; //创建窗体
  5052. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5053. break;
  5054. case "netWorkPanel": //netWorkPanel
  5055. _formdiv = new U.UF.UI.form(
  5056. "netWorkPanel",
  5057. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5058. "id": "netWorkPanel",
  5059. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5065. break;
  5066. case "GeoGebra": //GeoGebra
  5067. _formdiv = new U.UF.UI.form(
  5068. "GeoGebra",
  5069. $$("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" }), {
  5070. "id": "GeoGebra",
  5071. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5077. break;
  5078. case "translation": //翻译
  5079. _formdiv = new U.UF.UI.form(
  5080. "翻译",
  5081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5082. "id": "translation",
  5083. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5084. "onresize": function () { }
  5085. }, {
  5086. closecallback: function () { }
  5087. }, { "style": { "height": "36px" } }).form; //创建窗体
  5088. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5089. break;
  5090. case "mohe": //魔盒
  5091. _formdiv = new U.UF.UI.form(
  5092. "魔盒识字",
  5093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5094. "id": "mohe",
  5095. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5096. "onresize": function () { }
  5097. }, {
  5098. closecallback: function () { }
  5099. }, { "style": { "height": "36px" } }).form; //创建窗体
  5100. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5101. break;
  5102. case "24game": //24点
  5103. _formdiv = new U.UF.UI.form(
  5104. "24点",
  5105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5106. "id": "24game",
  5107. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5108. "onresize": function () { }
  5109. }, {
  5110. closecallback: function () { }
  5111. }, { "style": { "height": "36px" } }).form; //创建窗体
  5112. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5113. break;
  5114. case "case":
  5115. _formdiv = new U.UF.UI.form(
  5116. "课程进展",
  5117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5118. "id": "case",
  5119. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5125. break;
  5126. case "snf":
  5127. _formdiv = new U.UF.UI.form(
  5128. "赛诺梵",
  5129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  5130. "id": "snf",
  5131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5137. break;
  5138. case "hanFamily":
  5139. _formdiv = new U.UF.UI.form(
  5140. "汉字家族",
  5141. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5142. "id": "hanFamily",
  5143. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5149. break;
  5150. case "hanClassics":
  5151. _formdiv = new U.UF.UI.form(
  5152. "国学经典",
  5153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5154. "id": "hanClassics",
  5155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5161. break;
  5162. case "hanTraining":
  5163. _formdiv = new U.UF.UI.form(
  5164. "笔画训练",
  5165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5166. "id": "hanTraining",
  5167. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5173. break;
  5174. case "hanClass":
  5175. _formdiv = new U.UF.UI.form(
  5176. "书法课堂",
  5177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5178. "id": "hanClass",
  5179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5185. break;
  5186. case "han":
  5187. _formdiv = new U.UF.UI.form(
  5188. "汉字宫",
  5189. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5190. "id": "han",
  5191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5197. break;
  5198. case "projectGM": //课程管理
  5199. _formdiv = new U.UF.UI.form(
  5200. "课程管理",
  5201. $$("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 }), {
  5202. "id": "projectGM",
  5203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. "onresize": function () { }
  5205. }, {
  5206. closecallback: function () { }
  5207. }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. _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); } }
  5209. break;
  5210. case "studyGM": //课程中心
  5211. _formdiv = new U.UF.UI.form(
  5212. "课程中心",
  5213. $$("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
  5214. "id": "study",
  5215. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _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); } }
  5221. break;
  5222. // studentGM
  5223. case "studentGM": //学生管理
  5224. _formdiv = new U.UF.UI.form(
  5225. "学生管理",
  5226. $$("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 }), {
  5227. "id": "studentGM",
  5228. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5229. "onresize": function () { }
  5230. }, {
  5231. closecallback: function () { }
  5232. }, { "style": { "height": "36px" } }).form; //创建窗体
  5233. _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); } }
  5234. break;
  5235. case "evaluateGM": //学生评价
  5236. _formdiv = new U.UF.UI.form(
  5237. "学生评价",
  5238. $$("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 }), {
  5239. "id": "evaluateGM",
  5240. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5241. "onresize": function () { }
  5242. }, {
  5243. closecallback: function () { }
  5244. }, { "style": { "height": "36px" } }).form; //创建窗体
  5245. _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); } }
  5246. break;
  5247. // classGM
  5248. case "classGM": //班级管理
  5249. _formdiv = new U.UF.UI.form(
  5250. "班级管理",
  5251. $$("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 }), {
  5252. "id": "classGM",
  5253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5259. break;
  5260. // dataGM
  5261. case "dataGM":
  5262. _formdiv = new U.UF.UI.form(
  5263. "我的资料",
  5264. $$("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 }), {
  5265. "id": "dataGM",
  5266. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. // caseGM
  5274. case "caseGM": //课程进展
  5275. _formdiv = new U.UF.UI.form(
  5276. "课程进展",
  5277. $$("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 }), {
  5278. "id": "caseGM",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. // meterialGM
  5287. case "meterialGM": //素材库
  5288. _formdiv = new U.UF.UI.form(
  5289. "素材库",
  5290. $$("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 }), {
  5291. "id": "meterialGM",
  5292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5293. "onresize": function () { }
  5294. }, {
  5295. closecallback: function () { }
  5296. }, { "style": { "height": "36px" } }).form; //创建窗体
  5297. _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); } }
  5298. break;
  5299. // evaluateSGM
  5300. case "evaluateSGM": //我的评价
  5301. _formdiv = new U.UF.UI.form(
  5302. "我的评价",
  5303. $$("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 }), {
  5304. "id": "evaluateSGM",
  5305. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. break;
  5312. case "jupyter": //jupyter
  5313. _formdiv = new U.UF.UI.form(
  5314. "jupyter",
  5315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5316. "id": "jupyter",
  5317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. case "number": //数字实验室
  5325. _formdiv = new U.UF.UI.form(
  5326. "数字实验室",
  5327. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5328. "id": "number",
  5329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "studentCourse": //项目管理 学生
  5337. _formdiv = new U.UF.UI.form(
  5338. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5339. $$("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 }), {
  5340. "id": "studentCourse",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "studentCourseS": //项目管理 老师
  5349. _formdiv = new U.UF.UI.form(
  5350. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5351. $$("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 }), {
  5352. "id": "studentCourseS",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. case "studentIndex": //项目中心
  5361. _formdiv = new U.UF.UI.form(
  5362. "项目中心",
  5363. $$("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 }), {
  5364. "id": "studentIndex",
  5365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. case "CaseDesignS":
  5373. _formdiv = new U.UF.UI.form(
  5374. "项目进展",
  5375. $$("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 }), {
  5376. "id": "case",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. _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); } }
  5383. break;
  5384. case "tcStudent": //腾讯学生管理
  5385. _formdiv = new U.UF.UI.form(
  5386. "学生管理",
  5387. $$("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 }), {
  5388. "id": "tcStudent",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "tcSchool": //腾讯学校管理
  5397. _formdiv = new U.UF.UI.form(
  5398. "学校管理",
  5399. $$("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 }), {
  5400. "id": "tcSchool",
  5401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. _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); } }
  5407. break;
  5408. case "tcTeacher": //腾讯学校管理
  5409. _formdiv = new U.UF.UI.form(
  5410. "教师管理",
  5411. $$("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 }), {
  5412. "id": "tcTeacher",
  5413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5414. "onresize": function () { }
  5415. }, {
  5416. closecallback: function () { }
  5417. }, { "style": { "height": "36px" } }).form; //创建窗体
  5418. _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); } }
  5419. break;
  5420. case "tcData": //腾讯我的资料
  5421. _formdiv = new U.UF.UI.form(
  5422. "我的资料",
  5423. $$("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 }), {
  5424. "id": "tcData",
  5425. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. _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); } }
  5431. break;
  5432. case "tcNotice": //腾讯消息通知
  5433. _formdiv = new U.UF.UI.form(
  5434. "消息通知",
  5435. $$("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 }), {
  5436. "id": "tcNotice",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _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); } }
  5443. break;
  5444. case "myReport": //好友打开
  5445. _formdiv = new U.UF.UI.form(
  5446. "我的评价",
  5447. $$("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 }), {
  5448. "id": "myReport",
  5449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. _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); } }
  5455. break;
  5456. case "learnAna": //好友打开
  5457. _formdiv = new U.UF.UI.form(
  5458. "学习分析",
  5459. $$("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 }), {
  5460. "id": "learnAna",
  5461. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "AIChat": //AI共创
  5469. _formdiv = new U.UF.UI.form(
  5470. "AI共创",
  5471. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5472. "id": "AIChat",
  5473. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. istop: true,
  5477. closecallback: function () { $("#aichat_icon").remove(); },
  5478. narrowcallback: function () {
  5479. if (!$("#aichat_icon")[0]) {
  5480. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5481. }
  5482. },
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. _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); } }
  5485. break;
  5486. case "ainew": //AI共创
  5487. _formdiv = new U.UF.UI.form(
  5488. "AI协同",
  5489. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5490. "id": "ainew",
  5491. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5497. break;
  5498. case "gpt4": //gpt4
  5499. _formdiv = new U.UF.UI.form(
  5500. "AI助手",
  5501. $$("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 }), {
  5502. "id": "gpt4",
  5503. "style": { "width": "100%", "height": "100%", "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/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5509. break;
  5510. case "aigpt": //gpt4
  5511. _formdiv = new U.UF.UI.form(
  5512. "AI助手+",
  5513. $$("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 }), {
  5514. "id": "aigpt",
  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/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5521. break;
  5522. case "futureClass": //AI共创
  5523. _formdiv = new U.UF.UI.form(
  5524. "协同建构",
  5525. $$("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
  5526. "id": "synergyCourse",
  5527. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5528. "onresize": function () { }
  5529. }, {
  5530. closecallback: function () {
  5531. $("iframe", _formdiv)[0].contentWindow.loginout();
  5532. }
  5533. }, { "style": { "height": "36px" } }).form; //创建窗体
  5534. _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); } }
  5535. break;
  5536. case "aiagent": //ai agent
  5537. _formdiv = new U.UF.UI.form(
  5538. "AI Agent",
  5539. $$("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" }), {
  5540. "id": "AIAgent",
  5541. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "dataBoard": //数据看板
  5549. _formdiv = new U.UF.UI.form(
  5550. "数据看板",
  5551. $$("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 }), {
  5552. "id": "dataBoard",
  5553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "dataBoardSies": //数据融合
  5561. _formdiv = new U.UF.UI.form(
  5562. "数据融合",
  5563. $$("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 }), {
  5564. "id": "dataBoardSies",
  5565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "dataBoardNew": //数据看板
  5573. _formdiv = new U.UF.UI.form(
  5574. "综合看板",
  5575. $$("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 }), {
  5576. "id": "dataBoardNew",
  5577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "dataBoardTest": //数据看板
  5585. _formdiv = new U.UF.UI.form(
  5586. "评测看板",
  5587. $$("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 }), {
  5588. "id": "dataBoardTest",
  5589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "AIAnalyse": //AI共创
  5597. _formdiv = new U.UF.UI.form(
  5598. "AI分析",
  5599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5600. "id": "AIAnalyse",
  5601. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "studioCourse": //AI共创
  5609. _formdiv = new U.UF.UI.form(
  5610. "工作管理",
  5611. $$("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 }), {
  5612. "id": "studioCourse",
  5613. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "studioIndex": //AI共创
  5621. _formdiv = new U.UF.UI.form(
  5622. "工作中心",
  5623. $$("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 }), {
  5624. "id": "studioIndex",
  5625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "source":
  5633. _formdiv = new U.UF.UI.form(
  5634. "教学资源",
  5635. $$("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 }), {
  5636. "id": "source",
  5637. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. case "testTeacher":
  5645. _formdiv = new U.UF.UI.form(
  5646. "教师管理",
  5647. $$("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 }), {
  5648. "id": "testTeacher",
  5649. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "testStudent":
  5657. _formdiv = new U.UF.UI.form(
  5658. "教师中心",
  5659. $$("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 }), {
  5660. "id": "testStudent",
  5661. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "testTeacherSies":
  5669. _formdiv = new U.UF.UI.form(
  5670. "教师管理",
  5671. $$("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 }), {
  5672. "id": "testTeacherSies",
  5673. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "testStudentSies":
  5681. _formdiv = new U.UF.UI.form(
  5682. "教师中心",
  5683. $$("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 }), {
  5684. "id": "testStudentSies",
  5685. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. case "ytpbl": //消息通知
  5693. _formdiv = new U.UF.UI.form(
  5694. "案例征集",
  5695. $$("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 }), {
  5696. "id": "ytpbl",
  5697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. _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); } }
  5703. // 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");
  5704. break;
  5705. case "aiCourseResource": //人工智能窗体
  5706. _formdiv = new U.UF.UI.form(
  5707. false,
  5708. $$("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 }), {
  5709. "id": "aiCourseResource",
  5710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5711. "onresize": function () { },
  5712. "isdrag": false,
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _taskbar = ''
  5717. break;
  5718. case "szdjgCocooroboX": //图形化编程
  5719. _formdiv = new U.UF.UI.form(
  5720. "图形化编程",
  5721. $$("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" }), {
  5722. "id": "szdjgCocooroboX",
  5723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _taskbar = ''
  5729. break;
  5730. case "szdjgPython": //python编程
  5731. _formdiv = new U.UF.UI.form(
  5732. "Python编程",
  5733. $$("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" }), {
  5734. "id": "szdjgPython",
  5735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _taskbar = ''
  5741. break;
  5742. case "Record":
  5743. _formdiv = new U.UF.UI.form(
  5744. "观察记录",
  5745. $$("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 }), {
  5746. "id": "Record",
  5747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. case "aigptCourse":
  5755. _formdiv = new U.UF.UI.form(
  5756. "AI智能体",
  5757. $$("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' }), {
  5758. "id": "aigptCourse",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "classroomObservation":
  5767. _formdiv = new U.UF.UI.form(
  5768. "课堂观察",
  5769. $$("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 }), {
  5770. "id": "classroomObservation",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _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); } }
  5777. break;
  5778. case "pblCourse":
  5779. _formdiv = new U.UF.UI.form(
  5780. "学生PBL",
  5781. $$("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 }), {
  5782. "id": "pblCourse",
  5783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. }
  5791. //U.MD.D.I.openClick(str);
  5792. //如果有任务栏信息
  5793. if (_taskbar) {
  5794. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5795. }
  5796. }
  5797. // U.MD.D.I.openClick = function(str){
  5798. // var click = '';
  5799. // switch(str){
  5800. // case 'friend':
  5801. // click = '我的好友';
  5802. // break;
  5803. // case 'domain':
  5804. // click = '域名管理';
  5805. // break;
  5806. // case 'disk':
  5807. // click = '我的云盘';
  5808. // break;
  5809. // case 'word':
  5810. // click = 'Word';
  5811. // break;
  5812. // case 'excel':
  5813. // click = 'Execl';
  5814. // break;
  5815. // case 'txt':
  5816. // click = '文本文件';
  5817. // break;
  5818. // case 'lookupFriend':
  5819. // click = '查找好友';
  5820. // break;
  5821. // case 'ftp':
  5822. // click = 'FTP';
  5823. // break;
  5824. // case 'group':
  5825. // click = '群组';
  5826. // break;
  5827. // case 'set':
  5828. // click = '我的设置';
  5829. // break;
  5830. // case 'systemSet':
  5831. // click = '系统设置';
  5832. // break;
  5833. // case 'boomYun':
  5834. // click = '互联办公';
  5835. // break;
  5836. // case 'xz':
  5837. // click = '云端下载';
  5838. // break;
  5839. // case 'client':
  5840. // click = '有思浏览器';
  5841. // break;
  5842. // case 'backEndProgramming':
  5843. // click = '在线后台编程';
  5844. // break;
  5845. // case 'frontEndProgramming':
  5846. // click = '在线前端编程';
  5847. // break;
  5848. // default: break;
  5849. // }
  5850. // if(U.MD.D.I.Ip && click){
  5851. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5852. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5853. // })
  5854. // }
  5855. // }
  5856. /**
  5857. *函数作用:ajax简易函数,使用post格式
  5858. *@param url {data} 后台地址
  5859. *@param data {data} 参数json
  5860. *@param fn {data} 回调函数
  5861. *
  5862. */
  5863. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5864. // var xhr = new XMLHttpRequest();
  5865. // xhr.open("GET",url,true);
  5866. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5867. // xhr.onreadystatechange = function(){
  5868. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5869. // fn.call(this,xhr.responseText);
  5870. // }
  5871. // };
  5872. // xhr.send();
  5873. // }
  5874. /*判断是否是内网IP*/
  5875. // U.MD.D.I.isInnerIPFn = function(str){
  5876. // var curPageUrl = str;
  5877. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5878. // curPageUrl =curPageUrl.replace(reg1,'');
  5879. // // console.log('curPageUrl-1 '+curPageUrl);
  5880. // var reg2 = /\:+/g;//替换冒号为一点
  5881. // curPageUrl =curPageUrl.replace(reg2,'.');
  5882. // // console.log('curPageUrl-2 '+curPageUrl);
  5883. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5884. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5885. // if(curPageUrl[2] != '16'){
  5886. // return ipAddress;
  5887. // }else{
  5888. // return false;
  5889. // }
  5890. // }
  5891. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5892. // //compatibility for firefox and chrome
  5893. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5894. // var pc = new myPeerConnection({
  5895. // iceServers: []
  5896. // }),
  5897. // noop = function() {},
  5898. // localIPs = {},
  5899. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5900. // key;
  5901. // function iterateIP(ip) {
  5902. // if (!localIPs[ip]) onNewIP(ip);
  5903. // localIPs[ip] = true;
  5904. // }
  5905. // //create a bogus data channel
  5906. // pc.createDataChannel("");
  5907. // // create offer and set local description
  5908. // pc.createOffer().then(function(sdp) {
  5909. // sdp.sdp.split('\n').forEach(function(line) {
  5910. // if (line.indexOf('candidate') < 0) return;
  5911. // line.match(ipRegex).forEach(iterateIP);
  5912. // });
  5913. // pc.setLocalDescription(sdp, noop, noop);
  5914. // }).catch(function(reason) {
  5915. // // An error occurred, so handle the failure to connect
  5916. // });
  5917. // //sten for candidate events
  5918. // pc.onicecandidate = function(ice) {
  5919. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5920. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5921. // };
  5922. // }
  5923. // U.MD.D.I.getUserIpBool = function(callback){
  5924. // U.MD.D.I.getUserIP(function(ip){
  5925. // alert("Got IP! :" + ip);
  5926. // });
  5927. //}
  5928. //#endregion
  5929. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5930. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5931. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5932. _userinfo = US.userInfo, //登录用户信息
  5933. _userid = US.userInfo.userid //登录用户id
  5934. let _iframe;
  5935. let _cid = cid,
  5936. _stage = stage,
  5937. _task = task,
  5938. _tool = tool;
  5939. var _jie = $$("div", {
  5940. "style": {
  5941. "position": "absolute",
  5942. "bottom": "50px",
  5943. "right": "50px",
  5944. "zIndex": "9999",
  5945. "backgroundColor": "#2268bc",
  5946. "color": "#fff",
  5947. "padding": "12px 20px",
  5948. "cursor": "pointer",
  5949. "borderRadius": "4px",
  5950. },
  5951. "innerHTML": "提交作业"
  5952. })
  5953. let aTool = ''
  5954. let _loading = document.createElement('div')
  5955. _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;"
  5956. // _loading.id = "";
  5957. let _lchild = document.createElement('div')
  5958. let _limg = document.createElement('img')
  5959. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5960. _limg.style = "width: 26px;margin-right: 10px;"
  5961. _lchild.appendChild(_limg)
  5962. let _lspan = document.createElement('span')
  5963. _lspan.innerHTML = "上传中..."
  5964. _lchild.appendChild(_lspan)
  5965. _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%);"
  5966. _loading.appendChild(_lchild)
  5967. var _box = $$('div', {
  5968. "style": {
  5969. "position": "relative",
  5970. "width": "100%",
  5971. "height": "100%",
  5972. },
  5973. })
  5974. _box.appendChild(_loading)
  5975. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5976. switch (str) {
  5977. case "whiteboard":
  5978. aTool = 1;
  5979. _iframe = $$("iframe", {
  5980. "frameborder": "no",
  5981. "border": "0",
  5982. "scrolling ": "no",
  5983. "style": {
  5984. "cssText": "border:0;width:100%;height:100%"
  5985. },
  5986. "src": "https://beta.iwb.cocorobo.cn/"
  5987. })
  5988. _box.appendChild(_iframe);
  5989. _box.appendChild(_jie);
  5990. _formdiv = new U.UF.UI.form(
  5991. "电子白板",
  5992. _box, {
  5993. "id": "whiteboard" + cid + stage + task + tool,
  5994. "style": {
  5995. "width": "90%",
  5996. "height": "90%",
  5997. "overflow": 'hidden'
  5998. },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, {
  6003. "style": {
  6004. "height": "36px"
  6005. }
  6006. }).form; //创建窗体
  6007. _taskbar = {
  6008. "id": str + _formdiv.id,
  6009. "style": {
  6010. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6011. },
  6012. "name": "电子白板",
  6013. "forms": _formdiv,
  6014. "click": function () {
  6015. U.MD.D.I.openApplication(str, obj, info);
  6016. }
  6017. }
  6018. break;
  6019. case "mind":
  6020. aTool = 3;
  6021. _iframe = $$("iframe", {
  6022. "frameborder": "no",
  6023. "border": "0",
  6024. "scrolling ": "no",
  6025. "style": {
  6026. "cssText": "border:0;width:100%;height:100%"
  6027. },
  6028. "src": "/kityminder-editor/dist/index.html"
  6029. })
  6030. _box.appendChild(_iframe);
  6031. _box.appendChild(_jie);
  6032. _formdiv = new U.UF.UI.form(
  6033. "思维导图",
  6034. _box, { //"/jsmind/example/demo.html"
  6035. "id": "mind" + cid + stage + task + tool,
  6036. "style": {
  6037. "width": "90%",
  6038. "height": "90%",
  6039. "overflow": 'hidden'
  6040. },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, {
  6045. "style": {
  6046. "height": "36px"
  6047. }
  6048. }).form; //创建窗体
  6049. _taskbar = {
  6050. "id": str + _formdiv.id,
  6051. "style": {
  6052. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6053. },
  6054. "name": "思维导图",
  6055. "forms": _formdiv,
  6056. "click": function () {
  6057. U.MD.D.I.openApplication(str, obj, info);
  6058. }
  6059. }
  6060. break;
  6061. case "MindMap":
  6062. aTool = 3;
  6063. _iframe = $$("iframe", {
  6064. "frameborder": "no",
  6065. "border": "0",
  6066. "scrolling ": "no",
  6067. "style": {
  6068. "cssText": "border:0;width:100%;height:100%"
  6069. },
  6070. "src": "//cloud.cocorobo.cn/mind/"
  6071. })
  6072. _box.appendChild(_iframe);
  6073. _box.appendChild(_jie);
  6074. _formdiv = new U.UF.UI.form(
  6075. "思维导图",
  6076. _box, { //"/jsmind/example/demo.html"
  6077. "id": "mind" + cid + stage + task + tool,
  6078. "style": {
  6079. "width": "90%",
  6080. "height": "90%",
  6081. "overflow": 'hidden'
  6082. },
  6083. "onresize": function () { }
  6084. }, {
  6085. closecallback: function () { }
  6086. }, {
  6087. "style": {
  6088. "height": "36px"
  6089. }
  6090. }).form; //创建窗体
  6091. _taskbar = {
  6092. "id": str + _formdiv.id,
  6093. "style": {
  6094. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6095. },
  6096. "name": "思维导图",
  6097. "forms": _formdiv,
  6098. "click": function () {
  6099. U.MD.D.I.openApplication(str, obj, info);
  6100. }
  6101. }
  6102. break;
  6103. case "doc":
  6104. aTool = 6;
  6105. _iframe = $$("iframe", {
  6106. "frameborder": "no",
  6107. "border": "0",
  6108. "scrolling ": "no",
  6109. "style": {
  6110. "cssText": "border:0;width:100%;height:100%"
  6111. },
  6112. "src": "/Office/Word/WordEditArea.htm"
  6113. })
  6114. _box.appendChild(_iframe);
  6115. _box.appendChild(_jie);
  6116. _formdiv = new U.UF.UI.form(
  6117. "协同文档",
  6118. _box, {
  6119. "id": "doc" + cid + stage + task + tool,
  6120. "style": {
  6121. "width": "90%",
  6122. "height": "90%",
  6123. "overflow": 'hidden'
  6124. },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, {
  6129. "style": {
  6130. "height": "36px"
  6131. }
  6132. }).form; //创建窗体
  6133. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6134. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6135. })
  6136. _taskbar = {
  6137. "id": str + _formdiv.id,
  6138. "style": {
  6139. "backgroundImage": "url(/img/icon/doc.png)"
  6140. },
  6141. "name": "协同文档",
  6142. "forms": _formdiv,
  6143. "click": function () {
  6144. U.MD.D.I.openApplication(str, obj, info);
  6145. }
  6146. }
  6147. break;
  6148. case "mindNetwork": //好友打开
  6149. aTool = 7;
  6150. _iframe = $$("iframe", {
  6151. "webkitallowfullscreen": "",
  6152. "mozallowfullscreen": "",
  6153. "allowfullscreen": "",
  6154. "frameborder": "no",
  6155. "border": "0",
  6156. "scrolling ": "no",
  6157. "style": {
  6158. "cssText": "border:0; width:100%; height:100%;"
  6159. },
  6160. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6161. })
  6162. _box.appendChild(_iframe);
  6163. _box.appendChild(_jie);
  6164. _formdiv = new U.UF.UI.form(
  6165. "思维网格",
  6166. _box, {
  6167. "id": "mindNetwork" + cid + stage + task + tool,
  6168. "style": {
  6169. "width": "90%",
  6170. "height": "90%",
  6171. "overflow": 'hidden'
  6172. },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, {
  6177. "style": {
  6178. "height": "36px"
  6179. }
  6180. }).form; //创建窗体
  6181. _taskbar = {
  6182. "id": str + _formdiv.id,
  6183. "style": {
  6184. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6185. },
  6186. "name": "思维网格",
  6187. "forms": _formdiv,
  6188. "click": function () {
  6189. U.MD.D.I.openApplication(str, obj, info);
  6190. }
  6191. }
  6192. break;
  6193. case "courseDesign":
  6194. _iframe = $$("iframe", {
  6195. "webkitallowfullscreen": "",
  6196. "mozallowfullscreen": "",
  6197. "allowfullscreen": "",
  6198. "frameborder": "no",
  6199. "border": "0",
  6200. "scrolling ": "no",
  6201. "style": {
  6202. "cssText": "border:0; width:100%; height:100%;"
  6203. },
  6204. "src": "/course-design-vue"
  6205. })
  6206. _box.appendChild(_iframe);
  6207. _box.appendChild(_jie);
  6208. _formdiv = new U.UF.UI.form(
  6209. "项目设计",
  6210. _box, {
  6211. "id": "courseDesign" + cid + stage + task + tool,
  6212. "style": {
  6213. "width": "90%",
  6214. "height": "90%",
  6215. "overflow": 'hidden'
  6216. },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, {
  6221. "style": {
  6222. "height": "36px"
  6223. }
  6224. }).form; //创建窗体
  6225. _taskbar = {
  6226. "id": str + _formdiv.id,
  6227. "style": {
  6228. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6229. },
  6230. "name": "项目设计",
  6231. "forms": _formdiv,
  6232. "click": function () {
  6233. U.MD.D.I.openApplication(str, obj, info);
  6234. }
  6235. }
  6236. break;
  6237. }
  6238. const script1 = document.createElement("script");
  6239. script1.type = "text/javascript";
  6240. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6241. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6242. const script2 = document.createElement("script");
  6243. script2.type = "text/javascript";
  6244. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6245. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6246. const script3 = document.createElement("script");
  6247. script3.type = "text/javascript";
  6248. script3.charset = "UTF-8";
  6249. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6250. const script4 = document.createElement("script");
  6251. script4.type = "text/javascript";
  6252. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6253. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6254. if (_iframe) {
  6255. if (str == 'doc') {
  6256. _iframe = _formdiv.querySelector('iframe')
  6257. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6258. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6259. _iframe.contentWindow.document.body.appendChild(script1);
  6260. _iframe.contentWindow.document.body.appendChild(script2);
  6261. // _iframe.contentWindow.document.body.appendChild(script3);
  6262. _iframe.contentWindow.document.body.appendChild(script4);
  6263. })
  6264. if (onloadListener) {
  6265. _iframe.contentDocument.location.reload()
  6266. } else {
  6267. _iframe.contentDocument.location.reload()
  6268. }
  6269. } else if (str == 'courseDesign') {
  6270. U.UF.DL.iframeLoad(_iframe, function () {
  6271. // _iframe.contentWindow.U.MD.O.W.load();
  6272. // _iframe.contentWindow.document.body.appendChild(script1);
  6273. _iframe.contentWindow.document.body.appendChild(script2);
  6274. _iframe.contentWindow.document.body.appendChild(script4);
  6275. })
  6276. } else if (str == 'mind') {
  6277. _iframe = _formdiv.querySelector('iframe')
  6278. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6279. //
  6280. _iframe.contentWindow.document.body.appendChild(script1);
  6281. _iframe.contentWindow.document.body.appendChild(script2);
  6282. _iframe.contentWindow.document.body.appendChild(script4);
  6283. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6284. })
  6285. if (onloadListener) {
  6286. _iframe.contentDocument.location.reload()
  6287. } else {
  6288. _iframe.contentDocument.location.reload()
  6289. }
  6290. } else if (str == 'whiteboard') {
  6291. _iframe = _formdiv.querySelector('iframe')
  6292. let onloadListener = _iframe.onload = () => {
  6293. _iframe.contentWindow.document.body.appendChild(script1);
  6294. _iframe.contentWindow.document.body.appendChild(script2);
  6295. _iframe.contentWindow.document.body.appendChild(script4);
  6296. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6297. };
  6298. // if (onloadListener) {
  6299. // try {
  6300. // _iframe.src += "?cocorobo="+new Date().getTime()
  6301. // _iframe.contentWindow.document.location.reload()
  6302. // } catch (error) {
  6303. // }
  6304. // } else {
  6305. // _iframe.contentDocument.location.reload()
  6306. // }
  6307. } else {
  6308. _iframe.onload = () => {
  6309. _iframe.contentWindow.document.body.appendChild(script1);
  6310. _iframe.contentWindow.document.body.appendChild(script2);
  6311. // _iframe.contentWindow.document.body.appendChild(script3);
  6312. _iframe.contentWindow.document.body.appendChild(script4);
  6313. };
  6314. }
  6315. _jie.onclick = async () => {
  6316. let text = ''
  6317. if (aTool == 1) {
  6318. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6319. } else if (aTool == 6) {
  6320. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6321. } else if (aTool == 3) {
  6322. text = await U.MD.D.I.getEditorContent(_iframe);
  6323. }
  6324. _loading.style.display = 'flex'
  6325. console.log(_loading);
  6326. var _ajs = _iframe.contentWindow.document.createElement("script");
  6327. _ajs.type = "text/javascript";
  6328. _ajs.innerHTML =
  6329. // 'console.log(' + _loading + ');\n' +
  6330. 'var _js = document.createElement("script");\n' +
  6331. '_js.type="text/javascript";\n' +
  6332. '_js.charset="UTF-8";\n' +
  6333. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6334. "_js.onload = function(){\n" +
  6335. ' var a = document.getElementsByTagName("img")\n' +
  6336. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6337. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6338. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6339. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6340. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6341. "beforeUpload_shishi(file," +
  6342. "'" +
  6343. _userid +
  6344. "'" +
  6345. ", " +
  6346. "'" +
  6347. _cid +
  6348. "'" +
  6349. ", " +
  6350. "'" +
  6351. _stage +
  6352. "'" +
  6353. ", " +
  6354. "'" +
  6355. _task +
  6356. "'" +
  6357. ", " +
  6358. "'" +
  6359. _tool +
  6360. "'" +
  6361. ", " +
  6362. "'" +
  6363. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6364. "'" +
  6365. ", " +
  6366. "'" +
  6367. aTool +
  6368. "'" +
  6369. ", " +
  6370. "`" +
  6371. text +
  6372. "`" +
  6373. ")\n" +
  6374. " });\n" +
  6375. "}\n" +
  6376. "document.head.appendChild(_js);\n";
  6377. _iframe.contentWindow.document.head.appendChild(_ajs);
  6378. }
  6379. }
  6380. //U.MD.D.I.openClick(str);
  6381. //如果有任务栏信息
  6382. // if (_taskbar) {
  6383. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6384. // }
  6385. }
  6386. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6387. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6388. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6389. _userinfo = US.userInfo, //登录用户信息
  6390. _userid = US.userInfo.userid //登录用户id
  6391. let _iframe;
  6392. let _cid = cid,
  6393. _stage = stage,
  6394. _task = task,
  6395. _tool = tool;
  6396. var _jie = $$("div", {
  6397. "style": {
  6398. "position": "absolute",
  6399. "bottom": "50px",
  6400. "right": "50px",
  6401. "zIndex": "9999",
  6402. "backgroundColor": "#2268bc",
  6403. "color": "#fff",
  6404. "padding": "12px 20px",
  6405. "cursor": "pointer",
  6406. "borderRadius": "4px",
  6407. },
  6408. "innerHTML": "提交作业"
  6409. })
  6410. let aTool = ''
  6411. let _loading = document.createElement('div')
  6412. _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;"
  6413. // _loading.id = "";
  6414. let _lchild = document.createElement('div')
  6415. let _limg = document.createElement('img')
  6416. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6417. _limg.style = "width: 26px;margin-right: 10px;"
  6418. _lchild.appendChild(_limg)
  6419. let _lspan = document.createElement('span')
  6420. _lspan.innerHTML = "上传中..."
  6421. _lchild.appendChild(_lspan)
  6422. _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%);"
  6423. _loading.appendChild(_lchild)
  6424. let _box = $$('div', {
  6425. "style": {
  6426. "position": "relative",
  6427. "width": "100%",
  6428. "height": "100%",
  6429. },
  6430. })
  6431. _box.appendChild(_loading)
  6432. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6433. switch (str) {
  6434. case "whiteboard":
  6435. aTool = 1;
  6436. _iframe = $$("iframe", {
  6437. "frameborder": "no",
  6438. "border": "0",
  6439. "scrolling ": "no",
  6440. "style": {
  6441. "cssText": "border:0;width:100%;height:100%"
  6442. },
  6443. "src": "https://beta.iwb.cocorobo.cn/"
  6444. })
  6445. _box.appendChild(_iframe);
  6446. _box.appendChild(_jie);
  6447. _formdiv = new U.UF.UI.form(
  6448. "电子白板",
  6449. _box, {
  6450. "id": "whiteboard" + cid + stage + task + tool,
  6451. "style": {
  6452. "width": "90%",
  6453. "height": "90%",
  6454. "overflow": 'hidden'
  6455. },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, {
  6460. "style": {
  6461. "height": "36px"
  6462. }
  6463. }).form; //创建窗体
  6464. _taskbar = {
  6465. "id": str + _formdiv.id,
  6466. "style": {
  6467. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6468. },
  6469. "name": "电子白板",
  6470. "forms": _formdiv,
  6471. "click": function () {
  6472. U.MD.D.I.openApplication(str, obj, info);
  6473. }
  6474. }
  6475. break;
  6476. case "mind":
  6477. aTool = 3;
  6478. _iframe = $$("iframe", {
  6479. "frameborder": "no",
  6480. "border": "0",
  6481. "scrolling ": "no",
  6482. "style": {
  6483. "cssText": "border:0;width:100%;height:100%"
  6484. },
  6485. "src": "/kityminder-editor/dist/index.html"
  6486. })
  6487. _box.appendChild(_iframe);
  6488. _box.appendChild(_jie);
  6489. _formdiv = new U.UF.UI.form(
  6490. "思维导图",
  6491. _box, { //"/jsmind/example/demo.html"
  6492. "id": "mind" + cid + stage + task + tool,
  6493. "style": {
  6494. "width": "90%",
  6495. "height": "90%",
  6496. "overflow": 'hidden'
  6497. },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, {
  6502. "style": {
  6503. "height": "36px"
  6504. }
  6505. }).form; //创建窗体
  6506. _taskbar = {
  6507. "id": str + _formdiv.id,
  6508. "style": {
  6509. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6510. },
  6511. "name": "思维导图",
  6512. "forms": _formdiv,
  6513. "click": function () {
  6514. U.MD.D.I.openApplication(str, obj, info);
  6515. }
  6516. }
  6517. break;
  6518. case "MindMap":
  6519. aTool = 3;
  6520. _iframe = $$("iframe", {
  6521. "frameborder": "no",
  6522. "border": "0",
  6523. "scrolling ": "no",
  6524. "style": {
  6525. "cssText": "border:0;width:100%;height:100%"
  6526. },
  6527. "src": "//cloud.cocorobo.cn/mind/"
  6528. })
  6529. _box.appendChild(_iframe);
  6530. _box.appendChild(_jie);
  6531. _formdiv = new U.UF.UI.form(
  6532. "思维导图",
  6533. _box, { //"/jsmind/example/demo.html"
  6534. "id": "mind" + cid + stage + task + tool,
  6535. "style": {
  6536. "width": "90%",
  6537. "height": "90%",
  6538. "overflow": 'hidden'
  6539. },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, {
  6544. "style": {
  6545. "height": "36px"
  6546. }
  6547. }).form; //创建窗体
  6548. _taskbar = {
  6549. "id": str + _formdiv.id,
  6550. "style": {
  6551. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6552. },
  6553. "name": "思维导图",
  6554. "forms": _formdiv,
  6555. "click": function () {
  6556. U.MD.D.I.openApplication(str, obj, info);
  6557. }
  6558. }
  6559. break;
  6560. case "doc":
  6561. aTool = 6;
  6562. _iframe = $$("iframe", {
  6563. "frameborder": "no",
  6564. "border": "0",
  6565. "scrolling ": "no",
  6566. "style": {
  6567. "cssText": "border:0;width:100%;height:100%"
  6568. },
  6569. "src": "/Office/Word/WordEditArea.htm"
  6570. })
  6571. _box.appendChild(_iframe);
  6572. _box.appendChild(_jie);
  6573. _formdiv = new U.UF.UI.form(
  6574. "协同文档",
  6575. _box, {
  6576. "id": "doc" + cid + stage + task + tool,
  6577. "style": {
  6578. "width": "90%",
  6579. "height": "90%",
  6580. "overflow": 'hidden'
  6581. },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, {
  6586. "style": {
  6587. "height": "36px"
  6588. }
  6589. }).form; //创建窗体
  6590. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6591. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6592. })
  6593. _taskbar = {
  6594. "id": str + _formdiv.id,
  6595. "style": {
  6596. "backgroundImage": "url(/img/icon/doc.png)"
  6597. },
  6598. "name": "协同文档",
  6599. "forms": _formdiv,
  6600. "click": function () {
  6601. U.MD.D.I.openApplication(str, obj, info);
  6602. }
  6603. }
  6604. break;
  6605. case "mindNetwork": //好友打开
  6606. aTool = 7;
  6607. _iframe = $$("iframe", {
  6608. "webkitallowfullscreen": "",
  6609. "mozallowfullscreen": "",
  6610. "allowfullscreen": "",
  6611. "frameborder": "no",
  6612. "border": "0",
  6613. "scrolling ": "no",
  6614. "style": {
  6615. "cssText": "border:0; width:100%; height:100%;"
  6616. },
  6617. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6618. })
  6619. _box.appendChild(_iframe);
  6620. _box.appendChild(_jie);
  6621. _formdiv = new U.UF.UI.form(
  6622. "思维网格",
  6623. _box, {
  6624. "id": "mindNetwork" + cid + stage + task + tool,
  6625. "style": {
  6626. "width": "90%",
  6627. "height": "90%",
  6628. "overflow": 'hidden'
  6629. },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, {
  6634. "style": {
  6635. "height": "36px"
  6636. }
  6637. }).form; //创建窗体
  6638. _taskbar = {
  6639. "id": str + _formdiv.id,
  6640. "style": {
  6641. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6642. },
  6643. "name": "思维网格",
  6644. "forms": _formdiv,
  6645. "click": function () {
  6646. U.MD.D.I.openApplication(str, obj, info);
  6647. }
  6648. }
  6649. break;
  6650. case "courseDesign":
  6651. _iframe = $$("iframe", {
  6652. "webkitallowfullscreen": "",
  6653. "mozallowfullscreen": "",
  6654. "allowfullscreen": "",
  6655. "frameborder": "no",
  6656. "border": "0",
  6657. "scrolling ": "no",
  6658. "style": {
  6659. "cssText": "border:0; width:100%; height:100%;"
  6660. },
  6661. "src": "/course-design-vue"
  6662. })
  6663. _box.appendChild(_iframe);
  6664. _box.appendChild(_jie);
  6665. _formdiv = new U.UF.UI.form(
  6666. "项目设计",
  6667. _box, {
  6668. "id": "courseDesign" + cid + stage + task + tool,
  6669. "style": {
  6670. "width": "90%",
  6671. "height": "90%",
  6672. "overflow": 'hidden'
  6673. },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () { }
  6677. }, {
  6678. "style": {
  6679. "height": "36px"
  6680. }
  6681. }).form; //创建窗体
  6682. _taskbar = {
  6683. "id": str + _formdiv.id,
  6684. "style": {
  6685. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6686. },
  6687. "name": "项目设计",
  6688. "forms": _formdiv,
  6689. "click": function () {
  6690. U.MD.D.I.openApplication(str, obj, info);
  6691. }
  6692. }
  6693. break;
  6694. }
  6695. const script1 = document.createElement("script");
  6696. script1.type = "text/javascript";
  6697. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6698. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6699. const script2 = document.createElement("script");
  6700. script2.type = "text/javascript";
  6701. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6702. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6703. const script3 = document.createElement("script");
  6704. script3.type = "text/javascript";
  6705. script3.charset = "UTF-8";
  6706. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6707. const script4 = document.createElement("script");
  6708. script4.type = "text/javascript";
  6709. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6710. script4.src = window.origin + "/js/Common/jietu2E.js";
  6711. if (_iframe) {
  6712. if (str == 'doc') {
  6713. _iframe = _formdiv.querySelector('iframe')
  6714. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6715. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6716. _iframe.contentWindow.document.body.appendChild(script1);
  6717. _iframe.contentWindow.document.body.appendChild(script2);
  6718. // _iframe.contentWindow.document.body.appendChild(script3);
  6719. _iframe.contentWindow.document.body.appendChild(script4);
  6720. })
  6721. if (onloadListener) {
  6722. _iframe.contentDocument.location.reload()
  6723. } else {
  6724. _iframe.contentDocument.location.reload()
  6725. }
  6726. } else if (str == 'courseDesign') {
  6727. U.UF.DL.iframeLoad(_iframe, function () {
  6728. // _iframe.contentWindow.U.MD.O.W.load();
  6729. // _iframe.contentWindow.document.body.appendChild(script1);
  6730. _iframe.contentWindow.document.body.appendChild(script2);
  6731. _iframe.contentWindow.document.body.appendChild(script4);
  6732. })
  6733. } else if (str == 'mind') {
  6734. _iframe = _formdiv.querySelector('iframe')
  6735. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6736. //
  6737. _iframe.contentWindow.document.body.appendChild(script1);
  6738. _iframe.contentWindow.document.body.appendChild(script2);
  6739. _iframe.contentWindow.document.body.appendChild(script4);
  6740. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6741. })
  6742. if (onloadListener) {
  6743. _iframe.contentDocument.location.reload()
  6744. } else {
  6745. _iframe.contentDocument.location.reload()
  6746. }
  6747. } else if (str == 'whiteboard') {
  6748. _iframe = _formdiv.querySelector('iframe')
  6749. let onloadListener = _iframe.onload = () => {
  6750. _iframe.contentWindow.document.body.appendChild(script1);
  6751. _iframe.contentWindow.document.body.appendChild(script2);
  6752. _iframe.contentWindow.document.body.appendChild(script4);
  6753. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6754. };
  6755. // if (onloadListener) {
  6756. // try {
  6757. // _iframe.src += "?cocorobo="+new Date().getTime()
  6758. // _iframe.contentWindow.document.location.reload()
  6759. // } catch (error) {
  6760. // }
  6761. // } else {
  6762. // _iframe.contentDocument.location.reload()
  6763. // }
  6764. } else {
  6765. _iframe.onload = () => {
  6766. _iframe.contentWindow.document.body.appendChild(script1);
  6767. _iframe.contentWindow.document.body.appendChild(script2);
  6768. // _iframe.contentWindow.document.body.appendChild(script3);
  6769. _iframe.contentWindow.document.body.appendChild(script4);
  6770. };
  6771. }
  6772. _jie.onclick = async () => {
  6773. let text = ''
  6774. if (aTool == 1) {
  6775. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6776. } else if (aTool == 6) {
  6777. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6778. } else if (aTool == 3) {
  6779. text = await U.MD.D.I.getEditorContent(_iframe);
  6780. }
  6781. _loading.style.display = 'flex'
  6782. console.log(_loading);
  6783. var _ajs = _iframe.contentWindow.document.createElement("script");
  6784. _ajs.type = "text/javascript";
  6785. _ajs.innerHTML =
  6786. // 'console.log(' + _loading + ');\n' +
  6787. 'var _js = document.createElement("script");\n' +
  6788. '_js.type="text/javascript";\n' +
  6789. '_js.charset="UTF-8";\n' +
  6790. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6791. "_js.onload = function(){\n" +
  6792. ' var a = document.getElementsByTagName("img")\n' +
  6793. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6794. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6795. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6796. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6797. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6798. "beforeUpload_shishi(file," +
  6799. "'" +
  6800. _userid +
  6801. "'" +
  6802. ", " +
  6803. "'" +
  6804. _cid +
  6805. "'" +
  6806. ", " +
  6807. "'" +
  6808. _stage +
  6809. "'" +
  6810. ", " +
  6811. "'" +
  6812. _task +
  6813. "'" +
  6814. ", " +
  6815. "'" +
  6816. _tool +
  6817. "'" +
  6818. ", " +
  6819. "'" +
  6820. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6821. "'" +
  6822. ", " +
  6823. "'" +
  6824. aTool +
  6825. "'" +
  6826. ", " +
  6827. "`" +
  6828. text +
  6829. "`" +
  6830. ")\n" +
  6831. " });\n" +
  6832. "}\n" +
  6833. "document.head.appendChild(_js);\n";
  6834. _iframe.contentWindow.document.head.appendChild(_ajs);
  6835. }
  6836. }
  6837. //U.MD.D.I.openClick(str);
  6838. //如果有任务栏信息
  6839. // if (_taskbar) {
  6840. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6841. // }
  6842. }
  6843. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6844. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6845. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6846. _userid = student.userid, //登录用户id
  6847. _username = student.student //用户名字
  6848. let _iframe;
  6849. let _cid = cid,
  6850. _stage = stage,
  6851. _task = task,
  6852. _tool = tool;
  6853. var _jie = $$("div", {
  6854. "style": {
  6855. "position": "absolute",
  6856. "bottom": "50px",
  6857. "right": "50px",
  6858. "zIndex": "9999",
  6859. "backgroundColor": "#2268bc",
  6860. "color": "#fff",
  6861. "padding": "12px 20px",
  6862. "cursor": "pointer",
  6863. "borderRadius": "4px",
  6864. },
  6865. "innerHTML": "提交作业"
  6866. })
  6867. let aTool = ''
  6868. let _loading = document.createElement('div')
  6869. _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;"
  6870. // _loading.id = "";
  6871. let _lchild = document.createElement('div')
  6872. let _limg = document.createElement('img')
  6873. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6874. _limg.style = "width: 26px;margin-right: 10px;"
  6875. _lchild.appendChild(_limg)
  6876. let _lspan = document.createElement('span')
  6877. _lspan.innerHTML = "上传中..."
  6878. _lchild.appendChild(_lspan)
  6879. _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%);"
  6880. _loading.appendChild(_lchild)
  6881. var _box = $$('div', {
  6882. "style": {
  6883. "position": "relative",
  6884. "width": "100%",
  6885. "height": "100%",
  6886. },
  6887. })
  6888. _box.appendChild(_loading)
  6889. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6890. switch (str) {
  6891. case "whiteboard":
  6892. aTool = 1;
  6893. _iframe = $$("iframe", {
  6894. "frameborder": "no",
  6895. "border": "0",
  6896. "scrolling ": "no",
  6897. "style": {
  6898. "cssText": "border:0;width:100%;height:100%"
  6899. },
  6900. "src": "https://beta.iwb.cocorobo.cn/"
  6901. })
  6902. _box.appendChild(_iframe);
  6903. _box.appendChild(_jie);
  6904. _formdiv = new U.UF.UI.form(
  6905. "电子白板-" + _username,
  6906. _box, {
  6907. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6908. "style": {
  6909. "width": "90%",
  6910. "height": "90%",
  6911. "overflow": 'hidden'
  6912. },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, {
  6917. "style": {
  6918. "height": "36px"
  6919. }
  6920. }).form; //创建窗体
  6921. _taskbar = {
  6922. "id": str + _formdiv.id,
  6923. "style": {
  6924. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6925. },
  6926. "name": "电子白板",
  6927. "forms": _formdiv,
  6928. "click": function () {
  6929. U.MD.D.I.openApplication(str, obj, info);
  6930. }
  6931. }
  6932. break;
  6933. case "mind":
  6934. aTool = 3;
  6935. _iframe = $$("iframe", {
  6936. "frameborder": "no",
  6937. "border": "0",
  6938. "scrolling ": "no",
  6939. "style": {
  6940. "cssText": "border:0;width:100%;height:100%"
  6941. },
  6942. "src": "/kityminder-editor/dist/index.html"
  6943. })
  6944. _box.appendChild(_iframe);
  6945. _box.appendChild(_jie);
  6946. _formdiv = new U.UF.UI.form(
  6947. "思维导图-" + _username,
  6948. _box, { //"/jsmind/example/demo.html"
  6949. "id": "mind" + cid + stage + task + tool + _userid,
  6950. "style": {
  6951. "width": "90%",
  6952. "height": "90%",
  6953. "overflow": 'hidden'
  6954. },
  6955. "onresize": function () { }
  6956. }, {
  6957. closecallback: function () { }
  6958. }, {
  6959. "style": {
  6960. "height": "36px"
  6961. }
  6962. }).form; //创建窗体
  6963. _taskbar = {
  6964. "id": str + _formdiv.id,
  6965. "style": {
  6966. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6967. },
  6968. "name": "思维导图",
  6969. "forms": _formdiv,
  6970. "click": function () {
  6971. U.MD.D.I.openApplication(str, obj, info);
  6972. }
  6973. }
  6974. break;
  6975. case "MindMap":
  6976. aTool = 3;
  6977. _iframe = $$("iframe", {
  6978. "frameborder": "no",
  6979. "border": "0",
  6980. "scrolling ": "no",
  6981. "style": {
  6982. "cssText": "border:0;width:100%;height:100%"
  6983. },
  6984. "src": "//cloud.cocorobo.cn/mind/"
  6985. })
  6986. _box.appendChild(_iframe);
  6987. _box.appendChild(_jie);
  6988. _formdiv = new U.UF.UI.form(
  6989. "思维导图-" + _username,
  6990. _box, { //"/jsmind/example/demo.html"
  6991. "id": "mind" + cid + stage + task + tool + _userid,
  6992. "style": {
  6993. "width": "90%",
  6994. "height": "90%",
  6995. "overflow": 'hidden'
  6996. },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, {
  7001. "style": {
  7002. "height": "36px"
  7003. }
  7004. }).form; //创建窗体
  7005. _taskbar = {
  7006. "id": str + _formdiv.id,
  7007. "style": {
  7008. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7009. },
  7010. "name": "思维导图",
  7011. "forms": _formdiv,
  7012. "click": function () {
  7013. U.MD.D.I.openApplication(str, obj, info);
  7014. }
  7015. }
  7016. break;
  7017. case "doc":
  7018. aTool = 6;
  7019. _iframe = $$("iframe", {
  7020. "frameborder": "no",
  7021. "border": "0",
  7022. "scrolling ": "no",
  7023. "style": {
  7024. "cssText": "border:0;width:100%;height:100%"
  7025. },
  7026. "src": "/Office/Word/WordEditArea.htm"
  7027. })
  7028. _box.appendChild(_iframe);
  7029. _box.appendChild(_jie);
  7030. _formdiv = new U.UF.UI.form(
  7031. "协同文档-" + _username,
  7032. _box, {
  7033. "id": "doc" + cid + stage + task + tool + _userid,
  7034. "style": {
  7035. "width": "90%",
  7036. "height": "90%",
  7037. "overflow": 'hidden'
  7038. },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, {
  7043. "style": {
  7044. "height": "36px"
  7045. }
  7046. }).form; //创建窗体
  7047. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7048. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7049. })
  7050. _taskbar = {
  7051. "id": str + _formdiv.id,
  7052. "style": {
  7053. "backgroundImage": "url(/img/icon/doc.png)"
  7054. },
  7055. "name": "协同文档",
  7056. "forms": _formdiv,
  7057. "click": function () {
  7058. U.MD.D.I.openApplication(str, obj, info);
  7059. }
  7060. }
  7061. break;
  7062. case "mindNetwork": //好友打开
  7063. aTool = 7;
  7064. _iframe = $$("iframe", {
  7065. "webkitallowfullscreen": "",
  7066. "mozallowfullscreen": "",
  7067. "allowfullscreen": "",
  7068. "frameborder": "no",
  7069. "border": "0",
  7070. "scrolling ": "no",
  7071. "style": {
  7072. "cssText": "border:0; width:100%; height:100%;"
  7073. },
  7074. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7075. })
  7076. _box.appendChild(_iframe);
  7077. _box.appendChild(_jie);
  7078. _formdiv = new U.UF.UI.form(
  7079. "思维网格-" + _username,
  7080. _box, {
  7081. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7082. "style": {
  7083. "width": "90%",
  7084. "height": "90%",
  7085. "overflow": 'hidden'
  7086. },
  7087. "onresize": function () { }
  7088. }, {
  7089. closecallback: function () { }
  7090. }, {
  7091. "style": {
  7092. "height": "36px"
  7093. }
  7094. }).form; //创建窗体
  7095. _taskbar = {
  7096. "id": str + _formdiv.id,
  7097. "style": {
  7098. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7099. },
  7100. "name": "思维网格",
  7101. "forms": _formdiv,
  7102. "click": function () {
  7103. U.MD.D.I.openApplication(str, obj, info);
  7104. }
  7105. }
  7106. break;
  7107. case "courseDesign":
  7108. _iframe = $$("iframe", {
  7109. "webkitallowfullscreen": "",
  7110. "mozallowfullscreen": "",
  7111. "allowfullscreen": "",
  7112. "frameborder": "no",
  7113. "border": "0",
  7114. "scrolling ": "no",
  7115. "style": {
  7116. "cssText": "border:0; width:100%; height:100%;"
  7117. },
  7118. "src": "/course-design-vue"
  7119. })
  7120. _box.appendChild(_iframe);
  7121. _box.appendChild(_jie);
  7122. _formdiv = new U.UF.UI.form(
  7123. "项目设计-" + _username,
  7124. _box, {
  7125. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7126. "style": {
  7127. "width": "90%",
  7128. "height": "90%",
  7129. "overflow": 'hidden'
  7130. },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, {
  7135. "style": {
  7136. "height": "36px"
  7137. }
  7138. }).form; //创建窗体
  7139. _taskbar = {
  7140. "id": str + _formdiv.id,
  7141. "style": {
  7142. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7143. },
  7144. "name": "项目设计",
  7145. "forms": _formdiv,
  7146. "click": function () {
  7147. U.MD.D.I.openApplication(str, obj, info);
  7148. }
  7149. }
  7150. break;
  7151. }
  7152. const script1 = document.createElement("script");
  7153. script1.type = "text/javascript";
  7154. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7155. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7156. const script2 = document.createElement("script");
  7157. script2.type = "text/javascript";
  7158. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7159. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7160. const script3 = document.createElement("script");
  7161. script3.type = "text/javascript";
  7162. script3.charset = "UTF-8";
  7163. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7164. const script4 = document.createElement("script");
  7165. script4.type = "text/javascript";
  7166. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7167. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7168. if (_iframe) {
  7169. if (str == 'doc') {
  7170. _iframe = _formdiv.querySelector('iframe')
  7171. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7172. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7173. _iframe.contentWindow.document.body.appendChild(script1);
  7174. _iframe.contentWindow.document.body.appendChild(script2);
  7175. // _iframe.contentWindow.document.body.appendChild(script3);
  7176. _iframe.contentWindow.document.body.appendChild(script4);
  7177. })
  7178. if (onloadListener) {
  7179. _iframe.contentDocument.location.reload()
  7180. } else {
  7181. _iframe.contentDocument.location.reload()
  7182. }
  7183. } else if (str == 'courseDesign') {
  7184. U.UF.DL.iframeLoad(_iframe, function () {
  7185. // _iframe.contentWindow.U.MD.O.W.load();
  7186. // _iframe.contentWindow.document.body.appendChild(script1);
  7187. _iframe.contentWindow.document.body.appendChild(script2);
  7188. _iframe.contentWindow.document.body.appendChild(script4);
  7189. })
  7190. } else if (str == 'mind') {
  7191. _iframe = _formdiv.querySelector('iframe')
  7192. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7193. //
  7194. _iframe.contentWindow.document.body.appendChild(script1);
  7195. _iframe.contentWindow.document.body.appendChild(script2);
  7196. _iframe.contentWindow.document.body.appendChild(script4);
  7197. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7198. })
  7199. if (onloadListener) {
  7200. _iframe.contentDocument.location.reload()
  7201. } else {
  7202. _iframe.contentDocument.location.reload()
  7203. }
  7204. } else if (str == 'whiteboard') {
  7205. _iframe = _formdiv.querySelector('iframe')
  7206. let onloadListener = _iframe.onload = () => {
  7207. _iframe.contentWindow.document.body.appendChild(script1);
  7208. _iframe.contentWindow.document.body.appendChild(script2);
  7209. _iframe.contentWindow.document.body.appendChild(script4);
  7210. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7211. };
  7212. // if (onloadListener) {
  7213. // try {
  7214. // _iframe.src += "?cocorobo="+new Date().getTime()
  7215. // _iframe.contentWindow.document.location.reload()
  7216. // } catch (error) {
  7217. // }
  7218. // } else {
  7219. // _iframe.contentDocument.location.reload()
  7220. // }
  7221. } else {
  7222. _iframe.onload = () => {
  7223. _iframe.contentWindow.document.body.appendChild(script1);
  7224. _iframe.contentWindow.document.body.appendChild(script2);
  7225. // _iframe.contentWindow.document.body.appendChild(script3);
  7226. _iframe.contentWindow.document.body.appendChild(script4);
  7227. };
  7228. }
  7229. _jie.onclick = async () => {
  7230. let text = ''
  7231. if (aTool == 1) {
  7232. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7233. } else if (aTool == 6) {
  7234. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7235. } else if (aTool == 3) {
  7236. text = await U.MD.D.I.getEditorContent(_iframe);
  7237. }
  7238. _loading.style.display = 'flex'
  7239. console.log(_loading);
  7240. var _ajs = _iframe.contentWindow.document.createElement("script");
  7241. _ajs.type = "text/javascript";
  7242. _ajs.innerHTML =
  7243. // 'console.log(' + _loading + ');\n' +
  7244. 'var _js = document.createElement("script");\n' +
  7245. '_js.type="text/javascript";\n' +
  7246. '_js.charset="UTF-8";\n' +
  7247. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7248. "_js.onload = function(){\n" +
  7249. ' var a = document.getElementsByTagName("img")\n' +
  7250. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7251. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7252. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7253. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7254. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7255. "beforeUpload_shishi(file," +
  7256. "'" +
  7257. _userid +
  7258. "'" +
  7259. ", " +
  7260. "'" +
  7261. _cid +
  7262. "'" +
  7263. ", " +
  7264. "'" +
  7265. _stage +
  7266. "'" +
  7267. ", " +
  7268. "'" +
  7269. _task +
  7270. "'" +
  7271. ", " +
  7272. "'" +
  7273. _tool +
  7274. "'" +
  7275. ", " +
  7276. "'" +
  7277. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7278. "'" +
  7279. ", " +
  7280. "'" +
  7281. aTool +
  7282. "'" +
  7283. ", " +
  7284. "`" +
  7285. text +
  7286. "`" +
  7287. ")\n" +
  7288. " });\n" +
  7289. "}\n" +
  7290. "document.head.appendChild(_js);\n";
  7291. _iframe.contentWindow.document.head.appendChild(_ajs);
  7292. }
  7293. }
  7294. }
  7295. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7296. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7297. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7298. _userid = student.userid, //登录用户id
  7299. _username = student.student //用户名字
  7300. let _iframe;
  7301. let _cid = cid,
  7302. _stage = stage,
  7303. _task = task,
  7304. _tool = tool;
  7305. var _jie = $$("div", {
  7306. "style": {
  7307. "position": "absolute",
  7308. "bottom": "50px",
  7309. "right": "50px",
  7310. "zIndex": "9999",
  7311. "backgroundColor": "#2268bc",
  7312. "color": "#fff",
  7313. "padding": "12px 20px",
  7314. "cursor": "pointer",
  7315. "borderRadius": "4px",
  7316. },
  7317. "innerHTML": "提交作业"
  7318. })
  7319. let aTool = ''
  7320. let _loading = document.createElement('div')
  7321. _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;"
  7322. // _loading.id = "";
  7323. let _lchild = document.createElement('div')
  7324. let _limg = document.createElement('img')
  7325. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7326. _limg.style = "width: 26px;margin-right: 10px;"
  7327. _lchild.appendChild(_limg)
  7328. let _lspan = document.createElement('span')
  7329. _lspan.innerHTML = "上传中..."
  7330. _lchild.appendChild(_lspan)
  7331. _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%);"
  7332. _loading.appendChild(_lchild)
  7333. var _box = $$('div', {
  7334. "style": {
  7335. "position": "relative",
  7336. "width": "100%",
  7337. "height": "100%",
  7338. },
  7339. })
  7340. _box.appendChild(_loading)
  7341. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7342. switch (str) {
  7343. case "whiteboard":
  7344. aTool = 1;
  7345. _iframe = $$("iframe", {
  7346. "frameborder": "no",
  7347. "border": "0",
  7348. "scrolling ": "no",
  7349. "style": {
  7350. "cssText": "border:0;width:100%;height:100%"
  7351. },
  7352. "src": "https://beta.iwb.cocorobo.cn/"
  7353. })
  7354. _box.appendChild(_iframe);
  7355. _box.appendChild(_jie);
  7356. _formdiv = new U.UF.UI.form(
  7357. "电子白板-" + _username,
  7358. _box, {
  7359. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7360. "style": {
  7361. "width": "90%",
  7362. "height": "90%",
  7363. "overflow": 'hidden'
  7364. },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, {
  7369. "style": {
  7370. "height": "36px"
  7371. }
  7372. }).form; //创建窗体
  7373. _taskbar = {
  7374. "id": str + _formdiv.id,
  7375. "style": {
  7376. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7377. },
  7378. "name": "电子白板",
  7379. "forms": _formdiv,
  7380. "click": function () {
  7381. U.MD.D.I.openApplication(str, obj, info);
  7382. }
  7383. }
  7384. break;
  7385. case "mind":
  7386. aTool = 3;
  7387. _iframe = $$("iframe", {
  7388. "frameborder": "no",
  7389. "border": "0",
  7390. "scrolling ": "no",
  7391. "style": {
  7392. "cssText": "border:0;width:100%;height:100%"
  7393. },
  7394. "src": "/kityminder-editor/dist/index.html"
  7395. })
  7396. _box.appendChild(_iframe);
  7397. _box.appendChild(_jie);
  7398. _formdiv = new U.UF.UI.form(
  7399. "思维导图-" + _username,
  7400. _box, { //"/jsmind/example/demo.html"
  7401. "id": "mind" + cid + stage + task + tool + _userid,
  7402. "style": {
  7403. "width": "90%",
  7404. "height": "90%",
  7405. "overflow": 'hidden'
  7406. },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, {
  7411. "style": {
  7412. "height": "36px"
  7413. }
  7414. }).form; //创建窗体
  7415. _taskbar = {
  7416. "id": str + _formdiv.id,
  7417. "style": {
  7418. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7419. },
  7420. "name": "思维导图",
  7421. "forms": _formdiv,
  7422. "click": function () {
  7423. U.MD.D.I.openApplication(str, obj, info);
  7424. }
  7425. }
  7426. break;
  7427. case "MindMap":
  7428. aTool = 3;
  7429. _iframe = $$("iframe", {
  7430. "frameborder": "no",
  7431. "border": "0",
  7432. "scrolling ": "no",
  7433. "style": {
  7434. "cssText": "border:0;width:100%;height:100%"
  7435. },
  7436. "src": "//cloud.cocorobo.cn/mind/"
  7437. })
  7438. _box.appendChild(_iframe);
  7439. _box.appendChild(_jie);
  7440. _formdiv = new U.UF.UI.form(
  7441. "思维导图-" + _username,
  7442. _box, { //"/jsmind/example/demo.html"
  7443. "id": "mind" + cid + stage + task + tool + _userid,
  7444. "style": {
  7445. "width": "90%",
  7446. "height": "90%",
  7447. "overflow": 'hidden'
  7448. },
  7449. "onresize": function () { }
  7450. }, {
  7451. closecallback: function () { }
  7452. }, {
  7453. "style": {
  7454. "height": "36px"
  7455. }
  7456. }).form; //创建窗体
  7457. _taskbar = {
  7458. "id": str + _formdiv.id,
  7459. "style": {
  7460. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7461. },
  7462. "name": "思维导图",
  7463. "forms": _formdiv,
  7464. "click": function () {
  7465. U.MD.D.I.openApplication(str, obj, info);
  7466. }
  7467. }
  7468. break;
  7469. case "doc":
  7470. aTool = 6;
  7471. _iframe = $$("iframe", {
  7472. "frameborder": "no",
  7473. "border": "0",
  7474. "scrolling ": "no",
  7475. "style": {
  7476. "cssText": "border:0;width:100%;height:100%"
  7477. },
  7478. "src": "/Office/Word/WordEditArea.htm"
  7479. })
  7480. _box.appendChild(_iframe);
  7481. _box.appendChild(_jie);
  7482. _formdiv = new U.UF.UI.form(
  7483. "协同文档-" + _username,
  7484. _box, {
  7485. "id": "doc" + cid + stage + task + tool + _userid,
  7486. "style": {
  7487. "width": "90%",
  7488. "height": "90%",
  7489. "overflow": 'hidden'
  7490. },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, {
  7495. "style": {
  7496. "height": "36px"
  7497. }
  7498. }).form; //创建窗体
  7499. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7500. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7501. })
  7502. _taskbar = {
  7503. "id": str + _formdiv.id,
  7504. "style": {
  7505. "backgroundImage": "url(/img/icon/doc.png)"
  7506. },
  7507. "name": "协同文档",
  7508. "forms": _formdiv,
  7509. "click": function () {
  7510. U.MD.D.I.openApplication(str, obj, info);
  7511. }
  7512. }
  7513. break;
  7514. case "mindNetwork": //好友打开
  7515. aTool = 7;
  7516. _iframe = $$("iframe", {
  7517. "webkitallowfullscreen": "",
  7518. "mozallowfullscreen": "",
  7519. "allowfullscreen": "",
  7520. "frameborder": "no",
  7521. "border": "0",
  7522. "scrolling ": "no",
  7523. "style": {
  7524. "cssText": "border:0; width:100%; height:100%;"
  7525. },
  7526. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7527. })
  7528. _box.appendChild(_iframe);
  7529. _box.appendChild(_jie);
  7530. _formdiv = new U.UF.UI.form(
  7531. "思维网格-" + _username,
  7532. _box, {
  7533. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7534. "style": {
  7535. "width": "90%",
  7536. "height": "90%",
  7537. "overflow": 'hidden'
  7538. },
  7539. "onresize": function () { }
  7540. }, {
  7541. closecallback: function () { }
  7542. }, {
  7543. "style": {
  7544. "height": "36px"
  7545. }
  7546. }).form; //创建窗体
  7547. _taskbar = {
  7548. "id": str + _formdiv.id,
  7549. "style": {
  7550. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7551. },
  7552. "name": "思维网格",
  7553. "forms": _formdiv,
  7554. "click": function () {
  7555. U.MD.D.I.openApplication(str, obj, info);
  7556. }
  7557. }
  7558. break;
  7559. case "courseDesign":
  7560. _iframe = $$("iframe", {
  7561. "webkitallowfullscreen": "",
  7562. "mozallowfullscreen": "",
  7563. "allowfullscreen": "",
  7564. "frameborder": "no",
  7565. "border": "0",
  7566. "scrolling ": "no",
  7567. "style": {
  7568. "cssText": "border:0; width:100%; height:100%;"
  7569. },
  7570. "src": "/course-design-vue"
  7571. })
  7572. _box.appendChild(_iframe);
  7573. _box.appendChild(_jie);
  7574. _formdiv = new U.UF.UI.form(
  7575. "项目设计-" + _username,
  7576. _box, {
  7577. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7578. "style": {
  7579. "width": "90%",
  7580. "height": "90%",
  7581. "overflow": 'hidden'
  7582. },
  7583. "onresize": function () { }
  7584. }, {
  7585. closecallback: function () { }
  7586. }, {
  7587. "style": {
  7588. "height": "36px"
  7589. }
  7590. }).form; //创建窗体
  7591. _taskbar = {
  7592. "id": str + _formdiv.id,
  7593. "style": {
  7594. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7595. },
  7596. "name": "项目设计",
  7597. "forms": _formdiv,
  7598. "click": function () {
  7599. U.MD.D.I.openApplication(str, obj, info);
  7600. }
  7601. }
  7602. break;
  7603. }
  7604. const script1 = document.createElement("script");
  7605. script1.type = "text/javascript";
  7606. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7607. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7608. const script2 = document.createElement("script");
  7609. script2.type = "text/javascript";
  7610. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7611. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7612. const script3 = document.createElement("script");
  7613. script3.type = "text/javascript";
  7614. script3.charset = "UTF-8";
  7615. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7616. const script4 = document.createElement("script");
  7617. script4.type = "text/javascript";
  7618. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7619. script4.src = window.origin + "/js/Common/jietu2E.js";
  7620. if (_iframe) {
  7621. if (str == 'doc') {
  7622. _iframe = _formdiv.querySelector('iframe')
  7623. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7624. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7625. _iframe.contentWindow.document.body.appendChild(script1);
  7626. _iframe.contentWindow.document.body.appendChild(script2);
  7627. // _iframe.contentWindow.document.body.appendChild(script3);
  7628. _iframe.contentWindow.document.body.appendChild(script4);
  7629. })
  7630. if (onloadListener) {
  7631. _iframe.contentDocument.location.reload()
  7632. } else {
  7633. _iframe.contentDocument.location.reload()
  7634. }
  7635. } else if (str == 'courseDesign') {
  7636. U.UF.DL.iframeLoad(_iframe, function () {
  7637. // _iframe.contentWindow.U.MD.O.W.load();
  7638. // _iframe.contentWindow.document.body.appendChild(script1);
  7639. _iframe.contentWindow.document.body.appendChild(script2);
  7640. _iframe.contentWindow.document.body.appendChild(script4);
  7641. })
  7642. } else if (str == 'mind') {
  7643. _iframe = _formdiv.querySelector('iframe')
  7644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7645. //
  7646. _iframe.contentWindow.document.body.appendChild(script1);
  7647. _iframe.contentWindow.document.body.appendChild(script2);
  7648. _iframe.contentWindow.document.body.appendChild(script4);
  7649. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7650. })
  7651. if (onloadListener) {
  7652. _iframe.contentDocument.location.reload()
  7653. } else {
  7654. _iframe.contentDocument.location.reload()
  7655. }
  7656. } else if (str == 'whiteboard') {
  7657. _iframe = _formdiv.querySelector('iframe')
  7658. let onloadListener = _iframe.onload = () => {
  7659. _iframe.contentWindow.document.body.appendChild(script1);
  7660. _iframe.contentWindow.document.body.appendChild(script2);
  7661. _iframe.contentWindow.document.body.appendChild(script4);
  7662. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7663. };
  7664. // if (onloadListener) {
  7665. // try {
  7666. // _iframe.src += "?cocorobo="+new Date().getTime()
  7667. // _iframe.contentWindow.document.location.reload()
  7668. // } catch (error) {
  7669. // }
  7670. // } else {
  7671. // _iframe.contentDocument.location.reload()
  7672. // }
  7673. } else {
  7674. _iframe.onload = () => {
  7675. _iframe.contentWindow.document.body.appendChild(script1);
  7676. _iframe.contentWindow.document.body.appendChild(script2);
  7677. // _iframe.contentWindow.document.body.appendChild(script3);
  7678. _iframe.contentWindow.document.body.appendChild(script4);
  7679. };
  7680. }
  7681. _jie.onclick = async () => {
  7682. let text = ''
  7683. if (aTool == 1) {
  7684. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7685. } else if (aTool == 6) {
  7686. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7687. } else if (aTool == 3) {
  7688. text = await U.MD.D.I.getEditorContent(_iframe);
  7689. }
  7690. _loading.style.display = 'flex'
  7691. console.log(_loading);
  7692. var _ajs = _iframe.contentWindow.document.createElement("script");
  7693. _ajs.type = "text/javascript";
  7694. _ajs.innerHTML =
  7695. // 'console.log(' + _loading + ');\n' +
  7696. 'var _js = document.createElement("script");\n' +
  7697. '_js.type="text/javascript";\n' +
  7698. '_js.charset="UTF-8";\n' +
  7699. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7700. "_js.onload = function(){\n" +
  7701. ' var a = document.getElementsByTagName("img")\n' +
  7702. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7703. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7704. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7705. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7706. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7707. "beforeUpload_shishi(file," +
  7708. "'" +
  7709. _userid +
  7710. "'" +
  7711. ", " +
  7712. "'" +
  7713. _cid +
  7714. "'" +
  7715. ", " +
  7716. "'" +
  7717. _stage +
  7718. "'" +
  7719. ", " +
  7720. "'" +
  7721. _task +
  7722. "'" +
  7723. ", " +
  7724. "'" +
  7725. _tool +
  7726. "'" +
  7727. ", " +
  7728. "'" +
  7729. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7730. "'" +
  7731. ", " +
  7732. "'" +
  7733. aTool +
  7734. "'" +
  7735. ", " +
  7736. "`" +
  7737. text +
  7738. "`" +
  7739. ")\n" +
  7740. " });\n" +
  7741. "}\n" +
  7742. "document.head.appendChild(_js);\n";
  7743. _iframe.contentWindow.document.head.appendChild(_ajs);
  7744. }
  7745. }
  7746. }
  7747. U.MD.D.I.getEditorContent = function (iframe) {
  7748. return new Promise((resolve, reject) => {
  7749. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7750. console.log(content);
  7751. resolve(content)
  7752. });
  7753. });
  7754. }
  7755. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7756. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7757. // if (res.value[0].length > 0) {
  7758. // // resolve(res.value[0][0].text);
  7759. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7760. // $(fileInput).val('');
  7761. // });
  7762. // }
  7763. // }, [], { "type": "GET", "withCredentials": true });
  7764. var xmlhttp;
  7765. var Mac, Sn, DeviceId
  7766. if (window.XMLHttpRequest) {
  7767. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7768. xmlhttp = new XMLHttpRequest();
  7769. } else {
  7770. // IE6, IE5 浏览器执行代码
  7771. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7772. }
  7773. xmlhttp.onreadystatechange = function () {
  7774. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7775. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7776. // resolve(res.value[0][0].text);
  7777. if (type == '2') {
  7778. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7779. } else if (type == '3') {
  7780. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7781. }
  7782. } else {
  7783. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7784. }
  7785. }
  7786. }
  7787. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7788. xmlhttp.send();
  7789. }
  7790. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7791. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7792. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7793. _userinfo = US.userInfo, //登录用户信息
  7794. _userid = US.userInfo.userid //登录用户id
  7795. let _iframe;
  7796. let _cid = cid,
  7797. _stage = stage,
  7798. _task = task,
  7799. _tool = tool;
  7800. var _jie = $$("div", {
  7801. "style": {
  7802. "position": "absolute",
  7803. "bottom": "50px",
  7804. "right": "50px",
  7805. "zIndex": "9999",
  7806. "backgroundColor": "#2268bc",
  7807. "color": "#fff",
  7808. "padding": "12px 20px",
  7809. "cursor": "pointer",
  7810. "borderRadius": "4px",
  7811. },
  7812. "innerHTML": "确认并提交"
  7813. })
  7814. let aTool = ''
  7815. let _loading = document.createElement('div')
  7816. _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;"
  7817. // _loading.id = "";
  7818. let _lchild = document.createElement('div')
  7819. let _limg = document.createElement('img')
  7820. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7821. _limg.style = "width: 26px;margin-right: 10px;"
  7822. _lchild.appendChild(_limg)
  7823. let _lspan = document.createElement('span')
  7824. _lspan.innerHTML = "上传中..."
  7825. _lchild.appendChild(_lspan)
  7826. _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%);"
  7827. _loading.appendChild(_lchild)
  7828. var _box = $$('div', {
  7829. "style": {
  7830. "position": "relative",
  7831. "width": "100%",
  7832. "height": "100%",
  7833. },
  7834. })
  7835. _box.appendChild(_loading)
  7836. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7837. switch (str) {
  7838. case "whiteboard":
  7839. aTool = 1;
  7840. _iframe = $$("iframe", {
  7841. "frameborder": "no",
  7842. "border": "0",
  7843. "scrolling ": "no",
  7844. "style": {
  7845. "cssText": "border:0;width:100%;height:100%"
  7846. },
  7847. "src": "https://beta.iwb.cocorobo.cn/"
  7848. })
  7849. _box.appendChild(_iframe);
  7850. _box.appendChild(_jie);
  7851. _formdiv = new U.UF.UI.form(
  7852. "电子白板",
  7853. _box, {
  7854. "id": "whiteboards" + cid + stage + task + tool,
  7855. "style": {
  7856. "width": "90%",
  7857. "height": "90%",
  7858. "overflow": 'hidden'
  7859. },
  7860. "onresize": function () { }
  7861. }, {
  7862. closecallback: function () { }
  7863. }, {
  7864. "style": {
  7865. "height": "36px"
  7866. }
  7867. }).form; //创建窗体
  7868. _taskbar = {
  7869. "id": str + _formdiv.id,
  7870. "style": {
  7871. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7872. },
  7873. "name": "电子白板",
  7874. "forms": _formdiv,
  7875. "click": function () {
  7876. U.MD.D.I.openApplication(str, obj, info);
  7877. }
  7878. }
  7879. break;
  7880. case "mind":
  7881. aTool = 3;
  7882. _iframe = $$("iframe", {
  7883. "frameborder": "no",
  7884. "border": "0",
  7885. "scrolling ": "no",
  7886. "style": {
  7887. "cssText": "border:0;width:100%;height:100%"
  7888. },
  7889. "src": "/kityminder-editor/dist/index.html"
  7890. });
  7891. _box.appendChild(_iframe);
  7892. _box.appendChild(_jie);
  7893. _formdiv = new U.UF.UI.form(
  7894. "思维导图",
  7895. _box, { //"/jsmind/example/demo.html"
  7896. "id": "minds" + cid + stage + task + tool,
  7897. "style": {
  7898. "width": "90%",
  7899. "height": "90%",
  7900. "overflow": 'hidden'
  7901. },
  7902. "onresize": function () { }
  7903. }, {
  7904. closecallback: function () { }
  7905. }, {
  7906. "style": {
  7907. "height": "36px"
  7908. }
  7909. }).form; //创建窗体
  7910. _taskbar = {
  7911. "id": str + _formdiv.id,
  7912. "style": {
  7913. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7914. },
  7915. "name": "思维导图",
  7916. "forms": _formdiv,
  7917. "click": function () {
  7918. U.MD.D.I.openApplication(str, obj, info);
  7919. }
  7920. }
  7921. break;
  7922. case "doc":
  7923. aTool = 6;
  7924. _iframe = $$("iframe", {
  7925. "frameborder": "no",
  7926. "border": "0",
  7927. "scrolling ": "no",
  7928. "style": {
  7929. "cssText": "border:0;width:100%;height:100%"
  7930. },
  7931. "src": "/Office/Word/WordEditArea.htm"
  7932. })
  7933. _box.appendChild(_iframe);
  7934. _box.appendChild(_jie);
  7935. _formdiv = new U.UF.UI.form(
  7936. "协同文档",
  7937. _box, {
  7938. "id": "docs" + cid + stage + task + tool,
  7939. "style": {
  7940. "width": "90%",
  7941. "height": "90%",
  7942. "overflow": 'hidden'
  7943. },
  7944. "onresize": function () { }
  7945. }, {
  7946. closecallback: function () { }
  7947. }, {
  7948. "style": {
  7949. "height": "36px"
  7950. }
  7951. }).form; //创建窗体
  7952. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7953. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7954. })
  7955. _taskbar = {
  7956. "id": str + _formdiv.id,
  7957. "style": {
  7958. "backgroundImage": "url(/img/icon/doc.png)"
  7959. },
  7960. "name": "协同文档",
  7961. "forms": _formdiv,
  7962. "click": function () {
  7963. U.MD.D.I.openApplication(str, obj, info);
  7964. }
  7965. }
  7966. break;
  7967. }
  7968. const script1 = document.createElement("script");
  7969. script1.type = "text/javascript";
  7970. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7971. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7972. const script2 = document.createElement("script");
  7973. script2.type = "text/javascript";
  7974. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7975. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7976. const script3 = document.createElement("script");
  7977. script3.type = "text/javascript";
  7978. script3.charset = "UTF-8";
  7979. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7980. const script4 = document.createElement("script");
  7981. script4.type = "text/javascript";
  7982. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7983. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7984. if (_iframe) {
  7985. if (str == 'doc') {
  7986. _iframe = _formdiv.querySelector('iframe')
  7987. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7988. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7989. _iframe.contentWindow.document.body.appendChild(script1);
  7990. _iframe.contentWindow.document.body.appendChild(script2);
  7991. // _iframe.contentWindow.document.body.appendChild(script3);
  7992. _iframe.contentWindow.document.body.appendChild(script4);
  7993. })
  7994. if (onloadListener) {
  7995. _iframe.contentDocument.location.reload()
  7996. } else {
  7997. _iframe.contentDocument.location.reload()
  7998. }
  7999. } else if (str == 'mind') {
  8000. _iframe = _formdiv.querySelector('iframe')
  8001. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8002. _iframe.contentWindow.document.body.appendChild(script1);
  8003. _iframe.contentWindow.document.body.appendChild(script2);
  8004. _iframe.contentWindow.document.body.appendChild(script4);
  8005. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8006. })
  8007. if (onloadListener) {
  8008. _iframe.contentDocument.location.reload()
  8009. } else {
  8010. _iframe.contentDocument.location.reload()
  8011. }
  8012. } else {
  8013. _iframe.onload = () => {
  8014. _iframe.contentWindow.document.body.appendChild(script1);
  8015. _iframe.contentWindow.document.body.appendChild(script2);
  8016. // _iframe.contentWindow.document.body.appendChild(script3);
  8017. _iframe.contentWindow.document.body.appendChild(script4);
  8018. };
  8019. }
  8020. _jie.onclick = async () => {
  8021. let text = ''
  8022. if (aTool == 6) {
  8023. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8024. } else if (aTool == 3) {
  8025. text = await U.MD.D.I.getEditorContent(_iframe);
  8026. }
  8027. _loading.style.display = 'flex'
  8028. console.log(_loading);
  8029. var _ajs = _iframe.contentWindow.document.createElement("script");
  8030. _ajs.type = "text/javascript";
  8031. _ajs.innerHTML =
  8032. // 'console.log(' + _loading + ');\n' +
  8033. 'var _js = document.createElement("script");\n' +
  8034. '_js.type="text/javascript";\n' +
  8035. '_js.charset="UTF-8";\n' +
  8036. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8037. "_js.onload = function(){\n" +
  8038. ' var a = document.getElementsByTagName("img")\n' +
  8039. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8040. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8041. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8042. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8043. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8044. "beforeUpload_shishi(file," +
  8045. "'" +
  8046. _userid +
  8047. "'" +
  8048. ", " +
  8049. "'" +
  8050. _cid +
  8051. "'" +
  8052. ", " +
  8053. "'" +
  8054. _stage +
  8055. "'" +
  8056. ", " +
  8057. "'" +
  8058. _task +
  8059. "'" +
  8060. ", " +
  8061. "'" +
  8062. _tool +
  8063. "'" +
  8064. ", " +
  8065. "'" +
  8066. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8067. "'" +
  8068. ", " +
  8069. "'" +
  8070. aTool +
  8071. "'" +
  8072. ", " +
  8073. "`" +
  8074. text +
  8075. "`" +
  8076. ")\n" +
  8077. " });\n" +
  8078. "}\n" +
  8079. "document.head.appendChild(_js);\n";
  8080. _iframe.contentWindow.document.head.appendChild(_ajs);
  8081. }
  8082. }
  8083. //U.MD.D.I.openClick(str);
  8084. //如果有任务栏信息
  8085. // if (_taskbar) {
  8086. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8087. // }
  8088. }
  8089. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8090. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8091. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8092. _userinfo = US.userInfo, //登录用户信息
  8093. _userid = US.userInfo.userid //登录用户id
  8094. let _iframe;
  8095. let _cid = cid,
  8096. _stage = stage,
  8097. _task = task,
  8098. _tool = tool;
  8099. var _jie = $$("div", {
  8100. "style": {
  8101. "position": "absolute",
  8102. "bottom": "50px",
  8103. "right": "50px",
  8104. "zIndex": "9999",
  8105. "backgroundColor": "#2268bc",
  8106. "color": "#fff",
  8107. "padding": "12px 20px",
  8108. "cursor": "pointer",
  8109. "borderRadius": "4px",
  8110. },
  8111. "innerHTML": "确认并提交"
  8112. })
  8113. let aTool = ''
  8114. let _loading = document.createElement('div')
  8115. _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;"
  8116. // _loading.id = "";
  8117. let _lchild = document.createElement('div')
  8118. let _limg = document.createElement('img')
  8119. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8120. _limg.style = "width: 26px;margin-right: 10px;"
  8121. _lchild.appendChild(_limg)
  8122. let _lspan = document.createElement('span')
  8123. _lspan.innerHTML = "上传中..."
  8124. _lchild.appendChild(_lspan)
  8125. _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%);"
  8126. _loading.appendChild(_lchild)
  8127. var _box = $$('div', {
  8128. "style": {
  8129. "position": "relative",
  8130. "width": "100%",
  8131. "height": "100%",
  8132. },
  8133. })
  8134. _box.appendChild(_loading)
  8135. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8136. switch (str) {
  8137. case "whiteboard":
  8138. aTool = 1;
  8139. _iframe = $$("iframe", {
  8140. "frameborder": "no",
  8141. "border": "0",
  8142. "scrolling ": "no",
  8143. "style": {
  8144. "cssText": "border:0;width:100%;height:100%"
  8145. },
  8146. "src": "https://beta.iwb.cocorobo.cn/"
  8147. })
  8148. _box.appendChild(_iframe);
  8149. _box.appendChild(_jie);
  8150. _formdiv = new U.UF.UI.form(
  8151. "电子白板",
  8152. _box, {
  8153. "id": "whiteboards" + cid + stage + task + tool,
  8154. "style": {
  8155. "width": "90%",
  8156. "height": "90%",
  8157. "overflow": 'hidden'
  8158. },
  8159. "onresize": function () { }
  8160. }, {
  8161. closecallback: function () { }
  8162. }, {
  8163. "style": {
  8164. "height": "36px"
  8165. }
  8166. }).form; //创建窗体
  8167. _taskbar = {
  8168. "id": str + _formdiv.id,
  8169. "style": {
  8170. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8171. },
  8172. "name": "电子白板",
  8173. "forms": _formdiv,
  8174. "click": function () {
  8175. U.MD.D.I.openApplication(str, obj, info);
  8176. }
  8177. }
  8178. break;
  8179. case "mind":
  8180. aTool = 3;
  8181. _iframe = $$("iframe", {
  8182. "frameborder": "no",
  8183. "border": "0",
  8184. "scrolling ": "no",
  8185. "style": {
  8186. "cssText": "border:0;width:100%;height:100%"
  8187. },
  8188. "src": "/kityminder-editor/dist/index.html"
  8189. });
  8190. _box.appendChild(_iframe);
  8191. _box.appendChild(_jie);
  8192. _formdiv = new U.UF.UI.form(
  8193. "思维导图",
  8194. _box, { //"/jsmind/example/demo.html"
  8195. "id": "minds" + cid + stage + task + tool,
  8196. "style": {
  8197. "width": "90%",
  8198. "height": "90%",
  8199. "overflow": 'hidden'
  8200. },
  8201. "onresize": function () { }
  8202. }, {
  8203. closecallback: function () { }
  8204. }, {
  8205. "style": {
  8206. "height": "36px"
  8207. }
  8208. }).form; //创建窗体
  8209. _taskbar = {
  8210. "id": str + _formdiv.id,
  8211. "style": {
  8212. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8213. },
  8214. "name": "思维导图",
  8215. "forms": _formdiv,
  8216. "click": function () {
  8217. U.MD.D.I.openApplication(str, obj, info);
  8218. }
  8219. }
  8220. break;
  8221. case "doc":
  8222. aTool = 6;
  8223. _iframe = $$("iframe", {
  8224. "frameborder": "no",
  8225. "border": "0",
  8226. "scrolling ": "no",
  8227. "style": {
  8228. "cssText": "border:0;width:100%;height:100%"
  8229. },
  8230. "src": "/Office/Word/WordEditArea.htm"
  8231. })
  8232. _box.appendChild(_iframe);
  8233. _box.appendChild(_jie);
  8234. _formdiv = new U.UF.UI.form(
  8235. "协同文档",
  8236. _box, {
  8237. "id": "docs" + cid + stage + task + tool,
  8238. "style": {
  8239. "width": "90%",
  8240. "height": "90%",
  8241. "overflow": 'hidden'
  8242. },
  8243. "onresize": function () { }
  8244. }, {
  8245. closecallback: function () { }
  8246. }, {
  8247. "style": {
  8248. "height": "36px"
  8249. }
  8250. }).form; //创建窗体
  8251. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8252. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8253. })
  8254. _taskbar = {
  8255. "id": str + _formdiv.id,
  8256. "style": {
  8257. "backgroundImage": "url(/img/icon/doc.png)"
  8258. },
  8259. "name": "协同文档",
  8260. "forms": _formdiv,
  8261. "click": function () {
  8262. U.MD.D.I.openApplication(str, obj, info);
  8263. }
  8264. }
  8265. break;
  8266. }
  8267. const script1 = document.createElement("script");
  8268. script1.type = "text/javascript";
  8269. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8270. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8271. const script2 = document.createElement("script");
  8272. script2.type = "text/javascript";
  8273. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8274. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8275. const script3 = document.createElement("script");
  8276. script3.type = "text/javascript";
  8277. script3.charset = "UTF-8";
  8278. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8279. const script4 = document.createElement("script");
  8280. script4.type = "text/javascript";
  8281. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8282. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8283. if (_iframe) {
  8284. if (str == 'doc') {
  8285. _iframe = _formdiv.querySelector('iframe')
  8286. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8287. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8288. _iframe.contentWindow.document.body.appendChild(script1);
  8289. _iframe.contentWindow.document.body.appendChild(script2);
  8290. // _iframe.contentWindow.document.body.appendChild(script3);
  8291. _iframe.contentWindow.document.body.appendChild(script4);
  8292. })
  8293. if (onloadListener) {
  8294. _iframe.contentDocument.location.reload()
  8295. } else {
  8296. _iframe.contentDocument.location.reload()
  8297. }
  8298. } else if (str == 'mind') {
  8299. _iframe = _formdiv.querySelector('iframe')
  8300. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8301. _iframe.contentWindow.document.body.appendChild(script1);
  8302. _iframe.contentWindow.document.body.appendChild(script2);
  8303. _iframe.contentWindow.document.body.appendChild(script4);
  8304. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8305. })
  8306. if (onloadListener) {
  8307. _iframe.contentDocument.location.reload()
  8308. } else {
  8309. _iframe.contentDocument.location.reload()
  8310. }
  8311. } else {
  8312. _iframe.onload = () => {
  8313. _iframe.contentWindow.document.body.appendChild(script1);
  8314. _iframe.contentWindow.document.body.appendChild(script2);
  8315. // _iframe.contentWindow.document.body.appendChild(script3);
  8316. _iframe.contentWindow.document.body.appendChild(script4);
  8317. };
  8318. }
  8319. _jie.onclick = async () => {
  8320. let text = ''
  8321. if (aTool == 6) {
  8322. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8323. } else if (aTool == 3) {
  8324. text = await U.MD.D.I.getEditorContent(_iframe);
  8325. }
  8326. _loading.style.display = 'flex'
  8327. console.log(_loading);
  8328. var _ajs = _iframe.contentWindow.document.createElement("script");
  8329. _ajs.type = "text/javascript";
  8330. _ajs.innerHTML =
  8331. // 'console.log(' + _loading + ');\n' +
  8332. 'var _js = document.createElement("script");\n' +
  8333. '_js.type="text/javascript";\n' +
  8334. '_js.charset="UTF-8";\n' +
  8335. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8336. "_js.onload = function(){\n" +
  8337. ' var a = document.getElementsByTagName("img")\n' +
  8338. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8339. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8340. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8341. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8342. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8343. "beforeUpload_shishi(file," +
  8344. "'" +
  8345. _userid +
  8346. "'" +
  8347. ", " +
  8348. "'" +
  8349. _cid +
  8350. "'" +
  8351. ", " +
  8352. "'" +
  8353. _stage +
  8354. "'" +
  8355. ", " +
  8356. "'" +
  8357. _task +
  8358. "'" +
  8359. ", " +
  8360. "'" +
  8361. _tool +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. aTool +
  8370. "'" +
  8371. ", " +
  8372. "`" +
  8373. text +
  8374. "`" +
  8375. ")\n" +
  8376. " });\n" +
  8377. "}\n" +
  8378. "document.head.appendChild(_js);\n";
  8379. _iframe.contentWindow.document.head.appendChild(_ajs);
  8380. }
  8381. }
  8382. //U.MD.D.I.openClick(str);
  8383. //如果有任务栏信息
  8384. // if (_taskbar) {
  8385. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8386. // }
  8387. }
  8388. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8389. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8390. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8391. _userinfo = US.userInfo, //登录用户信息
  8392. _userid = US.userInfo.userid //登录用户id
  8393. let _iframe;
  8394. let _cid = cid,
  8395. _stage = stage,
  8396. _task = task,
  8397. _tool = tool;
  8398. var _jie = $$("div", {
  8399. "style": {
  8400. "position": "absolute",
  8401. "bottom": "50px",
  8402. "right": "50px",
  8403. "zIndex": "9999",
  8404. "backgroundColor": "#2268bc",
  8405. "color": "#fff",
  8406. "padding": "12px 20px",
  8407. "cursor": "pointer",
  8408. "borderRadius": "4px",
  8409. },
  8410. "innerHTML": "上传模板"
  8411. })
  8412. let aTool = ''
  8413. let _loading = document.createElement('div')
  8414. _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;"
  8415. // _loading.id = "";
  8416. let _lchild = document.createElement('div')
  8417. let _limg = document.createElement('img')
  8418. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8419. _limg.style = "width: 26px;margin-right: 10px;"
  8420. _lchild.appendChild(_limg)
  8421. let _lspan = document.createElement('span')
  8422. _lspan.innerHTML = "上传中..."
  8423. _lchild.appendChild(_lspan)
  8424. _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%);"
  8425. _loading.appendChild(_lchild)
  8426. var _box = $$('div', {
  8427. "style": {
  8428. "position": "relative",
  8429. "width": "100%",
  8430. "height": "100%",
  8431. },
  8432. })
  8433. _box.appendChild(_loading)
  8434. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8435. switch (str) {
  8436. case "whiteboard":
  8437. aTool = 1;
  8438. _iframe = $$("iframe", {
  8439. "frameborder": "no",
  8440. "border": "0",
  8441. "scrolling ": "no",
  8442. "style": {
  8443. "cssText": "border:0;width:100%;height:100%"
  8444. },
  8445. "src": "https://beta.iwb.cocorobo.cn/"
  8446. })
  8447. _box.appendChild(_iframe);
  8448. _box.appendChild(_jie);
  8449. _formdiv = new U.UF.UI.form(
  8450. "电子白板",
  8451. _box, {
  8452. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8453. "style": {
  8454. "width": "90%",
  8455. "height": "90%",
  8456. "overflow": 'hidden'
  8457. },
  8458. "onresize": function () { }
  8459. }, {
  8460. closecallback: function () { }
  8461. }, {
  8462. "style": {
  8463. "height": "36px"
  8464. }
  8465. }).form; //创建窗体
  8466. _taskbar = {
  8467. "id": str + _formdiv.id,
  8468. "style": {
  8469. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8470. },
  8471. "name": "电子白板",
  8472. "forms": _formdiv,
  8473. "click": function () {
  8474. U.MD.D.I.openApplication(str, obj, info);
  8475. }
  8476. }
  8477. break;
  8478. case "mind":
  8479. aTool = 3;
  8480. _iframe = $$("iframe", {
  8481. "frameborder": "no",
  8482. "border": "0",
  8483. "scrolling ": "no",
  8484. "style": {
  8485. "cssText": "border:0;width:100%;height:100%"
  8486. },
  8487. "src": "/kityminder-editor/dist/index.html"
  8488. });
  8489. _box.appendChild(_iframe);
  8490. _box.appendChild(_jie);
  8491. _formdiv = new U.UF.UI.form(
  8492. "思维导图",
  8493. _box, { //"/jsmind/example/demo.html"
  8494. "id": "minds_Yu" + cid + stage + task + tool,
  8495. "style": {
  8496. "width": "90%",
  8497. "height": "90%",
  8498. "overflow": 'hidden'
  8499. },
  8500. "onresize": function () { }
  8501. }, {
  8502. closecallback: function () { }
  8503. }, {
  8504. "style": {
  8505. "height": "36px"
  8506. }
  8507. }).form; //创建窗体
  8508. _taskbar = {
  8509. "id": str + _formdiv.id,
  8510. "style": {
  8511. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8512. },
  8513. "name": "思维导图",
  8514. "forms": _formdiv,
  8515. "click": function () {
  8516. U.MD.D.I.openApplication(str, obj, info);
  8517. }
  8518. }
  8519. break;
  8520. case "doc":
  8521. aTool = 6;
  8522. _iframe = $$("iframe", {
  8523. "frameborder": "no",
  8524. "border": "0",
  8525. "scrolling ": "no",
  8526. "style": {
  8527. "cssText": "border:0;width:100%;height:100%"
  8528. },
  8529. "src": "/Office/Word/WordEditArea.htm"
  8530. })
  8531. _box.appendChild(_iframe);
  8532. _box.appendChild(_jie);
  8533. _formdiv = new U.UF.UI.form(
  8534. "协同文档",
  8535. _box, {
  8536. "id": "docs_Yu" + cid + stage + task + tool,
  8537. "style": {
  8538. "width": "90%",
  8539. "height": "90%",
  8540. "overflow": 'hidden'
  8541. },
  8542. "onresize": function () { }
  8543. }, {
  8544. closecallback: function () { }
  8545. }, {
  8546. "style": {
  8547. "height": "36px"
  8548. }
  8549. }).form; //创建窗体
  8550. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8551. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8552. })
  8553. _taskbar = {
  8554. "id": str + _formdiv.id,
  8555. "style": {
  8556. "backgroundImage": "url(/img/icon/doc.png)"
  8557. },
  8558. "name": "协同文档",
  8559. "forms": _formdiv,
  8560. "click": function () {
  8561. U.MD.D.I.openApplication(str, obj, info);
  8562. }
  8563. }
  8564. break;
  8565. case "CocoPi":
  8566. aTool = 57;
  8567. _iframe = $$("iframe", {
  8568. "allowpaymentrequest": "allowpaymentrequest",
  8569. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8570. "webkitallowfullscreen": "",
  8571. "mozallowfullscreen": "",
  8572. "frameborder": "no",
  8573. "border": "0",
  8574. "scrolling ": "no",
  8575. "style": {
  8576. "cssText": "border:0;width:100%;height:100%"
  8577. },
  8578. "src": "https://pi.cocorobo.cn/"
  8579. })
  8580. _box.appendChild(_iframe);
  8581. _box.appendChild(_jie);
  8582. _formdiv = new U.UF.UI.form(
  8583. "CocoPi",
  8584. _box, {
  8585. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8586. "style": {
  8587. "width": "90%",
  8588. "height": "90%",
  8589. "overflow": 'hidden'
  8590. },
  8591. "onresize": function () { }
  8592. }, {
  8593. closecallback: function () { }
  8594. }, {
  8595. "style": {
  8596. "height": "36px"
  8597. }
  8598. }).form; //创建窗体
  8599. _taskbar = {
  8600. "id": str + _formdiv.id,
  8601. "style": {
  8602. "backgroundImage": "url(/img/icon/cocopi.png)"
  8603. },
  8604. "name": "CocoPi",
  8605. "forms": _formdiv,
  8606. "click": function () {
  8607. U.MD.D.I.openApplication(str, obj, info);
  8608. }
  8609. }
  8610. break;
  8611. }
  8612. if (_iframe) {
  8613. if (str == 'doc') {
  8614. _iframe = _formdiv.querySelector('iframe')
  8615. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8616. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8617. })
  8618. if (onloadListener) {
  8619. _iframe.contentDocument.location.reload()
  8620. } else {
  8621. _iframe.contentDocument.location.reload()
  8622. }
  8623. } else if (str == 'mind') {
  8624. _iframe = _formdiv.querySelector('iframe')
  8625. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8626. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8627. })
  8628. if (onloadListener) {
  8629. _iframe.contentDocument.location.reload()
  8630. } else {
  8631. _iframe.contentDocument.location.reload()
  8632. }
  8633. } else if (str == 'whiteboard') {
  8634. _iframe = _formdiv.querySelector('iframe')
  8635. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8636. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8637. })
  8638. // if (onloadListener) {
  8639. // try {
  8640. // _iframe.src += "?cocorobo="+new Date().getTime()
  8641. // _iframe.contentWindow.document.location.reload()
  8642. // } catch (error) {
  8643. // }
  8644. // } else {
  8645. // _iframe.contentDocument.location.reload()
  8646. // }
  8647. } else if (str == 'CocoPi') {
  8648. _iframe = _formdiv.querySelector('iframe')
  8649. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8650. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8651. })
  8652. if (onloadListener) {
  8653. _iframe.contentDocument.location.reload()
  8654. } else {
  8655. _iframe.contentDocument.location.reload()
  8656. }
  8657. } else {
  8658. _iframe.onload = () => { };
  8659. }
  8660. _jie.onclick = async () => {
  8661. let text = ''
  8662. let type = '2'
  8663. if (aTool == 1) {
  8664. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8665. type = '3'
  8666. } else if (aTool == 6) {
  8667. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8668. type = '1'
  8669. } else if (aTool == 3) {
  8670. text = await U.MD.D.I.getEditorContent(_iframe);
  8671. type = '2'
  8672. } else if (aTool == 57) {
  8673. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8674. type = '4'
  8675. }
  8676. _loading.style.display = 'flex'
  8677. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8678. }
  8679. }
  8680. //U.MD.D.I.openClick(str);
  8681. //如果有任务栏信息
  8682. // if (_taskbar) {
  8683. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8684. // }
  8685. }
  8686. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8687. var xmlhttp;
  8688. var Mac, Sn, DeviceId
  8689. if (window.XMLHttpRequest) {
  8690. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8691. xmlhttp = new XMLHttpRequest();
  8692. } else {
  8693. // IE6, IE5 浏览器执行代码
  8694. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8695. }
  8696. xmlhttp.onreadystatechange = function () {
  8697. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8698. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8699. // resolve(res.value[0][0].text);
  8700. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8701. }
  8702. }
  8703. }
  8704. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8705. xmlhttp.send();
  8706. }
  8707. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8708. var xmlhttp;
  8709. var Mac, Sn, DeviceId
  8710. if (window.XMLHttpRequest) {
  8711. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8712. xmlhttp = new XMLHttpRequest();
  8713. } else {
  8714. // IE6, IE5 浏览器执行代码
  8715. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8716. }
  8717. xmlhttp.onreadystatechange = function () {
  8718. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8719. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8720. // resolve(res.value[0][0].text);
  8721. if (type == '2') {
  8722. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8723. } else if (type == '3') {
  8724. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8725. } else if (type == '4') {
  8726. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8727. }
  8728. } else {
  8729. if (type == '2') {
  8730. iframe.contentWindow.editor.minder.importData('json', '')
  8731. } else if (type == '3') {
  8732. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8733. } else if (type == '4') {
  8734. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8735. }
  8736. }
  8737. }
  8738. }
  8739. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8740. xmlhttp.send();
  8741. }
  8742. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8743. var xmlhttp;
  8744. var Mac, Sn, DeviceId
  8745. if (window.XMLHttpRequest) {
  8746. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8747. xmlhttp = new XMLHttpRequest();
  8748. } else {
  8749. // IE6, IE5 浏览器执行代码
  8750. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8751. }
  8752. xmlhttp.onreadystatechange = function () {
  8753. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8754. if (xmlhttp.response) {
  8755. // resolve(res.value[0][0].text);
  8756. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8757. // $(fileInput).val('');
  8758. // });
  8759. span.innerHTML = '上传成功'
  8760. setTimeout(() => {
  8761. loading.style.display = 'none'
  8762. }, 1000);
  8763. }
  8764. }
  8765. }
  8766. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8767. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8768. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8769. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8770. // 设置请求头,表示请求体的编码格式
  8771. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8772. // 设置请求体,使用url-encoded格式的数据
  8773. }
  8774. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8775. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8776. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8777. _userinfo = US.userInfo, //登录用户信息
  8778. _userid = US.userInfo.userid //登录用户id
  8779. let _iframe;
  8780. let _cid = cid,
  8781. _stage = stage,
  8782. _task = task,
  8783. _tool = tool;
  8784. var _jie = $$("div", {
  8785. "style": {
  8786. "position": "absolute",
  8787. "bottom": "50px",
  8788. "right": "50px",
  8789. "zIndex": "9999",
  8790. "backgroundColor": "#2268bc",
  8791. "color": "#fff",
  8792. "padding": "12px 20px",
  8793. "cursor": "pointer",
  8794. "borderRadius": "4px",
  8795. },
  8796. "innerHTML": "提交作业"
  8797. })
  8798. let aTool = ''
  8799. let _loading = document.createElement('div')
  8800. _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;"
  8801. // _loading.id = "";
  8802. let _lchild = document.createElement('div')
  8803. let _limg = document.createElement('img')
  8804. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8805. _limg.style = "width: 26px;margin-right: 10px;"
  8806. _lchild.appendChild(_limg)
  8807. let _lspan = document.createElement('span')
  8808. _lspan.innerHTML = "上传中..."
  8809. _lchild.appendChild(_lspan)
  8810. _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%);"
  8811. _loading.appendChild(_lchild)
  8812. var _box = $$('div', {
  8813. "style": {
  8814. "position": "relative",
  8815. "width": "100%",
  8816. "height": "100%",
  8817. },
  8818. })
  8819. _box.appendChild(_loading)
  8820. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8821. switch (str) {
  8822. case "CocoPi":
  8823. aTool = 57;
  8824. _iframe = $$("iframe", {
  8825. "allowpaymentrequest": "allowpaymentrequest",
  8826. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8827. "webkitallowfullscreen": "",
  8828. "mozallowfullscreen": "",
  8829. "frameborder": "no",
  8830. "border": "0",
  8831. "scrolling ": "no",
  8832. "style": {
  8833. "cssText": "border:0;width:100%;height:100%"
  8834. },
  8835. "src": "https://pi.cocorobo.cn/"
  8836. })
  8837. _box.appendChild(_iframe);
  8838. _box.appendChild(_jie);
  8839. _formdiv = new U.UF.UI.form(
  8840. "CocoPi",
  8841. _box, {
  8842. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8843. "style": {
  8844. "width": "90%",
  8845. "height": "90%",
  8846. "overflow": 'hidden'
  8847. },
  8848. "onresize": function () { }
  8849. }, {
  8850. closecallback: function () { }
  8851. }, {
  8852. "style": {
  8853. "height": "36px"
  8854. }
  8855. }).form; //创建窗体
  8856. _taskbar = {
  8857. "id": str + _formdiv.id,
  8858. "style": {
  8859. "backgroundImage": "url(/img/icon/cocopi.png)"
  8860. },
  8861. "name": "CocoPi",
  8862. "forms": _formdiv,
  8863. "click": function () {
  8864. U.MD.D.I.openApplication(str, obj, info);
  8865. }
  8866. }
  8867. break;
  8868. }
  8869. if (_iframe) {
  8870. if (str == 'CocoPi') {
  8871. _iframe = _formdiv.querySelector('iframe')
  8872. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8873. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8874. })
  8875. if (onloadListener) {
  8876. _iframe.contentDocument.location.reload()
  8877. } else {
  8878. _iframe.contentDocument.location.reload()
  8879. }
  8880. }
  8881. _jie.onclick = async () => {
  8882. let text = ''
  8883. if (aTool == 57) {
  8884. text = _iframe.contentWindow.getLoadXmlStr()
  8885. }
  8886. _loading.style.display = 'flex'
  8887. console.log(_loading);
  8888. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8889. _loading.style.display = 'none'
  8890. let _div = document.createElement('div')
  8891. _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;"
  8892. let _inner = document.createElement('div')
  8893. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8894. _inner.innerHTML = "上传成功"
  8895. _div.appendChild(_inner)
  8896. _iframe.contentWindow.window.document.body.appendChild(_div)
  8897. _div.onclick = () => {
  8898. _iframe.contentWindow.window.document.body.removeChild(_div)
  8899. }
  8900. setTimeout(() => {
  8901. _iframe.contentWindow.window.document.body.removeChild(_div)
  8902. }, 1000);
  8903. }, [], { "type": "POST", "withCredentials": true });
  8904. }
  8905. }
  8906. }
  8907. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8908. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8909. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8910. _userid = student.userid, //登录用户id
  8911. _username = student.student //用户名字
  8912. let _iframe;
  8913. let _cid = cid,
  8914. _stage = stage,
  8915. _task = task,
  8916. _tool = tool;
  8917. var _jie = $$("div", {
  8918. "style": {
  8919. "position": "absolute",
  8920. "bottom": "50px",
  8921. "right": "50px",
  8922. "zIndex": "9999",
  8923. "backgroundColor": "#2268bc",
  8924. "color": "#fff",
  8925. "padding": "12px 20px",
  8926. "cursor": "pointer",
  8927. "borderRadius": "4px",
  8928. },
  8929. "innerHTML": "提交作业"
  8930. })
  8931. let aTool = ''
  8932. let _loading = document.createElement('div')
  8933. _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;"
  8934. // _loading.id = "";
  8935. let _lchild = document.createElement('div')
  8936. let _limg = document.createElement('img')
  8937. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8938. _limg.style = "width: 26px;margin-right: 10px;"
  8939. _lchild.appendChild(_limg)
  8940. let _lspan = document.createElement('span')
  8941. _lspan.innerHTML = "上传中..."
  8942. _lchild.appendChild(_lspan)
  8943. _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%);"
  8944. _loading.appendChild(_lchild)
  8945. var _box = $$('div', {
  8946. "style": {
  8947. "position": "relative",
  8948. "width": "100%",
  8949. "height": "100%",
  8950. },
  8951. })
  8952. _box.appendChild(_loading)
  8953. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8954. switch (str) {
  8955. case "CocoPi":
  8956. aTool = 57;
  8957. _iframe = $$("iframe", {
  8958. "allowpaymentrequest": "allowpaymentrequest",
  8959. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8960. "webkitallowfullscreen": "",
  8961. "mozallowfullscreen": "",
  8962. "frameborder": "no",
  8963. "border": "0",
  8964. "scrolling ": "no",
  8965. "style": {
  8966. "cssText": "border:0;width:100%;height:100%"
  8967. },
  8968. "src": "https://pi.cocorobo.cn/"
  8969. })
  8970. _box.appendChild(_iframe);
  8971. _box.appendChild(_jie);
  8972. _formdiv = new U.UF.UI.form(
  8973. "CocoPi-" + _username,
  8974. _box, {
  8975. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8976. "style": {
  8977. "width": "90%",
  8978. "height": "90%",
  8979. "overflow": 'hidden'
  8980. },
  8981. "onresize": function () { }
  8982. }, {
  8983. closecallback: function () { }
  8984. }, {
  8985. "style": {
  8986. "height": "36px"
  8987. }
  8988. }).form; //创建窗体
  8989. _taskbar = {
  8990. "id": str + _formdiv.id,
  8991. "style": {
  8992. "backgroundImage": "url(/img/icon/cocopi.png)"
  8993. },
  8994. "name": "CocoPi",
  8995. "forms": _formdiv,
  8996. "click": function () {
  8997. U.MD.D.I.openApplication(str, obj, info);
  8998. }
  8999. }
  9000. break;
  9001. }
  9002. if (_iframe) {
  9003. if (str == 'CocoPi') {
  9004. _iframe = _formdiv.querySelector('iframe')
  9005. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9006. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9007. })
  9008. if (onloadListener) {
  9009. _iframe.contentDocument.location.reload()
  9010. } else {
  9011. _iframe.contentDocument.location.reload()
  9012. }
  9013. }
  9014. _jie.onclick = async () => {
  9015. let text = ''
  9016. if (aTool == 57) {
  9017. text = _iframe.contentWindow.getLoadXmlStr()
  9018. }
  9019. _loading.style.display = 'flex'
  9020. console.log(_loading);
  9021. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9022. _loading.style.display = 'none'
  9023. let _div = document.createElement('div')
  9024. _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;"
  9025. let _inner = document.createElement('div')
  9026. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9027. _inner.innerHTML = "上传成功"
  9028. _div.appendChild(_inner)
  9029. _iframe.contentWindow.window.document.body.appendChild(_div)
  9030. _div.onclick = () => {
  9031. _iframe.contentWindow.window.document.body.removeChild(_div)
  9032. }
  9033. setTimeout(() => {
  9034. _iframe.contentWindow.window.document.body.removeChild(_div)
  9035. }, 1000);
  9036. }, [], { "type": "POST", "withCredentials": true });
  9037. }
  9038. }
  9039. }
  9040. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9041. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9042. if (res.value[0].length > 0) {
  9043. if (atool == 57) {
  9044. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9045. }
  9046. } else {
  9047. if (atool == 57) {
  9048. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9049. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9050. }
  9051. }
  9052. }, [], { "type": "POST", "withCredentials": true });
  9053. }