DeskTop.js 574 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372
  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. }
  1636. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1637. _teacherDesktopIconInfo.push(
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. )
  1640. }
  1641. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1642. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1643. _teacherDesktopIconInfo.push(
  1644. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1645. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1646. )
  1647. }
  1648. //麒麟二中
  1649. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1650. _studentDesktopIconInfo.push(
  1651. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1653. )
  1654. }
  1655. //万科双语
  1656. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1657. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1658. if (el.Name == '项目管理') {
  1659. el.Name = 'PBL项目'
  1660. }
  1661. return el
  1662. })
  1663. _studentDesktopIconInfo3.push(
  1664. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1665. )
  1666. }
  1667. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1668. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1669. return el.Name != '魔盒识字' && el.Name != '24点'
  1670. })
  1671. }
  1672. 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) {
  1673. _studentDesktopIconInfo.push(
  1674. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1675. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1676. )
  1677. }
  1678. //循环创建桌面图标
  1679. if (type == 1) {
  1680. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1681. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1682. _content = $$("div", {
  1683. className: "U_MD_D_KO",
  1684. "onmousedown": U.UF.C.closure(function (obj) {
  1685. //防止拖动图标即打开了桌面应用
  1686. U.MD.D.click(this, obj);
  1687. }, [_studentDesktopIconInfo[i]]),
  1688. "onclick": U.UF.C.closure(function (obj) {
  1689. //防止拖动图标即打开了桌面应用
  1690. U.MD.D.click(this, obj);
  1691. }, [_studentDesktopIconInfo[i]])
  1692. }, _frag); //
  1693. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1696. }
  1697. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1698. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1699. _content = $$("div", {
  1700. className: "U_MD_D_KO",
  1701. "onmousedown": U.UF.C.closure(function (obj) {
  1702. //防止拖动图标即打开了桌面应用
  1703. U.MD.D.click(this, obj);
  1704. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1705. "onclick": U.UF.C.closure(function (obj) {
  1706. //防止拖动图标即打开了桌面应用
  1707. U.MD.D.click(this, obj);
  1708. }, [_hkZJLSStudentDeskIconInfo[i]])
  1709. }, _frag); //
  1710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1713. } //
  1714. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1715. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1716. _content = $$("div", {
  1717. className: "U_MD_D_KO",
  1718. "onmousedown": U.UF.C.closure(function (obj) {
  1719. //防止拖动图标即打开了桌面应用
  1720. U.MD.D.click(this, obj);
  1721. }, [_ytyStudentDeskIconInfo[i]]),
  1722. "onclick": U.UF.C.closure(function (obj) {
  1723. //防止拖动图标即打开了桌面应用
  1724. U.MD.D.click(this, obj);
  1725. }, [_ytyStudentDeskIconInfo[i]])
  1726. }, _frag); //
  1727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1730. } //
  1731. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1732. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1733. _content = $$("div", {
  1734. className: "U_MD_D_KO",
  1735. "onmousedown": U.UF.C.closure(function (obj) {
  1736. //防止拖动图标即打开了桌面应用
  1737. U.MD.D.click(this, obj);
  1738. }, [_jccssylStudentDeskIconInfo[i]]),
  1739. "onclick": U.UF.C.closure(function (obj) {
  1740. //防止拖动图标即打开了桌面应用
  1741. U.MD.D.click(this, obj);
  1742. }, [_jccssylStudentDeskIconInfo[i]])
  1743. }, _frag); //
  1744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1747. }
  1748. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1749. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1750. _content = $$("div", {
  1751. className: "U_MD_D_KO",
  1752. "onmousedown": U.UF.C.closure(function (obj) {
  1753. //防止拖动图标即打开了桌面应用
  1754. U.MD.D.click(this, obj);
  1755. }, [_scnuaiStudentDeskIconInfo[i]]),
  1756. "onclick": U.UF.C.closure(function (obj) {
  1757. //防止拖动图标即打开了桌面应用
  1758. U.MD.D.click(this, obj);
  1759. }, [_scnuaiStudentDeskIconInfo[i]])
  1760. }, _frag); //
  1761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1764. }
  1765. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1766. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1767. _content = $$("div", {
  1768. className: "U_MD_D_KO",
  1769. "onmousedown": U.UF.C.closure(function (obj) {
  1770. //防止拖动图标即打开了桌面应用
  1771. U.MD.D.click(this, obj);
  1772. }, [_caleStudentDeskIconInfo[i]]),
  1773. "onclick": U.UF.C.closure(function (obj) {
  1774. //防止拖动图标即打开了桌面应用
  1775. U.MD.D.click(this, obj);
  1776. }, [_caleStudentDeskIconInfo[i]])
  1777. }, _frag); //
  1778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1781. }
  1782. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1783. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1784. _content = $$("div", {
  1785. className: "U_MD_D_KO",
  1786. "onmousedown": U.UF.C.closure(function (obj) {
  1787. //防止拖动图标即打开了桌面应用
  1788. U.MD.D.click(this, obj);
  1789. }, [_thuioeStudentDeskIconInfo[i]]),
  1790. "onclick": U.UF.C.closure(function (obj) {
  1791. //防止拖动图标即打开了桌面应用
  1792. U.MD.D.click(this, obj);
  1793. }, [_thuioeStudentDeskIconInfo[i]])
  1794. }, _frag); //
  1795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1798. }
  1799. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1800. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1801. _content = $$("div", {
  1802. className: "U_MD_D_KO",
  1803. "onmousedown": U.UF.C.closure(function (obj) {
  1804. //防止拖动图标即打开了桌面应用
  1805. U.MD.D.click(this, obj);
  1806. }, [_tpcStudentDeskIconInfo[i]]),
  1807. "onclick": U.UF.C.closure(function (obj) {
  1808. //防止拖动图标即打开了桌面应用
  1809. U.MD.D.click(this, obj);
  1810. }, [_tpcStudentDeskIconInfo[i]])
  1811. }, _frag); //
  1812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1815. } //
  1816. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1817. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1818. _content = $$("div", {
  1819. className: "U_MD_D_KO",
  1820. "onmousedown": U.UF.C.closure(function (obj) {
  1821. //防止拖动图标即打开了桌面应用
  1822. U.MD.D.click(this, obj);
  1823. }, [_chjyjStudentDeskIconInfo[i]]),
  1824. "onclick": U.UF.C.closure(function (obj) {
  1825. //防止拖动图标即打开了桌面应用
  1826. U.MD.D.click(this, obj);
  1827. }, [_chjyjStudentDeskIconInfo[i]])
  1828. }, _frag); //
  1829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1832. }
  1833. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1834. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1835. _content = $$("div", {
  1836. className: "U_MD_D_KO",
  1837. "onmousedown": U.UF.C.closure(function (obj) {
  1838. //防止拖动图标即打开了桌面应用
  1839. U.MD.D.click(this, obj);
  1840. }, [_szjkyStudentDeskIconInfo[i]]),
  1841. "onclick": U.UF.C.closure(function (obj) {
  1842. //防止拖动图标即打开了桌面应用
  1843. U.MD.D.click(this, obj);
  1844. }, [_szjkyStudentDeskIconInfo[i]])
  1845. }, _frag); //
  1846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1849. }
  1850. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1851. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1852. _content = $$("div", {
  1853. className: "U_MD_D_KO",
  1854. "onmousedown": U.UF.C.closure(function (obj) {
  1855. //防止拖动图标即打开了桌面应用
  1856. U.MD.D.click(this, obj);
  1857. }, [_dseiStudentDeskIconInfo[i]]),
  1858. "onclick": U.UF.C.closure(function (obj) {
  1859. //防止拖动图标即打开了桌面应用
  1860. U.MD.D.click(this, obj);
  1861. }, [_dseiStudentDeskIconInfo[i]])
  1862. }, _frag); //
  1863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1866. }
  1867. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1868. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1869. _content = $$("div", {
  1870. className: "U_MD_D_KO",
  1871. "onmousedown": U.UF.C.closure(function (obj) {
  1872. //防止拖动图标即打开了桌面应用
  1873. U.MD.D.click(this, obj);
  1874. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1875. "onclick": U.UF.C.closure(function (obj) {
  1876. //防止拖动图标即打开了桌面应用
  1877. U.MD.D.click(this, obj);
  1878. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1879. }, _frag); //
  1880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1883. }
  1884. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1885. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1886. _content = $$("div", {
  1887. className: "U_MD_D_KO",
  1888. "onmousedown": U.UF.C.closure(function (obj) {
  1889. //防止拖动图标即打开了桌面应用
  1890. U.MD.D.click(this, obj);
  1891. }, [_siesStudentDeskIconInfo[i]]),
  1892. "onclick": U.UF.C.closure(function (obj) {
  1893. //防止拖动图标即打开了桌面应用
  1894. U.MD.D.click(this, obj);
  1895. }, [_siesStudentDeskIconInfo[i]])
  1896. }, _frag); //
  1897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1900. }
  1901. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1902. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  1903. _content = $$("div", {
  1904. className: "U_MD_D_KO",
  1905. "onmousedown": U.UF.C.closure(function (obj) {
  1906. //防止拖动图标即打开了桌面应用
  1907. U.MD.D.click(this, obj);
  1908. }, [_guzmsStudentDeskIconInfo[i]]),
  1909. "onclick": U.UF.C.closure(function (obj) {
  1910. //防止拖动图标即打开了桌面应用
  1911. U.MD.D.click(this, obj);
  1912. }, [_guzmsStudentDeskIconInfo[i]])
  1913. }, _frag); //
  1914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1917. }
  1918. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1919. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1920. _content = $$("div", {
  1921. className: "U_MD_D_KO",
  1922. "onmousedown": U.UF.C.closure(function (obj) {
  1923. //防止拖动图标即打开了桌面应用
  1924. U.MD.D.click(this, obj);
  1925. }, [_hkStudentDeskIconInfo[i]]),
  1926. "onclick": U.UF.C.closure(function (obj) {
  1927. //防止拖动图标即打开了桌面应用
  1928. U.MD.D.click(this, obj);
  1929. }, [_hkStudentDeskIconInfo[i]])
  1930. }, _frag); //
  1931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1934. }
  1935. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1936. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1937. _content = $$("div", {
  1938. className: "U_MD_D_KO",
  1939. "onmousedown": U.UF.C.closure(function (obj) {
  1940. //防止拖动图标即打开了桌面应用
  1941. U.MD.D.click(this, obj);
  1942. }, [_hkaceStudentDeskIconInfo[i]]),
  1943. "onclick": U.UF.C.closure(function (obj) {
  1944. //防止拖动图标即打开了桌面应用
  1945. U.MD.D.click(this, obj);
  1946. }, [_hkaceStudentDeskIconInfo[i]])
  1947. }, _frag); //
  1948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1951. }
  1952. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  1953. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  1954. _content = $$("div", {
  1955. className: "U_MD_D_KO",
  1956. "onmousedown": U.UF.C.closure(function (obj) {
  1957. //防止拖动图标即打开了桌面应用
  1958. U.MD.D.click(this, obj);
  1959. }, [_cocobizStudentDeskIconInfo[i]]),
  1960. "onclick": U.UF.C.closure(function (obj) {
  1961. //防止拖动图标即打开了桌面应用
  1962. U.MD.D.click(this, obj);
  1963. }, [_cocobizStudentDeskIconInfo[i]])
  1964. }, _frag); //
  1965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  1967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  1968. }
  1969. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  1970. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  1971. _content = $$("div", {
  1972. className: "U_MD_D_KO",
  1973. "onmousedown": U.UF.C.closure(function (obj) {
  1974. //防止拖动图标即打开了桌面应用
  1975. U.MD.D.click(this, obj);
  1976. }, [_xxzjkyStudentDeskIconInfo[i]]),
  1977. "onclick": U.UF.C.closure(function (obj) {
  1978. //防止拖动图标即打开了桌面应用
  1979. U.MD.D.click(this, obj);
  1980. }, [_xxzjkyStudentDeskIconInfo[i]])
  1981. }, _frag); //
  1982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1985. }
  1986. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1987. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1988. _content = $$("div", {
  1989. className: "U_MD_D_KO",
  1990. "onmousedown": U.UF.C.closure(function (obj) {
  1991. //防止拖动图标即打开了桌面应用
  1992. U.MD.D.click(this, obj);
  1993. }, [_studentDesktopIconInfo[i]]),
  1994. "onclick": U.UF.C.closure(function (obj) {
  1995. //防止拖动图标即打开了桌面应用
  1996. U.MD.D.click(this, obj);
  1997. }, [_studentDesktopIconInfo[i]])
  1998. }, _frag); //
  1999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2002. }
  2003. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2004. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2005. _content = $$("div", {
  2006. className: "U_MD_D_KO",
  2007. "onmousedown": U.UF.C.closure(function (obj) {
  2008. //防止拖动图标即打开了桌面应用
  2009. U.MD.D.click(this, obj);
  2010. }, [_tcStudentDeskIconInfo[i]]),
  2011. "onclick": U.UF.C.closure(function (obj) {
  2012. //防止拖动图标即打开了桌面应用
  2013. U.MD.D.click(this, obj);
  2014. }, [_tcStudentDeskIconInfo[i]])
  2015. }, _frag); //
  2016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2019. }
  2020. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2021. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2022. _content = $$("div", {
  2023. className: "U_MD_D_KO",
  2024. "onmousedown": U.UF.C.closure(function (obj) {
  2025. //防止拖动图标即打开了桌面应用
  2026. U.MD.D.click(this, obj);
  2027. }, [_szscStudentDeskIconInfo[i]]),
  2028. "onclick": U.UF.C.closure(function (obj) {
  2029. //防止拖动图标即打开了桌面应用
  2030. U.MD.D.click(this, obj);
  2031. }, [_szscStudentDeskIconInfo[i]])
  2032. }, _frag); //
  2033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2036. }
  2037. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2038. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2039. _content = $$("div", {
  2040. className: "U_MD_D_KO",
  2041. "onmousedown": U.UF.C.closure(function (obj) {
  2042. //防止拖动图标即打开了桌面应用
  2043. U.MD.D.click(this, obj);
  2044. }, [_studentDesktopIconInfo3[i]]),
  2045. "onclick": U.UF.C.closure(function (obj) {
  2046. //防止拖动图标即打开了桌面应用
  2047. U.MD.D.click(this, obj);
  2048. }, [_studentDesktopIconInfo3[i]])
  2049. }, _frag); //
  2050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2053. }
  2054. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2055. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2056. _content = $$("div", {
  2057. className: "U_MD_D_KO",
  2058. "onmousedown": U.UF.C.closure(function (obj) {
  2059. //防止拖动图标即打开了桌面应用
  2060. U.MD.D.click(this, obj);
  2061. }, [_studentDesktopIconInfo2[i]]),
  2062. "onclick": U.UF.C.closure(function (obj) {
  2063. //防止拖动图标即打开了桌面应用
  2064. U.MD.D.click(this, obj);
  2065. }, [_studentDesktopIconInfo2[i]])
  2066. }, _frag); //
  2067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2070. }
  2071. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2072. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2073. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2074. continue
  2075. }
  2076. _content = $$("div", {
  2077. className: "U_MD_D_KO",
  2078. "onmousedown": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_wanketeacherDesktopIconInfo[i]]),
  2082. "onclick": U.UF.C.closure(function (obj) {
  2083. //防止拖动图标即打开了桌面应用
  2084. U.MD.D.click(this, obj);
  2085. }, [_wanketeacherDesktopIconInfo[i]])
  2086. }, _frag); //
  2087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2090. }
  2091. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2092. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2093. _content = $$("div", {
  2094. className: "U_MD_D_KO",
  2095. "onmousedown": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_wankeAdminDesktopIconInfo[i]]),
  2099. "onclick": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_wankeAdminDesktopIconInfo[i]])
  2103. }, _frag); //
  2104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2107. }
  2108. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2109. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2110. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2111. continue
  2112. }
  2113. _content = $$("div", {
  2114. className: "U_MD_D_KO",
  2115. "onmousedown": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2119. "onclick": U.UF.C.closure(function (obj) {
  2120. //防止拖动图标即打开了桌面应用
  2121. U.MD.D.click(this, obj);
  2122. }, [_scnuaiTeacherDeskIconInfo[i]])
  2123. }, _frag); //
  2124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2127. }
  2128. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2129. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2130. _content = $$("div", {
  2131. className: "U_MD_D_KO",
  2132. "onmousedown": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_scnuaiAdminDeskIconInfo[i]]),
  2136. "onclick": U.UF.C.closure(function (obj) {
  2137. //防止拖动图标即打开了桌面应用
  2138. U.MD.D.click(this, obj);
  2139. }, [_scnuaiAdminDeskIconInfo[i]])
  2140. }, _frag); //
  2141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2144. }
  2145. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2146. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2147. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2148. continue
  2149. }
  2150. _content = $$("div", {
  2151. className: "U_MD_D_KO",
  2152. "onmousedown": U.UF.C.closure(function (obj) {
  2153. //防止拖动图标即打开了桌面应用
  2154. U.MD.D.click(this, obj);
  2155. }, [_jccssylTeacherDeskIconInfo[i]]),
  2156. "onclick": U.UF.C.closure(function (obj) {
  2157. //防止拖动图标即打开了桌面应用
  2158. U.MD.D.click(this, obj);
  2159. }, [_jccssylTeacherDeskIconInfo[i]])
  2160. }, _frag); //
  2161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2164. }
  2165. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2166. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2167. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2168. continue
  2169. }
  2170. _content = $$("div", {
  2171. className: "U_MD_D_KO",
  2172. "onmousedown": U.UF.C.closure(function (obj) {
  2173. //防止拖动图标即打开了桌面应用
  2174. U.MD.D.click(this, obj);
  2175. }, [_caleTeacherDeskIconInfo[i]]),
  2176. "onclick": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_caleTeacherDeskIconInfo[i]])
  2180. }, _frag); //
  2181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2184. }
  2185. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2186. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2187. _content = $$("div", {
  2188. className: "U_MD_D_KO",
  2189. "onmousedown": U.UF.C.closure(function (obj) {
  2190. //防止拖动图标即打开了桌面应用
  2191. U.MD.D.click(this, obj);
  2192. }, [_tpcOrganizerDeskIconInfo[i]]),
  2193. "onclick": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_tpcOrganizerDeskIconInfo[i]])
  2197. }, _frag); //
  2198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2201. }
  2202. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2203. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2204. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2205. continue
  2206. }
  2207. _content = $$("div", {
  2208. className: "U_MD_D_KO",
  2209. "onmousedown": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_tpcTeacherDeskIconInfo[i]]),
  2213. "onclick": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_tpcTeacherDeskIconInfo[i]])
  2217. }, _frag); //
  2218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2221. }
  2222. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2223. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2224. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2225. continue
  2226. }
  2227. _content = $$("div", {
  2228. className: "U_MD_D_KO",
  2229. "onmousedown": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_teacherDesktopIconInfo2[i]]),
  2233. "onclick": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_teacherDesktopIconInfo2[i]])
  2237. }, _frag); //
  2238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2241. }
  2242. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2243. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2244. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2245. continue
  2246. }
  2247. _content = $$("div", {
  2248. className: "U_MD_D_KO",
  2249. "onmousedown": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_thuioeTeacherDeskIconInfo[i]]),
  2253. "onclick": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_thuioeTeacherDeskIconInfo[i]])
  2257. }, _frag); //
  2258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2261. }
  2262. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2263. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2264. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2265. continue
  2266. }
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_lotechTeacherDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_lotechTeacherDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2281. }//
  2282. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2283. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2284. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2285. continue
  2286. }
  2287. _content = $$("div", {
  2288. className: "U_MD_D_KO",
  2289. "onmousedown": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2293. "onclick": U.UF.C.closure(function (obj) {
  2294. //防止拖动图标即打开了桌面应用
  2295. U.MD.D.click(this, obj);
  2296. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2297. }, _frag); //
  2298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2301. }
  2302. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2303. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2304. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2305. continue
  2306. }
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_siesTeacherDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_siesTeacherDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2321. }
  2322. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2323. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2324. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2325. continue
  2326. }
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_guzmsTeacherDeskIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_guzmsTeacherDeskIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2343. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2344. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2345. continue
  2346. }
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_longhuaTeacherDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_longhuaTeacherDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2363. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2364. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2365. continue
  2366. }
  2367. _content = $$("div", {
  2368. className: "U_MD_D_KO",
  2369. "onmousedown": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_ytyTeacherDeskIconInfo[i]]),
  2373. "onclick": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_ytyTeacherDeskIconInfo[i]])
  2377. }, _frag); //
  2378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2381. }
  2382. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2383. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2384. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2385. continue
  2386. }
  2387. _content = $$("div", {
  2388. className: "U_MD_D_KO",
  2389. "onmousedown": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2393. "onclick": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_yunhaiTeacherDeskIconInfo[i]])
  2397. }, _frag); //
  2398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2401. } //_hkStudentDeskIconInfo
  2402. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2403. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2404. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2405. continue
  2406. }
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2421. }
  2422. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2423. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2424. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2425. continue
  2426. }
  2427. _content = $$("div", {
  2428. className: "U_MD_D_KO",
  2429. "onmousedown": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_hkTeacherDeskIconInfo[i]]),
  2433. "onclick": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_hkTeacherDeskIconInfo[i]])
  2437. }, _frag); //
  2438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2441. }
  2442. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2443. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2444. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2445. continue
  2446. }
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_hkaceTeacherDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_hkaceTeacherDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2463. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2464. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2465. continue
  2466. }
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_cocobizTeacherDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_cocobizTeacherDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2483. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2484. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2485. continue
  2486. }
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2503. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_gdjgAdminDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_gdjgAdminDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2520. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2521. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2522. continue
  2523. }
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_gdjgTeacherDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_gdjgTeacherDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2540. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2541. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2542. continue
  2543. }
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_szherTeacherDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_szherTeacherDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2560. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_heyuannAdminDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_heyuannAdminDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2577. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2578. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2579. continue
  2580. }
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_heyuanTeacherDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_heyuanTeacherDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2595. } //
  2596. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2597. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_dseiAdminDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_dseiAdminDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2614. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2615. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2616. continue
  2617. }
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_dseiTeacherDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_dseiTeacherDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2632. } //
  2633. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2634. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_chjyjAdminDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_chjyjAdminDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2649. }//
  2650. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2651. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2652. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2653. continue
  2654. }
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_chjyjTeacherDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_chjyjTeacherDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2671. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_szjkyAdminDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_szjkyAdminDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2686. }//
  2687. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2688. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2689. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2690. continue
  2691. }
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_szjkyTeacherDeskIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_szjkyTeacherDeskIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2708. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_futianAdminDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_futianAdminDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2725. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2726. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2727. continue
  2728. }
  2729. _content = $$("div", {
  2730. className: "U_MD_D_KO",
  2731. "onmousedown": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_futianTeacherDeskIconInfo[i]]),
  2735. "onclick": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_futianTeacherDeskIconInfo[i]])
  2739. }, _frag); //
  2740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2743. }
  2744. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2745. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2746. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2747. continue
  2748. }
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_MingdeTeacherDeskIcon[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_MingdeTeacherDeskIcon[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2763. }
  2764. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2765. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_lhsAdminDesktopIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_lhsAdminDesktopIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2780. }
  2781. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2782. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2783. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2784. continue
  2785. }
  2786. _content = $$("div", {
  2787. className: "U_MD_D_KO",
  2788. "onmousedown": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_lhsteacherDesktopIconInfo[i]]),
  2792. "onclick": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_lhsteacherDesktopIconInfo[i]])
  2796. }, _frag); //
  2797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2800. }
  2801. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2802. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2803. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2804. continue
  2805. }
  2806. _content = $$("div", {
  2807. className: "U_MD_D_KO",
  2808. "onmousedown": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2812. "onclick": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_zhoujiateacherDesktopIconInfo[i]])
  2816. }, _frag); //
  2817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2820. }
  2821. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2822. for (i = 0; i < _hanDeskIcon.length; i++) {
  2823. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2824. continue
  2825. }
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_hanDeskIcon[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_hanDeskIcon[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2840. }
  2841. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2842. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2843. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2844. continue
  2845. }
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_orgStemDeskIcon[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_orgStemDeskIcon[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2862. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2863. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2864. continue
  2865. }
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_szulsDeskIcon[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_szulsDeskIcon[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2882. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2883. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2884. continue
  2885. }
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_orgDesktopIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_orgDesktopIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2902. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2903. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2904. continue
  2905. }
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_schoolDesktopIconInfo[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_schoolDesktopIconInfo[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2920. }
  2921. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2922. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2923. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2924. continue
  2925. }
  2926. _content = $$("div", {
  2927. className: "U_MD_D_KO",
  2928. "onmousedown": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_GMteacherDesktopIconInfo[i]]),
  2932. "onclick": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_GMteacherDesktopIconInfo[i]])
  2936. }, _frag); //
  2937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2940. }
  2941. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2942. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2943. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2944. continue
  2945. }
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_SONGteacherDesktopIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_SONGteacherDesktopIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2962. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_GMstudentDesktopIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_GMstudentDesktopIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2979. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2980. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2981. continue
  2982. }
  2983. _content = $$("div", {
  2984. className: "U_MD_D_KO",
  2985. "onmousedown": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_tcTeacherDeskIconInfo[i]]),
  2989. "onclick": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_tcTeacherDeskIconInfo[i]])
  2993. }, _frag); //
  2994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2997. }
  2998. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2999. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3000. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3001. continue
  3002. }
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_tcOrganizerDeskIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_tcOrganizerDeskIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3019. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3020. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3021. continue
  3022. }
  3023. _content = $$("div", {
  3024. className: "U_MD_D_KO",
  3025. "onmousedown": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_szscTeacherDeskIconInfo[i]]),
  3029. "onclick": U.UF.C.closure(function (obj) {
  3030. //防止拖动图标即打开了桌面应用
  3031. U.MD.D.click(this, obj);
  3032. }, [_szscTeacherDeskIconInfo[i]])
  3033. }, _frag); //
  3034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3037. }
  3038. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3039. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3040. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3041. continue
  3042. }
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_szscOrganizerDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_szscOrganizerDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else {
  3059. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3060. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3061. continue
  3062. }
  3063. _content = $$("div", {
  3064. className: "U_MD_D_KO",
  3065. "onmousedown": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_teacherDesktopIconInfo[i]]),
  3069. "onclick": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_teacherDesktopIconInfo[i]])
  3073. }, _frag); //
  3074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3077. }
  3078. }
  3079. } else {
  3080. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3081. _content = $$("div", {
  3082. className: "U_MD_D_KO",
  3083. style: { 'width': '124px', 'height': '145px' },
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_easyDesktopIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_easyDesktopIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3096. }
  3097. }
  3098. if (type == 1) {
  3099. //加载好后给图标定位
  3100. U.MD.D.iconPostion($(_frag).Child());
  3101. } else {
  3102. //加载好后给图标定位
  3103. U.MD.D.iconPostion2($(_frag).Child());
  3104. }
  3105. //把图标加载到页面
  3106. el.appendChild(_frag);
  3107. }
  3108. /**
  3109. * 显示任务栏
  3110. *
  3111. * @param {element} 桌面元素
  3112. */
  3113. U.MD.D.I.displayTaskbar = function (el) {
  3114. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3115. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3116. //任务栏位置变化
  3117. U.selectEl(el).css({ "bottom": "0px" });
  3118. //桌面位置变话
  3119. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3120. }
  3121. }
  3122. //#region 桌面图标拖动逻辑
  3123. /**
  3124. * 桌面排列图标
  3125. *
  3126. * @param {element} 桌面元素
  3127. * @param {object} 上下相距的距离
  3128. * @param {object} 左右相距的距离
  3129. * @return {object} 命名空间
  3130. */
  3131. U.MD.D.iconPostion = function (childs, top, left) {
  3132. var i; //用于循环处理
  3133. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3134. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3135. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3136. for (i = 0; i < childs.length; i++) {
  3137. //如果竖排top超过了范围处理
  3138. if (top + 95 > US.height - 10) {
  3139. //left超过了页面范围处理,则向上重叠打印处理
  3140. if ((left + 180) > US.width) {
  3141. top -= 110;
  3142. left -= 90;
  3143. }
  3144. //没有超过范围,那么left+90添加到下一个竖排打印
  3145. else {
  3146. left += 90;
  3147. top = 15;
  3148. };
  3149. }
  3150. //给图标的位置赋值
  3151. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3152. if (i < childs.length - 1) {
  3153. //页面图标每次向下加95
  3154. top += 95;
  3155. }
  3156. }
  3157. //返回最后调用的图标的位置
  3158. return [top, left];
  3159. }
  3160. /**
  3161. * 桌面排列图标
  3162. *
  3163. * @param {element} 桌面元素
  3164. * @param {object} 上下相距的距离
  3165. * @param {object} 左右相距的距离
  3166. * @return {object} 命名空间
  3167. */
  3168. U.MD.D.iconPostion2 = function (childs, top, left) {
  3169. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3170. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3171. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3172. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3173. for (i = 0; i < childs.length; i++) {
  3174. //如果竖排top超过了范围处理
  3175. if (left + 150 > US.width - 10) {
  3176. //left超过了页面范围处理,则向上重叠打印处理
  3177. if ((top + 180) > US.Height) {
  3178. top -= 150;
  3179. left -= 150;
  3180. }
  3181. //没有超过范围,那么left+90添加到下一个竖排打印
  3182. else {
  3183. top += 150;
  3184. left = ol;
  3185. };
  3186. }
  3187. //给图标的位置赋值
  3188. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3189. if (i < childs.length - 1) {
  3190. //页面图标每次向下加95
  3191. left += 150;
  3192. }
  3193. }
  3194. //返回最后调用的图标的位置
  3195. return [top, left];
  3196. }
  3197. /**
  3198. * 桌面点击事件逻辑
  3199. *
  3200. * @param {element} 桌面元素
  3201. * @param {object} 上下相距的距离
  3202. * @param {object} 左右相距的距离
  3203. * @return {object} 命名空间
  3204. */
  3205. U.MD.D.click = function (el, obj) {
  3206. var _buttonnumber = event.button; //点击的按钮的事件值
  3207. var _userinfo = US.userInfo;
  3208. U.UF.EV.stopBubble(); //阻止向上冒泡
  3209. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3210. if (_buttonnumber < 2) {
  3211. //如果是click事件的处理
  3212. if (event.type == "click") {
  3213. //如果元素在mousemove事件中没有移动则出发click事件
  3214. if (!U.MD.D.I.IsDrag) {
  3215. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3216. U.alert("请先登录您的账号!");
  3217. setTimeout(() => {
  3218. U.MD.U.L.login();
  3219. }, 2000);
  3220. } else {
  3221. //打开应用处理
  3222. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3223. }
  3224. }
  3225. }
  3226. //如果是mouse事件的处理
  3227. else {
  3228. if (US.Config.type == '1') {
  3229. //拖动处理,添加拖动和拖动结束事件
  3230. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3231. }
  3232. }
  3233. U.MD.D.I.IsDrag = false;
  3234. }
  3235. }
  3236. /**
  3237. * 拖动的处理
  3238. *
  3239. */
  3240. U.MD.D.iconMove = function () {
  3241. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3242. U.MD.D.I.IsDrag = true;
  3243. }
  3244. /**
  3245. * 拖动结束后,这里是定位处理,以网状的形式定位
  3246. *
  3247. * @param {element} 拖动的元素
  3248. * @return {object} 命名空间
  3249. */
  3250. U.MD.D.iconUp = function (el) {
  3251. var _top = 15,
  3252. _left = 20,
  3253. _margin,
  3254. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3255. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3256. if (_positioninfo["OT"] > 15) {
  3257. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3258. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3259. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3260. }
  3261. if (_positioninfo["OL"] > 20) {
  3262. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3263. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3264. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3265. }
  3266. //while循环判断么一个重叠的元素
  3267. do {
  3268. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3269. _top = _positioninfo[0] + 95; //得到定位后的top
  3270. _left = _positioninfo[1]; //得到定位后的left
  3271. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3272. }
  3273. /**
  3274. * 判断拖动后图标是否重叠
  3275. *
  3276. * @param {element} 拖动的元素
  3277. * @param {element} 桌面所有的元素
  3278. * @param {array} 拖动元素的位置
  3279. ----------[0] 上 top
  3280. ----------[1] 左 left
  3281. * @return {object} 命名空间
  3282. */
  3283. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3284. //循环所有的图标
  3285. for (var i = 0; i < childs.length; i++) {
  3286. //判断有没有和该图标诶子重叠的元素
  3287. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3288. return childs[i]; //如果有返回
  3289. }
  3290. }
  3291. }
  3292. //#endregion
  3293. //#endregion
  3294. //#region 桌面应用
  3295. /**
  3296. * 打开应用
  3297. *
  3298. * @param {string} 类型
  3299. -----------------Disk 网盘系统
  3300. -----------------PDisk 学习系统网盘
  3301. -----------------Poto 图片
  3302. -----------------Video 视频
  3303. -----------------Music 音乐
  3304. -----------------Word word
  3305. -----------------Excel excel
  3306. -----------------Txt 记事本
  3307. -----------------PB 学习系统
  3308. -----------------Blog 朋友圈系统
  3309. -----------------FTP ftp系统
  3310. -----------------Group 好友群
  3311. -----------------SY 首页系统
  3312. -----------------Set 个人设置
  3313. -----------------XSet 系统设置
  3314. -----------------App 我们所有的app
  3315. -----------------BC c.1473.cn 平台
  3316. -----------------CWeb d.1473.cn 变成平台
  3317. -----------------其他的外联系统 我们统一用iframe打开
  3318. * @param {array} 类型
  3319. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3320. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3321. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3322. 如果第一个参数为其他,则无第二个参数
  3323. * @returns {array}
  3324. */
  3325. window.addEventListener('message', function (e) { // 监听 message 事件
  3326. // alert(e.data.type);
  3327. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3328. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3329. //3是展示全部阶段 2学生 1老师 4专家
  3330. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3331. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3332. //3是展示全部阶段 2学生 1老师 4专家
  3333. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3334. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3335. //3是展示全部阶段 2学生 1老师 4专家
  3336. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3337. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3338. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3339. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3340. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3341. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3342. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3343. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3344. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3345. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3346. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3347. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3348. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3349. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3350. //3是展示全部阶段 2学生 1老师 4专家
  3351. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3352. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3353. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3354. U.MD.D.I.selectUser();
  3355. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3356. var _formel = document.getElementById("study");
  3357. U.UF.F.windowZooming(_formel);
  3358. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3359. var _formel = document.getElementById("studyDetail");
  3360. U.UF.F.windowZooming(_formel);
  3361. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3362. var _formel = document.getElementById("studyDetail");
  3363. U.UF.F.windowZooming(_formel);
  3364. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3365. var _formel = document.getElementById("studentStudy");
  3366. U.UF.F.windowZooming(_formel);
  3367. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3368. // var _formel = document.getElementById("study");
  3369. //如果最大化了,那么就把他缩小
  3370. // if (_formel.ismaximize) {
  3371. // return;
  3372. // }
  3373. // U.UF.F.windowZooming(_formel);
  3374. // U.UF.F.topWindow(_formel);
  3375. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3376. // var _formel = document.getElementById("studyDetail");
  3377. //如果最大化了,那么就把他缩小
  3378. // if (_formel.ismaximize) {
  3379. // return;
  3380. // }
  3381. // U.UF.F.windowZooming(_formel);
  3382. // U.UF.F.topWindow(_formel);
  3383. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3384. // var _formel = document.getElementById("studentStudy");
  3385. // if (_formel.ismaximize) {
  3386. // return;
  3387. // }
  3388. // U.UF.F.windowZooming(_formel);
  3389. // U.UF.F.topWindow(_formel);
  3390. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3391. var _formel = document.getElementById("study");
  3392. // if (_formel.ismaximize) {
  3393. // return;
  3394. // }
  3395. // U.UF.F.windowZooming(_formel);
  3396. U.UF.F.topWindow(_formel);
  3397. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3398. var _formel = document.getElementById("studentIndex");
  3399. U.UF.F.windowZooming(_formel);
  3400. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3401. var _formel = document.getElementById("studyDetailS");
  3402. U.UF.F.windowZooming(_formel);
  3403. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3404. var _formel = document.getElementById("studioIndex");
  3405. U.UF.F.windowZooming(_formel);
  3406. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3407. var _formel = document.getElementById("studyDetailStudio");
  3408. U.UF.F.windowZooming(_formel);
  3409. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3410. var _formel = document.getElementById("studyDetailStudio");
  3411. U.UF.F.windowZooming(_formel);
  3412. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3413. var _formel = document.getElementById("studyDetailNT");
  3414. U.UF.F.windowZooming(_formel);
  3415. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3416. var _formel = document.getElementById("studyDetailS");
  3417. U.UF.F.windowZooming(_formel);
  3418. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3419. var _formel = document.getElementById("studyDetailS");
  3420. U.UF.F.topWindow(_formel);
  3421. } else if (e.data.tools && e.data.tools == "1") {
  3422. // U.MD.D.I.openApplication("whiteboard")
  3423. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3424. } else if (e.data.tools && e.data.tools == "2") {
  3425. U.MD.D.I.openApplication("note")
  3426. } else if (e.data.tools && e.data.tools == "3") {
  3427. // U.MD.D.I.openApplication("mind")
  3428. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3429. } else if (e.data.tools && e.data.tools == "4") {
  3430. U.MD.D.I.openApplication("investigation")
  3431. } else if (e.data.tools && e.data.tools == "6") {
  3432. // U.MD.D.I.openApplication("doc")
  3433. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3434. } else if (e.data.tools && e.data.tools == "7") {
  3435. // U.MD.D.I.openApplication("mindNetwork")
  3436. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3437. } else if (e.data.tools && e.data.tools == "8") {
  3438. U.MD.D.I.openApplication("library")
  3439. } else if (e.data.tools && e.data.tools == "17") {
  3440. U.MD.D.I.openApplication("stuLibrary")
  3441. } else if (e.data.tools && e.data.tools == "18") {
  3442. U.MD.D.I.openApplication("train")
  3443. } else if (e.data.tools && e.data.tools == "21") {
  3444. U.MD.D.I.openApplication("program")
  3445. } else if (e.data.tools && e.data.tools == "22") {
  3446. U.MD.D.I.openApplication("AIprogram2")
  3447. } else if (e.data.tools && e.data.tools == "23") {
  3448. U.MD.D.I.openApplication("Pythonprogram")
  3449. } else if (e.data.tools && e.data.tools == "24") {
  3450. U.MD.D.I.openApplication("AIprogram")
  3451. } else if (e.data.tools && e.data.tools == "25") {
  3452. U.MD.D.I.openApplication("sys")
  3453. } else if (e.data.tools && e.data.tools == "26") {
  3454. // U.MD.D.I.openApplication("courseDesign")
  3455. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3456. } else if (e.data.tools && e.data.tools == "31") {
  3457. U.MD.D.I.openApplication("netWorkPanel")
  3458. } else if (e.data.tools && e.data.tools == "32") {
  3459. U.MD.D.I.openApplication("codeEdit")
  3460. } else if (e.data.tools && e.data.tools == "57") {
  3461. U.MD.D.I.openApplication("CocoPi")
  3462. } else if (e.data.tools && e.data.tools == "63") {
  3463. U.MD.D.I.openApplication("Wood")
  3464. } else if (e.data.tools && e.data.tools == "58") {
  3465. U.MD.D.I.openApplication("car")
  3466. } else if (e.data.tools && e.data.tools == "59") {
  3467. U.MD.D.I.openApplication("lineSearch")
  3468. } else if (e.data.tools && e.data.tools == "60") {
  3469. U.MD.D.I.openApplication("deepLearning")
  3470. } else if (e.data.tools && e.data.tools == "61") {
  3471. U.MD.D.I.openApplication("allHistory")
  3472. } else if (e.data.tools && e.data.tools == "28") {
  3473. U.MD.D.I.openApplication("translation")
  3474. } else if (e.data.tools && e.data.tools == "37") {
  3475. U.MD.D.I.openApplication("mohe")
  3476. } else if (e.data.tools && e.data.tools == "38") {
  3477. U.MD.D.I.openApplication("24game")
  3478. } else if (e.data.tools && e.data.tools == "39") {
  3479. U.MD.D.I.openApplication("GeoGebra")
  3480. } else if (e.data.tools && e.data.tools == "43") {
  3481. U.MD.D.I.openApplication("studentEvaluate")
  3482. } else if (e.data.tools && e.data.tools == "44") {
  3483. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3484. } else if (e.data.tools && e.data.tools == "46") {
  3485. U.MD.D.I.openApplication("project")
  3486. } else if (e.data.tools && e.data.tools == "71") {
  3487. U.MD.D.I.openApplication("aigptCourse")
  3488. } else if (e.data.tools && e.data.tools == "1s") {
  3489. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3490. } else if (e.data.tools && e.data.tools == "3s") {
  3491. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3492. } else if (e.data.tools && e.data.tools == "6s") {
  3493. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3494. } else if (e.data.tools && e.data.tools == "1studio") {
  3495. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3496. } else if (e.data.tools && e.data.tools == "3studio") {
  3497. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3498. } else if (e.data.tools && e.data.tools == "6studio") {
  3499. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3500. } else if (e.data.tools && e.data.tools == "3y") {
  3501. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3502. } else if (e.data.tools && e.data.tools == "1y") {
  3503. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3504. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3505. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3506. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3507. U.MD.D.I.openApplication("AIAnalyse")
  3508. } else if (e.data.tools && e.data.tools == "1teacher") {
  3509. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3510. } else if (e.data.tools && e.data.tools == "3teacher") {
  3511. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3512. } else if (e.data.tools && e.data.tools == "7teacher") {
  3513. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3514. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3515. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3516. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3517. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3518. } else if (e.data.tools && e.data.tools == "1E") {
  3519. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3520. } else if (e.data.tools && e.data.tools == "3E") {
  3521. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3522. } else if (e.data.tools && e.data.tools == "57y") {
  3523. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3524. } else if (e.data.tools && e.data.tools == "57u") {
  3525. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3526. } else if (e.data.tools && e.data.tools == "57teacher") {
  3527. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3528. } else if (e.data.tools && e.data.tools == "64") {
  3529. U.MD.D.I.openApplication("AIChat")
  3530. } else if (e.data.tools && e.data.tools == "66") {
  3531. U.MD.D.I.openApplication("formulaEdi")
  3532. } else if (e.data.tools && e.data.tools == "67") {
  3533. U.MD.D.I.openApplication("molStr")
  3534. } else if (e.data.tools && e.data.tools == "68") {
  3535. U.MD.D.I.openApplication("timeAxis")
  3536. } else if (e.data.tools && e.data.tools == "openCourse") {
  3537. let _data = {
  3538. typea: e.data.typea || '',
  3539. typeb: e.data.typeb || '',
  3540. typed: e.data.typed || '',
  3541. }
  3542. U.MD.D.I.openInApplication("index", _data)
  3543. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3544. let _data = {
  3545. classid: e.data.classid || '',
  3546. }
  3547. U.MD.D.I.openInApplication("dataClass", _data)
  3548. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3549. let _data = {
  3550. cid: e.data.cid || '',
  3551. gid: e.data.gid || '',
  3552. }
  3553. U.MD.D.I.openInApplication("opencCscl", _data)
  3554. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3555. U.MD.D.I.openApplication("dataBoardTest")
  3556. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3557. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3558. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3559. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3560. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3561. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3562. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3563. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3564. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3565. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3566. }else if (e.data.tools && e.data.tools == "loginSz") {
  3567. U.MD.D.I.openInApplication("loginSz")
  3568. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3569. if($('#classroom_observation_board')[0]){
  3570. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3571. }
  3572. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3573. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3574. if($('#classroom_observation_ob_comment')[0]){
  3575. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3576. }
  3577. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3578. }
  3579. });
  3580. U.MD.D.I.selectUser = function () {
  3581. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3582. if (res.value[0].length > 0) {
  3583. US.userInfo = res.value[0][0];
  3584. $(".userName")[0].innerHTML = US.userInfo.username;
  3585. }
  3586. }, [], { "type": "GET", "withCredentials": true });
  3587. }
  3588. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3589. var _userinfo = US.userInfo, //登录用户信息
  3590. _userid = US.userInfo.userid, //登录用户id
  3591. _oid = _userinfo.organizeid,
  3592. _type = US.userInfo.type,
  3593. _org = US.userInfo.org,
  3594. _role = US.userInfo.role,
  3595. _classId = US.userInfo.classid;
  3596. if (_type == 4) {
  3597. tType = 4
  3598. }
  3599. switch (str) {
  3600. case "studyDetailNT": //无终端模式
  3601. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3602. setTimeout(() => {
  3603. U.MD.U.L.login();
  3604. }, 2000);
  3605. } else {
  3606. _formdiv = new U.UF.UI.form(
  3607. "课程详情",
  3608. $$("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 }), {
  3609. "id": "studyDetailNT",
  3610. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3611. "onresize": function () { }
  3612. }, {
  3613. closecallback: function () { }
  3614. }, { "style": { "height": "36px" } }).form; //创建窗体
  3615. _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); } }
  3616. break;
  3617. }
  3618. case "studyDetail":
  3619. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3620. setTimeout(() => {
  3621. U.MD.U.L.login();
  3622. }, 2000);
  3623. } else {
  3624. _formdiv = new U.UF.UI.form(
  3625. "课程详情",
  3626. $$("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 }), {
  3627. "id": "studyDetail",
  3628. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3629. "onresize": function () { }
  3630. }, {
  3631. closecallback: function () { }
  3632. }, { "style": { "height": "36px" } }).form; //创建窗体
  3633. _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); } }
  3634. break;
  3635. }
  3636. case "studyDetailTrain":
  3637. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3638. setTimeout(() => {
  3639. U.MD.U.L.login();
  3640. }, 2000);
  3641. } else {
  3642. _formdiv = new U.UF.UI.form(
  3643. "培训详情",
  3644. $$("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 }), {
  3645. "id": "studyDetailTrain",
  3646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3647. "onresize": function () { }
  3648. }, {
  3649. closecallback: function () { }
  3650. }, { "style": { "height": "36px" } }).form; //创建窗体
  3651. _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); } }
  3652. break;
  3653. }
  3654. case "studyDetailS":
  3655. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3656. setTimeout(() => {
  3657. U.MD.U.L.login();
  3658. }, 2000);
  3659. } else {
  3660. _formdiv = new U.UF.UI.form(
  3661. "项目详情",
  3662. $$("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 }), {
  3663. "id": "studyDetailS",
  3664. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3665. "onresize": function () { }
  3666. }, {
  3667. closecallback: function () { }
  3668. }, { "style": { "height": "36px" } }).form; //创建窗体
  3669. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3670. break;
  3671. }
  3672. case "studyDetailStudio":
  3673. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3674. setTimeout(() => {
  3675. U.MD.U.L.login();
  3676. }, 2000);
  3677. } else {
  3678. _formdiv = new U.UF.UI.form(
  3679. "工作详情",
  3680. $$("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 }), {
  3681. "id": "studyDetailStudio",
  3682. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3683. "onresize": function () { }
  3684. }, {
  3685. closecallback: function () { }
  3686. }, { "style": { "height": "36px" } }).form; //创建窗体
  3687. _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); } }
  3688. break;
  3689. }
  3690. case "studyDetailS5":
  3691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3692. setTimeout(() => {
  3693. U.MD.U.L.login();
  3694. }, 2000);
  3695. } else {
  3696. _formdiv = new U.UF.UI.form(
  3697. "项目详情",
  3698. $$("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 }), {
  3699. "id": "studyDetailS",
  3700. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3701. "onresize": function () { }
  3702. }, {
  3703. closecallback: function () { }
  3704. }, { "style": { "height": "36px" } }).form; //创建窗体
  3705. _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); } }
  3706. break;
  3707. }
  3708. case "studyDetailGM":
  3709. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3710. setTimeout(() => {
  3711. U.MD.U.L.login();
  3712. }, 2000);
  3713. } else {
  3714. _formdiv = new U.UF.UI.form(
  3715. "课程详情",
  3716. $$("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 }), {
  3717. "id": "studyDetail",
  3718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3719. "onresize": function () { }
  3720. }, {
  3721. closecallback: function () { }
  3722. }, { "style": { "height": "36px" } }).form; //创建窗体
  3723. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3724. break;
  3725. }
  3726. case "hanUrl":
  3727. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3728. setTimeout(() => {
  3729. U.MD.U.L.login();
  3730. }, 2000);
  3731. } else {
  3732. _formdiv = new U.UF.UI.form(
  3733. "汉字宫",
  3734. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  3735. "id": "hanUrl",
  3736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3737. "onresize": function () { }
  3738. }, {
  3739. closecallback: function () { }
  3740. }, { "style": { "height": "36px" } }).form; //创建窗体
  3741. _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); } }
  3742. break;
  3743. }
  3744. case "index":
  3745. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3746. setTimeout(() => {
  3747. U.MD.U.L.login();
  3748. }, 2000);
  3749. } else {
  3750. _formdiv = new U.UF.UI.form(
  3751. "课程中心",
  3752. $$("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 }), {
  3753. "id": "study",
  3754. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3755. "onresize": function () { }
  3756. }, {
  3757. closecallback: function () { }
  3758. }, { "style": { "height": "36px" } }).form; //创建窗体
  3759. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3760. break;
  3761. }
  3762. case "dataClass":
  3763. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3764. setTimeout(() => {
  3765. U.MD.U.L.login();
  3766. }, 2000);
  3767. } else {
  3768. _formdiv = new U.UF.UI.form(
  3769. "数据报告",
  3770. $$("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 }), {
  3771. "id": "dataClass",
  3772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3773. "onresize": function () { }
  3774. }, {
  3775. closecallback: function () { }
  3776. }, { "style": { "height": "36px" } }).form; //创建窗体
  3777. _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); } }
  3778. break;
  3779. }
  3780. case "opencCscl":
  3781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3782. setTimeout(() => {
  3783. U.MD.U.L.login();
  3784. }, 2000);
  3785. } else {
  3786. _formdiv = new U.UF.UI.form(
  3787. "协同建构",
  3788. $$("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 }), {
  3789. "id": "futureClass",
  3790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3791. "onresize": function () { }
  3792. }, {
  3793. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3794. }, { "style": { "height": "36px" } }).form; //创建窗体
  3795. _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); } }
  3796. break;
  3797. }
  3798. case "openCourseUpdate":
  3799. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3800. setTimeout(() => {
  3801. U.MD.U.L.login();
  3802. }, 2000);
  3803. } else {
  3804. _formdiv = new U.UF.UI.form(
  3805. "课程管理",
  3806. $$("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 }), {
  3807. "id": "openCourseUpdate",
  3808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3809. "onresize": function () { }
  3810. }, {
  3811. closecallback: function () { }
  3812. }, { "style": { "height": "36px" } }).form; //创建窗体
  3813. break;
  3814. }
  3815. case "openNewCourseUpdate":
  3816. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3817. setTimeout(() => {
  3818. U.MD.U.L.login();
  3819. }, 2000);
  3820. } else {
  3821. _formdiv = new U.UF.UI.form(
  3822. "课程管理",
  3823. $$("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 }), {
  3824. "id": "openCourseUpdate",
  3825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3826. "onresize": function () { }
  3827. }, {
  3828. closecallback: function () { }
  3829. }, { "style": { "height": "36px" } }).form; //创建窗体
  3830. break;
  3831. }
  3832. case "openCourseEUpdate":
  3833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3834. setTimeout(() => {
  3835. U.MD.U.L.login();
  3836. }, 2000);
  3837. } else {
  3838. _formdiv = new U.UF.UI.form(
  3839. "课程管理",
  3840. $$("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 }), {
  3841. "id": "openCourseUpdate",
  3842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3843. "onresize": function () { }
  3844. }, {
  3845. closecallback: function () { }
  3846. }, { "style": { "height": "36px" } }).form; //创建窗体
  3847. break;
  3848. }
  3849. case "openCourseAiUpdate":
  3850. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3851. setTimeout(() => {
  3852. U.MD.U.L.login();
  3853. }, 2000);
  3854. } else {
  3855. _formdiv = new U.UF.UI.form(
  3856. "课程管理",
  3857. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3858. "id": "openCourseUpdate",
  3859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3860. "onresize": function () { }
  3861. }, {
  3862. closecallback: function () { }
  3863. }, { "style": { "height": "36px" } }).form; //创建窗体
  3864. break;
  3865. }
  3866. case "openCourseNewUpdate":
  3867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3868. setTimeout(() => {
  3869. U.MD.U.L.login();
  3870. }, 2000);
  3871. } else {
  3872. _formdiv = new U.UF.UI.form(
  3873. "课程管理",
  3874. $$("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 }), {
  3875. "id": "openCourseUpdate",
  3876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3877. "onresize": function () { }
  3878. }, {
  3879. closecallback: function () { }
  3880. }, { "style": { "height": "36px" } }).form; //创建窗体
  3881. break;
  3882. }
  3883. case "inviteLoginSz":
  3884. _formdiv = new U.UF.UI.form(
  3885. "随机码登录",
  3886. $$("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 }), {
  3887. "id": "loginSz",
  3888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3889. "onresize": function () { }
  3890. }, {
  3891. closecallback: function () { }
  3892. }, { "style": { "height": "36px" } }).form; //创建窗体
  3893. break;
  3894. case "loginSz":
  3895. _formdiv = new U.UF.UI.form(
  3896. "教师登录",
  3897. $$("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" }), {
  3898. "id": "loginSz",
  3899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3900. "onresize": function () { }
  3901. }, {
  3902. closecallback: function () { }
  3903. }, { "style": { "height": "36px" } }).form; //创建窗体
  3904. break;
  3905. case "teacher":
  3906. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3907. setTimeout(() => {
  3908. U.MD.U.L.login();
  3909. }, 2000);
  3910. } else {
  3911. _formdiv = new U.UF.UI.form(
  3912. "教师管理",
  3913. $$("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 }), {
  3914. "id": "teacher",
  3915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3916. "onresize": function () { }
  3917. }, {
  3918. closecallback: function () { }
  3919. }, { "style": { "height": "36px" } }).form; //创建窗体
  3920. break;
  3921. }
  3922. case "dataBoardSZArea":
  3923. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3924. setTimeout(() => {
  3925. U.MD.U.L.login();
  3926. }, 2000);
  3927. } else {
  3928. _formdiv = new U.UF.UI.form(
  3929. "综合数据看板",
  3930. $$("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 }), {
  3931. "id": "dataBoardSZArea",
  3932. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3933. "onresize": function () { }
  3934. }, {
  3935. closecallback: function () { }
  3936. }, { "style": { "height": "36px" } }).form; //创建窗体
  3937. break;
  3938. }
  3939. case "dataBoardSZCity":
  3940. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3941. setTimeout(() => {
  3942. U.MD.U.L.login();
  3943. }, 2000);
  3944. } else {
  3945. _formdiv = new U.UF.UI.form(
  3946. "综合数据看板",
  3947. $$("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 }), {
  3948. "id": "dataBoardSZCity",
  3949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3950. "onresize": function () { }
  3951. }, {
  3952. closecallback: function () { }
  3953. }, { "style": { "height": "36px" } }).form; //创建窗体
  3954. break;
  3955. }
  3956. case "classroom_observation_board":
  3957. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3958. setTimeout(() => {
  3959. U.MD.U.L.login();
  3960. }, 2000);
  3961. } else {
  3962. _formdiv = new U.UF.UI.form(
  3963. "课堂观察",
  3964. $$("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 }), {
  3965. "id": "classroom_observation_board",
  3966. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3967. "onresize": function () { }
  3968. }, {
  3969. closecallback: function () { }
  3970. }, { "style": { "height": "36px" } }).form; //创建窗体
  3971. break;
  3972. }
  3973. case "classroom_observation_ob_comment":
  3974. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3975. setTimeout(() => {
  3976. U.MD.U.L.login();
  3977. }, 2000);
  3978. } else {
  3979. _formdiv = new U.UF.UI.form(
  3980. "课堂审核",
  3981. $$("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 }), {
  3982. "id": "classroom_observation_ob_comment",
  3983. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3984. "onresize": function () { }
  3985. }, {
  3986. closecallback: function () { }
  3987. }, { "style": { "height": "36px" } }).form; //创建窗体
  3988. break;
  3989. }
  3990. }
  3991. }
  3992. U.MD.D.I.openApplication = function (str, obj, info) {
  3993. obj = obj || {};
  3994. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3995. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3996. _userinfo = US.userInfo, //登录用户信息
  3997. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3998. _oid = obj.organizeid || _userinfo.organizeid,
  3999. _type = US.userInfo.type,
  4000. _org = US.userInfo.org,
  4001. _role = US.userInfo.role,
  4002. _classId = US.userInfo.classid,
  4003. _TscreenType = 1
  4004. _screenType = 2,
  4005. _SscreenType = 3;
  4006. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4007. return;
  4008. }
  4009. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4010. switch (str) {
  4011. case "studnetProject": //好友打开
  4012. _formdiv = new U.UF.UI.form(
  4013. "我的项目",
  4014. $$("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 }), {
  4015. "id": "studnetProject",
  4016. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4017. "onresize": function () { }
  4018. }, {
  4019. closecallback: function () { }
  4020. }, { "style": { "height": "36px" } }).form; //创建窗体
  4021. _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); } }
  4022. break;
  4023. case "studentEvaluate": //好友打开
  4024. _formdiv = new U.UF.UI.form(
  4025. "我的评价",
  4026. $$("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 }), {
  4027. "id": "studentEvaluate",
  4028. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4029. "onresize": function () { }
  4030. }, {
  4031. closecallback: function () { }
  4032. }, { "style": { "height": "36px" } }).form; //创建窗体
  4033. _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); } }
  4034. break;
  4035. case "my":
  4036. _formdiv = new U.UF.UI.form(
  4037. "我的资料",
  4038. $$("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 }), {
  4039. "id": "my",
  4040. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4041. "onresize": function () { }
  4042. }, {
  4043. closecallback: function () { }
  4044. }, { "style": { "height": "36px" } }).form; //创建窗体
  4045. _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); } }
  4046. break;
  4047. case "program":
  4048. _formdiv = new U.UF.UI.form(
  4049. "编程平台",
  4050. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4051. "id": "program",
  4052. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4053. "onresize": function () { }
  4054. }, {
  4055. closecallback: function () { }
  4056. }, { "style": { "height": "36px" } }).form; //创建窗体
  4057. _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); } }
  4058. break;
  4059. case "library":
  4060. _formdiv = new U.UF.UI.form(
  4061. "素材库",
  4062. $$("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 }), {
  4063. "id": "library",
  4064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4065. "onresize": function () { }
  4066. }, {
  4067. closecallback: function () { }
  4068. }, { "style": { "height": "36px" } }).form; //创建窗体
  4069. _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); } }
  4070. break;
  4071. case "whiteboard":
  4072. _formdiv = new U.UF.UI.form(
  4073. "电子白板",
  4074. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4075. "id": "whiteboard",
  4076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4077. "onresize": function () { }
  4078. }, {
  4079. closecallback: function () { }
  4080. }, { "style": { "height": "36px" } }).form; //创建窗体
  4081. _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); } }
  4082. break;
  4083. case "investigation":
  4084. _formdiv = new U.UF.UI.form(
  4085. "问卷调查",
  4086. $$("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 }), {
  4087. "id": "investigation",
  4088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4089. "onresize": function () { }
  4090. }, {
  4091. closecallback: function () { }
  4092. }, { "style": { "height": "36px" } }).form; //创建窗体
  4093. _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); } }
  4094. break;
  4095. case "note":
  4096. _formdiv = new U.UF.UI.form(
  4097. "便签分类",
  4098. $$("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 }), {
  4099. "id": "note",
  4100. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4101. "onresize": function () { }
  4102. }, {
  4103. closecallback: function () { }
  4104. }, { "style": { "height": "36px" } }).form; //创建窗体
  4105. _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); } }
  4106. break;
  4107. // case "score":
  4108. // _formdiv = new U.UF.UI.form(
  4109. // "量规评分",
  4110. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4111. // "id": "score",
  4112. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4113. // "onresize": function() {}
  4114. // }, {
  4115. // closecallback: function() {}
  4116. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4117. // _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); } }
  4118. // break;
  4119. case "mind":
  4120. _formdiv = new U.UF.UI.form(
  4121. "思维导图",
  4122. $$("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"
  4123. "id": "mind",
  4124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4125. "onresize": function () { }
  4126. }, {
  4127. closecallback: function () { }
  4128. }, { "style": { "height": "36px" } }).form; //创建窗体
  4129. _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); } }
  4130. break;
  4131. case "doc":
  4132. // U.MD.D.I.isRoom();
  4133. _formdiv = new U.UF.UI.form(
  4134. "协同文档",
  4135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4136. "id": "doc",
  4137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4138. "onresize": function () { }
  4139. }, {
  4140. closecallback: function () { }
  4141. }, { "style": { "height": "36px" } }).form; //创建窗体
  4142. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4143. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4144. // })
  4145. _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); } }
  4146. break;
  4147. case "studentStudy":
  4148. _formdiv = new U.UF.UI.form(
  4149. "课程中心",
  4150. $$("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
  4151. "id": "studentStudy",
  4152. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4153. "onresize": function () { }
  4154. }, {
  4155. closecallback: function () { }
  4156. }, { "style": { "height": "36px" } }).form; //创建窗体
  4157. _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); } }
  4158. break;
  4159. case "train": //好友打开
  4160. _formdiv = new U.UF.UI.form(
  4161. "训练平台",
  4162. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4163. "id": "train",
  4164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4165. "onresize": function () { }
  4166. }, {
  4167. closecallback: function () { }
  4168. }, { "style": { "height": "36px" } }).form; //创建窗体
  4169. _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); } }
  4170. break;
  4171. case "mindNetwork": //好友打开
  4172. _formdiv = new U.UF.UI.form(
  4173. "思维网格",
  4174. $$("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 }), {
  4175. "id": "mindNetwork",
  4176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4177. "onresize": function () { }
  4178. }, {
  4179. closecallback: function () { }
  4180. }, { "style": { "height": "36px" } }).form; //创建窗体
  4181. _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); } }
  4182. break;
  4183. case "studentClassRoom": //好友打开
  4184. _formdiv = new U.UF.UI.form(
  4185. "实时课堂",
  4186. $$("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 }), {
  4187. "id": "studentClassRoom",
  4188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4189. "onresize": function () { }
  4190. }, {
  4191. closecallback: function () { }
  4192. }, { "style": { "height": "36px" } }).form; //创建窗体
  4193. _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); } }
  4194. setTimeout(() => {
  4195. U.UF.F.windowZooming(_formdiv)
  4196. }, 0);
  4197. break;
  4198. }
  4199. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4200. switch (str) {
  4201. case "studnetProject": //好友打开
  4202. _formdiv = new U.UF.UI.form(
  4203. "我的项目",
  4204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  4205. "id": "studnetProject",
  4206. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4207. "onresize": function () { }
  4208. }, {
  4209. closecallback: function () { }
  4210. }, { "style": { "height": "36px" } }).form; //创建窗体
  4211. _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); } }
  4212. break;
  4213. case "studentEvaluate": //好友打开
  4214. _formdiv = new U.UF.UI.form(
  4215. "我的评价",
  4216. $$("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 }), {
  4217. "id": "studentEvaluate",
  4218. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4219. "onresize": function () { }
  4220. }, {
  4221. closecallback: function () { }
  4222. }, { "style": { "height": "36px" } }).form; //创建窗体
  4223. _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); } }
  4224. break;
  4225. case "my":
  4226. _formdiv = new U.UF.UI.form(
  4227. "我的资料",
  4228. $$("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 }), {
  4229. "id": "my",
  4230. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4231. "onresize": function () { }
  4232. }, {
  4233. closecallback: function () { }
  4234. }, { "style": { "height": "36px" } }).form; //创建窗体
  4235. _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); } }
  4236. break;
  4237. case "program":
  4238. _formdiv = new U.UF.UI.form(
  4239. "编程平台",
  4240. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4241. "id": "program",
  4242. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4243. "onresize": function () { }
  4244. }, {
  4245. closecallback: function () { }
  4246. }, { "style": { "height": "36px" } }).form; //创建窗体
  4247. _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); } }
  4248. break;
  4249. case "library":
  4250. _formdiv = new U.UF.UI.form(
  4251. "素材库",
  4252. $$("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 }), {
  4253. "id": "library",
  4254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4255. "onresize": function () { }
  4256. }, {
  4257. closecallback: function () { }
  4258. }, { "style": { "height": "36px" } }).form; //创建窗体
  4259. _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); } }
  4260. break;
  4261. case "whiteboard":
  4262. _formdiv = new U.UF.UI.form(
  4263. "电子白板",
  4264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4265. "id": "whiteboard",
  4266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4267. "onresize": function () { }
  4268. }, {
  4269. closecallback: function () { }
  4270. }, { "style": { "height": "36px" } }).form; //创建窗体
  4271. _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); } }
  4272. break;
  4273. case "investigation":
  4274. _formdiv = new U.UF.UI.form(
  4275. "问卷调查",
  4276. $$("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 }), {
  4277. "id": "investigation",
  4278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4279. "onresize": function () { }
  4280. }, {
  4281. closecallback: function () { }
  4282. }, { "style": { "height": "36px" } }).form; //创建窗体
  4283. _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); } }
  4284. break;
  4285. case "note":
  4286. _formdiv = new U.UF.UI.form(
  4287. "便签分类",
  4288. $$("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 }), {
  4289. "id": "note",
  4290. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4291. "onresize": function () { }
  4292. }, {
  4293. closecallback: function () { }
  4294. }, { "style": { "height": "36px" } }).form; //创建窗体
  4295. _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); } }
  4296. break;
  4297. // case "score":
  4298. // _formdiv = new U.UF.UI.form(
  4299. // "量规评分",
  4300. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4301. // "id": "score",
  4302. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4303. // "onresize": function() {}
  4304. // }, {
  4305. // closecallback: function() {}
  4306. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4307. // _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); } }
  4308. // break;
  4309. case "mind":
  4310. _formdiv = new U.UF.UI.form(
  4311. "思维导图",
  4312. $$("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"
  4313. "id": "mind",
  4314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4315. "onresize": function () { }
  4316. }, {
  4317. closecallback: function () { }
  4318. }, { "style": { "height": "36px" } }).form; //创建窗体
  4319. _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); } }
  4320. break;
  4321. case "doc":
  4322. // U.MD.D.I.isRoom();
  4323. _formdiv = new U.UF.UI.form(
  4324. "协同文档",
  4325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4326. "id": "doc",
  4327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4328. "onresize": function () { }
  4329. }, {
  4330. closecallback: function () { }
  4331. }, { "style": { "height": "36px" } }).form; //创建窗体
  4332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4334. })
  4335. _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); } }
  4336. break;
  4337. case "train": //好友打开
  4338. _formdiv = new U.UF.UI.form(
  4339. "训练平台",
  4340. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4341. "id": "train",
  4342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4343. "onresize": function () { }
  4344. }, {
  4345. closecallback: function () { }
  4346. }, { "style": { "height": "36px" } }).form; //创建窗体
  4347. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4348. break;
  4349. case "studentStudy":
  4350. _formdiv = new U.UF.UI.form(
  4351. "课程中心",
  4352. $$("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
  4353. "id": "studentStudy",
  4354. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4355. "onresize": function () { }
  4356. }, {
  4357. closecallback: function () { }
  4358. }, { "style": { "height": "36px" } }).form; //创建窗体
  4359. _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); } }
  4360. break;
  4361. case "mindNetwork": //好友打开
  4362. _formdiv = new U.UF.UI.form(
  4363. "思维网格",
  4364. $$("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 }), {
  4365. "id": "mindNetwork",
  4366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4367. "onresize": function () { }
  4368. }, {
  4369. closecallback: function () { }
  4370. }, { "style": { "height": "36px" } }).form; //创建窗体
  4371. _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); } }
  4372. break;
  4373. case "studentClassRoom": //好友打开
  4374. _formdiv = new U.UF.UI.form(
  4375. "实时课堂",
  4376. $$("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 }), {
  4377. "id": "studentClassRoom",
  4378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4379. "onresize": function () { }
  4380. }, {
  4381. closecallback: function () { }
  4382. }, { "style": { "height": "36px" } }).form; //创建窗体
  4383. _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); } }
  4384. setTimeout(() => {
  4385. U.UF.F.windowZooming(_formdiv)
  4386. }, 0);
  4387. break;
  4388. }
  4389. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4390. //选择应用处理
  4391. switch (str) {
  4392. case "project": //好友打开
  4393. _formdiv = new U.UF.UI.form(
  4394. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4395. $$("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 }), {
  4396. "id": "project",
  4397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4398. "onresize": function () { }
  4399. }, {
  4400. closecallback: function () { }
  4401. }, { "style": { "height": "36px" } }).form; //创建窗体
  4402. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4403. break;
  4404. case "student":
  4405. _formdiv = new U.UF.UI.form(
  4406. "学生管理",
  4407. $$("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 }), {
  4408. "id": "student",
  4409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4410. "onresize": function () { }
  4411. }, {
  4412. closecallback: function () { }
  4413. }, { "style": { "height": "36px" } }).form; //创建窗体
  4414. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4415. break;
  4416. case "evaluate":
  4417. _formdiv = new U.UF.UI.form(
  4418. "学生评价",
  4419. $$("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 }), {
  4420. "id": "evaluate",
  4421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4422. "onresize": function () { }
  4423. }, {
  4424. closecallback: function () { }
  4425. }, { "style": { "height": "36px" } }).form; //创建窗体
  4426. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4427. break;
  4428. case "sys":
  4429. _formdiv = new U.UF.UI.form(
  4430. "目标管理",
  4431. $$("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 }), {
  4432. "id": "sys",
  4433. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4434. "onresize": function () { }
  4435. }, {
  4436. closecallback: function () { }
  4437. }, { "style": { "height": "36px" } }).form; //创建窗体
  4438. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4439. break;
  4440. case "courseDesign":
  4441. _formdiv = new U.UF.UI.form(
  4442. "项目设计",
  4443. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4444. "id": "courseDesign",
  4445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4446. "onresize": function () { }
  4447. }, {
  4448. closecallback: function () { }
  4449. }, { "style": { "height": "36px" } }).form; //创建窗体
  4450. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4451. break;
  4452. case "program":
  4453. _formdiv = new U.UF.UI.form(
  4454. "编程平台",
  4455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4456. "id": "program",
  4457. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4458. "onresize": function () { }
  4459. }, {
  4460. closecallback: function () { }
  4461. }, { "style": { "height": "36px" } }).form; //创建窗体
  4462. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4463. break;
  4464. case "class":
  4465. _formdiv = new U.UF.UI.form(
  4466. "班级管理",
  4467. $$("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 }), {
  4468. "id": "class",
  4469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4470. "onresize": function () { }
  4471. }, {
  4472. closecallback: function () { }
  4473. }, { "style": { "height": "36px" } }).form; //创建窗体
  4474. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4475. break;
  4476. case "Grade":
  4477. _formdiv = new U.UF.UI.form(
  4478. "年级管理",
  4479. $$("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 }), {
  4480. "id": "Grade",
  4481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4482. "onresize": function () { }
  4483. }, {
  4484. closecallback: function () { }
  4485. }, { "style": { "height": "36px" } }).form; //创建窗体
  4486. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4487. break;
  4488. case "teacherOffice":
  4489. _formdiv = new U.UF.UI.form(
  4490. "教研室",
  4491. $$("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 }), {
  4492. "id": "teacherOffice",
  4493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4494. "onresize": function () { }
  4495. }, {
  4496. closecallback: function () { }
  4497. }, { "style": { "height": "36px" } }).form; //创建窗体
  4498. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4499. break;
  4500. case "my":
  4501. _formdiv = new U.UF.UI.form(
  4502. "我的资料",
  4503. $$("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 }), {
  4504. "id": "my",
  4505. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4506. "onresize": function () { }
  4507. }, {
  4508. closecallback: function () { }
  4509. }, { "style": { "height": "36px" } }).form; //创建窗体
  4510. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4511. break;
  4512. case "notice":
  4513. _formdiv = new U.UF.UI.form(
  4514. "通知公告",
  4515. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  4516. "id": "notice",
  4517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4518. "onresize": function () { }
  4519. }, {
  4520. closecallback: function () { }
  4521. }, { "style": { "height": "36px" } }).form; //创建窗体
  4522. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4523. break;
  4524. case "library":
  4525. _formdiv = new U.UF.UI.form(
  4526. "素材库",
  4527. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4528. "id": "library",
  4529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4530. "onresize": function () { }
  4531. }, {
  4532. closecallback: function () { }
  4533. }, { "style": { "height": "36px" } }).form; //创建窗体
  4534. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4535. break;
  4536. case "whiteboard":
  4537. _formdiv = new U.UF.UI.form(
  4538. "电子白板",
  4539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4540. "id": "whiteboard",
  4541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4542. "onresize": function () { }
  4543. }, {
  4544. closecallback: function () { }
  4545. }, { "style": { "height": "36px" } }).form; //创建窗体
  4546. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4547. break;
  4548. case "investigation":
  4549. _formdiv = new U.UF.UI.form(
  4550. "问卷调查",
  4551. $$("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 }), {
  4552. "id": "investigation",
  4553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4554. "onresize": function () { }
  4555. }, {
  4556. closecallback: function () { }
  4557. }, { "style": { "height": "36px" } }).form; //创建窗体
  4558. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4559. break;
  4560. case "note":
  4561. _formdiv = new U.UF.UI.form(
  4562. "便签分类",
  4563. $$("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 }), {
  4564. "id": "note",
  4565. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4566. "onresize": function () { }
  4567. }, {
  4568. closecallback: function () { }
  4569. }, { "style": { "height": "36px" } }).form; //创建窗体
  4570. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4571. break;
  4572. // case "score":
  4573. // _formdiv = new U.UF.UI.form(
  4574. // "量规评分",
  4575. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4576. // "id": "score",
  4577. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4578. // "onresize": function() {}
  4579. // }, {
  4580. // closecallback: function() {}
  4581. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4582. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4583. // break;
  4584. case "mind":
  4585. _formdiv = new U.UF.UI.form(
  4586. "思维导图",
  4587. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4588. "id": "mind",
  4589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4590. "onresize": function () { }
  4591. }, {
  4592. closecallback: function () { }
  4593. }, { "style": { "height": "36px" } }).form; //创建窗体
  4594. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4595. break;
  4596. case "doc":
  4597. // U.MD.D.I.isRoom();
  4598. _formdiv = new U.UF.UI.form(
  4599. "协同文档",
  4600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4601. "id": "doc",
  4602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4603. "onresize": function () { }
  4604. }, {
  4605. closecallback: function () { }
  4606. }, { "style": { "height": "36px" } }).form; //创建窗体
  4607. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4608. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4609. })
  4610. _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); } }
  4611. break;
  4612. case "study":
  4613. _formdiv = new U.UF.UI.form(
  4614. "课程中心",
  4615. $$("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
  4616. "id": "study",
  4617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4618. "onresize": function () { }
  4619. }, {
  4620. closecallback: function () { }
  4621. }, { "style": { "height": "36px" } }).form; //创建窗体
  4622. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4623. break;
  4624. case "mindNetwork": //好友打开
  4625. _formdiv = new U.UF.UI.form(
  4626. "思维网格",
  4627. $$("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 }), {
  4628. "id": "mindNetwork",
  4629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4630. "onresize": function () { }
  4631. }, {
  4632. closecallback: function () { }
  4633. }, { "style": { "height": "36px" } }).form; //创建窗体
  4634. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4635. break;
  4636. case "train": //好友打开
  4637. _formdiv = new U.UF.UI.form(
  4638. "训练平台",
  4639. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4640. "id": "mindNetwork",
  4641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4642. "onresize": function () { }
  4643. }, {
  4644. closecallback: function () { }
  4645. }, { "style": { "height": "36px" } }).form; //创建窗体
  4646. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4647. break;
  4648. case "teacherClassRoom": //好友打开
  4649. _formdiv = new U.UF.UI.form(
  4650. "实时课堂",
  4651. $$("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 }), {
  4652. "id": "teacherClassRoom",
  4653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4654. "onresize": function () { }
  4655. }, {
  4656. closecallback: function () { }
  4657. }, { "style": { "height": "36px" } }).form; //创建窗体
  4658. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4659. setTimeout(() => {
  4660. U.UF.F.windowZooming(_formdiv)
  4661. }, 0);
  4662. break;
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4665. switch (str) {
  4666. case "project": //好友打开
  4667. _formdiv = new U.UF.UI.form(
  4668. "课程管理",
  4669. $$("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 }), {
  4670. "id": "project",
  4671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4672. "onresize": function () { }
  4673. }, {
  4674. closecallback: function () { }
  4675. }, { "style": { "height": "36px" } }).form; //创建窗体
  4676. _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); } }
  4677. break;
  4678. case "evaluate":
  4679. _formdiv = new U.UF.UI.form(
  4680. "学生评价",
  4681. $$("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 }), {
  4682. "id": "evaluate",
  4683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4684. "onresize": function () { }
  4685. }, {
  4686. closecallback: function () { }
  4687. }, { "style": { "height": "36px" } }).form; //创建窗体
  4688. _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); } }
  4689. break;
  4690. case "notice":
  4691. _formdiv = new U.UF.UI.form(
  4692. "通知公告",
  4693. $$("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 }), {
  4694. "id": "notice",
  4695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4696. "onresize": function () { }
  4697. }, {
  4698. closecallback: function () { }
  4699. }, { "style": { "height": "36px" } }).form; //创建窗体
  4700. _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); } }
  4701. break;
  4702. case "stuLibrary":
  4703. _formdiv = new U.UF.UI.form(
  4704. "学习资料",
  4705. $$("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 }), {
  4706. "id": "stuLibrary",
  4707. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4708. "onresize": function () { }
  4709. }, {
  4710. closecallback: function () { }
  4711. }, { "style": { "height": "36px" } }).form; //创建窗体
  4712. _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); } }
  4713. break;
  4714. case "program":
  4715. _formdiv = new U.UF.UI.form(
  4716. "编程平台",
  4717. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4718. "id": "program",
  4719. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4720. "onresize": function () { }
  4721. }, {
  4722. closecallback: function () { }
  4723. }, { "style": { "height": "36px" } }).form; //创建窗体
  4724. _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); } }
  4725. break;
  4726. case "whiteboard":
  4727. _formdiv = new U.UF.UI.form(
  4728. "电子白板",
  4729. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4730. "id": "whiteboard",
  4731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4732. "onresize": function () { }
  4733. }, {
  4734. closecallback: function () { }
  4735. }, { "style": { "height": "36px" } }).form; //创建窗体
  4736. _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); } }
  4737. break;
  4738. case "investigation":
  4739. _formdiv = new U.UF.UI.form(
  4740. "问卷调查",
  4741. $$("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 }), {
  4742. "id": "investigation",
  4743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4744. "onresize": function () { }
  4745. }, {
  4746. closecallback: function () { }
  4747. }, { "style": { "height": "36px" } }).form; //创建窗体
  4748. _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); } }
  4749. break;
  4750. case "mind":
  4751. _formdiv = new U.UF.UI.form(
  4752. "思维导图",
  4753. $$("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"
  4754. "id": "mind",
  4755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4756. "onresize": function () { }
  4757. }, {
  4758. closecallback: function () { }
  4759. }, { "style": { "height": "36px" } }).form; //创建窗体
  4760. _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); } }
  4761. break;
  4762. case "doc":
  4763. // U.MD.D.I.isRoom();
  4764. _formdiv = new U.UF.UI.form(
  4765. "协同文档",
  4766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4767. "id": "doc",
  4768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4769. "onresize": function () { }
  4770. }, {
  4771. closecallback: function () { }
  4772. }, { "style": { "height": "36px" } }).form; //创建窗体
  4773. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4774. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4775. })
  4776. _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); } }
  4777. break;
  4778. case "study":
  4779. _formdiv = new U.UF.UI.form(
  4780. "课程中心",
  4781. $$("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
  4782. "id": "study",
  4783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4784. "onresize": function () { }
  4785. }, {
  4786. closecallback: function () { }
  4787. }, { "style": { "height": "36px" } }).form; //创建窗体
  4788. _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); } }
  4789. break;
  4790. case "mindNetwork": //好友打开
  4791. _formdiv = new U.UF.UI.form(
  4792. "思维网格",
  4793. $$("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 }), {
  4794. "id": "mindNetwork",
  4795. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //创建窗体
  4800. _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); } }
  4801. break;
  4802. case "train": //好友打开
  4803. _formdiv = new U.UF.UI.form(
  4804. "训练平台",
  4805. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4806. "id": "train",
  4807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4808. "onresize": function () { }
  4809. }, {
  4810. closecallback: function () { }
  4811. }, { "style": { "height": "36px" } }).form; //创建窗体
  4812. _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); } }
  4813. break;
  4814. case "sys":
  4815. _formdiv = new U.UF.UI.form(
  4816. "目标管理",
  4817. $$("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 }), {
  4818. "id": "sys",
  4819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4820. "onresize": function () { }
  4821. }, {
  4822. closecallback: function () { }
  4823. }, { "style": { "height": "36px" } }).form; //创建窗体
  4824. _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); } }
  4825. break;
  4826. case "courseDesign":
  4827. _formdiv = new U.UF.UI.form(
  4828. "项目设计",
  4829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4830. "id": "courseDesign",
  4831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //创建窗体
  4836. _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); } }
  4837. break;
  4838. }
  4839. } else if (!_type) {
  4840. switch (str) {
  4841. case "my":
  4842. _formdiv = new U.UF.UI.form(
  4843. "我的资料",
  4844. $$("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 }), {
  4845. "id": "my",
  4846. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4847. "onresize": function () { }
  4848. }, {
  4849. closecallback: function () { }
  4850. }, { "style": { "height": "36px" } }).form; //创建窗体
  4851. _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); } }
  4852. break;
  4853. }
  4854. }
  4855. switch (str) {
  4856. // AIprogram2 AI体验 aihub.cocorobo.cn
  4857. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4858. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4859. case "formulaEdi": //公式编辑
  4860. _formdiv = new U.UF.UI.form(
  4861. "公式编辑",
  4862. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4863. "id": "formulaEdi",
  4864. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4865. "onresize": function () { }
  4866. }, {
  4867. closecallback: function () { }
  4868. }, { "style": { "height": "36px" } }).form; //创建窗体
  4869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4870. break;
  4871. case "molStr": //分子结构
  4872. _formdiv = new U.UF.UI.form(
  4873. "分子结构",
  4874. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4875. "id": "molStr",
  4876. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4882. break;
  4883. case "timeAxis": //时间轴
  4884. _formdiv = new U.UF.UI.form(
  4885. "时间轴",
  4886. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4887. "id": "timeAxis",
  4888. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4889. "onresize": function () { }
  4890. }, {
  4891. closecallback: function () { }
  4892. }, { "style": { "height": "36px" } }).form; //创建窗体
  4893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4894. break;
  4895. case "AIprogram2": //AI体验
  4896. _formdiv = new U.UF.UI.form(
  4897. "AI体验",
  4898. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4899. "id": "AIprogram2",
  4900. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4906. break;
  4907. case "Pythonprogram": //python编程
  4908. _formdiv = new U.UF.UI.form(
  4909. "Python编程",
  4910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4911. "id": "Pythonprogram",
  4912. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. _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); } }
  4918. break;
  4919. case "AIprogram": //ai编程
  4920. _formdiv = new U.UF.UI.form(
  4921. "AI编程平台",
  4922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4923. "id": "AIprogram",
  4924. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4925. "onresize": function () { }
  4926. }, {
  4927. closecallback: function () { }
  4928. }, { "style": { "height": "36px" } }).form; //创建窗体
  4929. _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); } }
  4930. break;
  4931. case "CocoPi": //CocoPi
  4932. _formdiv = new U.UF.UI.form(
  4933. "CocoPi",
  4934. $$("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" }), {
  4935. "id": "CocoPi",
  4936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. _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); } }
  4942. break;
  4943. case "Wood": //Wood
  4944. _formdiv = new U.UF.UI.form(
  4945. "海龟编程",
  4946. $$("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/" }), {
  4947. "id": "Wood",
  4948. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. _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); } }
  4954. break;
  4955. case "car": //模拟驾驶
  4956. _formdiv = new U.UF.UI.form(
  4957. "模拟驾驶",
  4958. $$("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/" }), {
  4959. "id": "car",
  4960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4961. "onresize": function () { }
  4962. }, {
  4963. closecallback: function () { }
  4964. }, { "style": { "height": "36px" } }).form; //创建窗体
  4965. _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); } }
  4966. break;
  4967. case "lineSearch": //路径搜索
  4968. _formdiv = new U.UF.UI.form(
  4969. "路径搜索",
  4970. $$("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/" }), {
  4971. "id": "lineSearch",
  4972. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. _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); } }
  4978. break;
  4979. case "deepLearning": //深度学习
  4980. _formdiv = new U.UF.UI.form(
  4981. "深度学习",
  4982. $$("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/#" }), {
  4983. "id": "deepLearning",
  4984. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4985. "onresize": function () { }
  4986. }, {
  4987. closecallback: function () { }
  4988. }, { "style": { "height": "36px" } }).form; //创建窗体
  4989. _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); } }
  4990. break;
  4991. case "allHistory": //深度学习
  4992. _formdiv = new U.UF.UI.form(
  4993. "全历史",
  4994. $$("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/" }), {
  4995. "id": "allHistory",
  4996. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //创建窗体
  5001. _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); } }
  5002. break;
  5003. case "chatPDF": //ai编程
  5004. _formdiv = new U.UF.UI.form(
  5005. "chatPDF",
  5006. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5007. "id": "chatPDF",
  5008. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. _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); } }
  5014. break;
  5015. case "resources": //国家教育
  5016. _formdiv = new U.UF.UI.form(
  5017. "国家教育",
  5018. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5019. "id": "resources",
  5020. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5021. "onresize": function () { }
  5022. }, {
  5023. closecallback: function () { }
  5024. }, { "style": { "height": "36px" } }).form; //创建窗体
  5025. _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); } }
  5026. break;
  5027. case "codeEdit": //源码编辑
  5028. _formdiv = new U.UF.UI.form(
  5029. "源码编辑",
  5030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5031. "id": "codeEdit",
  5032. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5033. "onresize": function () { }
  5034. }, {
  5035. closecallback: function () { }
  5036. }, { "style": { "height": "36px" } }).form; //创建窗体
  5037. _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); } }
  5038. break; //
  5039. case "MindMap": //MindMap
  5040. _formdiv = new U.UF.UI.form(
  5041. "MindMap",
  5042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5043. "id": "MindMap",
  5044. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. _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); } }
  5050. break;
  5051. case "netWorkPanel": //netWorkPanel
  5052. _formdiv = new U.UF.UI.form(
  5053. "netWorkPanel",
  5054. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5055. "id": "netWorkPanel",
  5056. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. _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); } }
  5062. break;
  5063. case "GeoGebra": //GeoGebra
  5064. _formdiv = new U.UF.UI.form(
  5065. "GeoGebra",
  5066. $$("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" }), {
  5067. "id": "GeoGebra",
  5068. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5069. "onresize": function () { }
  5070. }, {
  5071. closecallback: function () { }
  5072. }, { "style": { "height": "36px" } }).form; //创建窗体
  5073. _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); } }
  5074. break;
  5075. case "translation": //翻译
  5076. _formdiv = new U.UF.UI.form(
  5077. "翻译",
  5078. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5079. "id": "translation",
  5080. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5081. "onresize": function () { }
  5082. }, {
  5083. closecallback: function () { }
  5084. }, { "style": { "height": "36px" } }).form; //创建窗体
  5085. _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); } }
  5086. break;
  5087. case "mohe": //魔盒
  5088. _formdiv = new U.UF.UI.form(
  5089. "魔盒识字",
  5090. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5091. "id": "mohe",
  5092. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. _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); } }
  5098. break;
  5099. case "24game": //24点
  5100. _formdiv = new U.UF.UI.form(
  5101. "24点",
  5102. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5103. "id": "24game",
  5104. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. _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); } }
  5110. break;
  5111. case "case":
  5112. _formdiv = new U.UF.UI.form(
  5113. "课程进展",
  5114. $$("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 }), {
  5115. "id": "case",
  5116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5117. "onresize": function () { }
  5118. }, {
  5119. closecallback: function () { }
  5120. }, { "style": { "height": "36px" } }).form; //创建窗体
  5121. _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); } }
  5122. break;
  5123. case "snf":
  5124. _formdiv = new U.UF.UI.form(
  5125. "赛诺梵",
  5126. $$("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" }), {
  5127. "id": "snf",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. _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); } }
  5134. break;
  5135. case "hanFamily":
  5136. _formdiv = new U.UF.UI.form(
  5137. "汉字家族",
  5138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5139. "id": "hanFamily",
  5140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5141. "onresize": function () { }
  5142. }, {
  5143. closecallback: function () { }
  5144. }, { "style": { "height": "36px" } }).form; //创建窗体
  5145. _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); } }
  5146. break;
  5147. case "hanClassics":
  5148. _formdiv = new U.UF.UI.form(
  5149. "国学经典",
  5150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5151. "id": "hanClassics",
  5152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5153. "onresize": function () { }
  5154. }, {
  5155. closecallback: function () { }
  5156. }, { "style": { "height": "36px" } }).form; //创建窗体
  5157. _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); } }
  5158. break;
  5159. case "hanTraining":
  5160. _formdiv = new U.UF.UI.form(
  5161. "笔画训练",
  5162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5163. "id": "hanTraining",
  5164. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. _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); } }
  5170. break;
  5171. case "hanClass":
  5172. _formdiv = new U.UF.UI.form(
  5173. "书法课堂",
  5174. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5175. "id": "hanClass",
  5176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _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); } }
  5182. break;
  5183. case "han":
  5184. _formdiv = new U.UF.UI.form(
  5185. "汉字宫",
  5186. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5187. "id": "han",
  5188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "projectGM": //课程管理
  5196. _formdiv = new U.UF.UI.form(
  5197. "课程管理",
  5198. $$("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 }), {
  5199. "id": "projectGM",
  5200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. _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); } }
  5206. break;
  5207. case "studyGM": //课程中心
  5208. _formdiv = new U.UF.UI.form(
  5209. "课程中心",
  5210. $$("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
  5211. "id": "study",
  5212. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _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); } }
  5218. break;
  5219. // studentGM
  5220. case "studentGM": //学生管理
  5221. _formdiv = new U.UF.UI.form(
  5222. "学生管理",
  5223. $$("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 }), {
  5224. "id": "studentGM",
  5225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5226. "onresize": function () { }
  5227. }, {
  5228. closecallback: function () { }
  5229. }, { "style": { "height": "36px" } }).form; //创建窗体
  5230. _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); } }
  5231. break;
  5232. case "evaluateGM": //学生评价
  5233. _formdiv = new U.UF.UI.form(
  5234. "学生评价",
  5235. $$("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 }), {
  5236. "id": "evaluateGM",
  5237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _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); } }
  5243. break;
  5244. // classGM
  5245. case "classGM": //班级管理
  5246. _formdiv = new U.UF.UI.form(
  5247. "班级管理",
  5248. $$("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 }), {
  5249. "id": "classGM",
  5250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. // dataGM
  5258. case "dataGM":
  5259. _formdiv = new U.UF.UI.form(
  5260. "我的资料",
  5261. $$("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 }), {
  5262. "id": "dataGM",
  5263. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _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); } }
  5269. break;
  5270. // caseGM
  5271. case "caseGM": //课程进展
  5272. _formdiv = new U.UF.UI.form(
  5273. "课程进展",
  5274. $$("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 }), {
  5275. "id": "caseGM",
  5276. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5277. "onresize": function () { }
  5278. }, {
  5279. closecallback: function () { }
  5280. }, { "style": { "height": "36px" } }).form; //创建窗体
  5281. _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); } }
  5282. break;
  5283. // meterialGM
  5284. case "meterialGM": //素材库
  5285. _formdiv = new U.UF.UI.form(
  5286. "素材库",
  5287. $$("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 }), {
  5288. "id": "meterialGM",
  5289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _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); } }
  5295. break;
  5296. // evaluateSGM
  5297. case "evaluateSGM": //我的评价
  5298. _formdiv = new U.UF.UI.form(
  5299. "我的评价",
  5300. $$("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 }), {
  5301. "id": "evaluateSGM",
  5302. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "jupyter": //jupyter
  5310. _formdiv = new U.UF.UI.form(
  5311. "jupyter",
  5312. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5313. "id": "jupyter",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "number": //数字实验室
  5322. _formdiv = new U.UF.UI.form(
  5323. "数字实验室",
  5324. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5325. "id": "number",
  5326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. break;
  5333. case "studentCourse": //项目管理 学生
  5334. _formdiv = new U.UF.UI.form(
  5335. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5336. $$("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 }), {
  5337. "id": "studentCourse",
  5338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "studentCourseS": //项目管理 老师
  5346. _formdiv = new U.UF.UI.form(
  5347. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5348. $$("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 }), {
  5349. "id": "studentCourseS",
  5350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //创建窗体
  5355. _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); } }
  5356. break;
  5357. case "studentIndex": //项目中心
  5358. _formdiv = new U.UF.UI.form(
  5359. "项目中心",
  5360. $$("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 }), {
  5361. "id": "studentIndex",
  5362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5363. "onresize": function () { }
  5364. }, {
  5365. closecallback: function () { }
  5366. }, { "style": { "height": "36px" } }).form; //创建窗体
  5367. _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); } }
  5368. break;
  5369. case "CaseDesignS":
  5370. _formdiv = new U.UF.UI.form(
  5371. "项目进展",
  5372. $$("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 }), {
  5373. "id": "case",
  5374. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5375. "onresize": function () { }
  5376. }, {
  5377. closecallback: function () { }
  5378. }, { "style": { "height": "36px" } }).form; //创建窗体
  5379. _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); } }
  5380. break;
  5381. case "tcStudent": //腾讯学生管理
  5382. _formdiv = new U.UF.UI.form(
  5383. "学生管理",
  5384. $$("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 }), {
  5385. "id": "tcStudent",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. _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); } }
  5392. break;
  5393. case "tcSchool": //腾讯学校管理
  5394. _formdiv = new U.UF.UI.form(
  5395. "学校管理",
  5396. $$("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 }), {
  5397. "id": "tcSchool",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. _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); } }
  5404. break;
  5405. case "tcTeacher": //腾讯学校管理
  5406. _formdiv = new U.UF.UI.form(
  5407. "教师管理",
  5408. $$("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 }), {
  5409. "id": "tcTeacher",
  5410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //创建窗体
  5415. _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); } }
  5416. break;
  5417. case "tcData": //腾讯我的资料
  5418. _formdiv = new U.UF.UI.form(
  5419. "我的资料",
  5420. $$("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 }), {
  5421. "id": "tcData",
  5422. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. _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); } }
  5428. break;
  5429. case "tcNotice": //腾讯消息通知
  5430. _formdiv = new U.UF.UI.form(
  5431. "消息通知",
  5432. $$("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 }), {
  5433. "id": "tcNotice",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. case "myReport": //好友打开
  5442. _formdiv = new U.UF.UI.form(
  5443. "我的评价",
  5444. $$("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 }), {
  5445. "id": "myReport",
  5446. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5447. "onresize": function () { }
  5448. }, {
  5449. closecallback: function () { }
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. _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); } }
  5452. break;
  5453. case "learnAna": //好友打开
  5454. _formdiv = new U.UF.UI.form(
  5455. "学习分析",
  5456. $$("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 }), {
  5457. "id": "learnAna",
  5458. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. _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); } }
  5464. break;
  5465. case "AIChat": //AI共创
  5466. _formdiv = new U.UF.UI.form(
  5467. "AI共创",
  5468. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5469. "id": "AIChat",
  5470. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. istop: true,
  5474. closecallback: function () { $("#aichat_icon").remove(); },
  5475. narrowcallback: function () {
  5476. if (!$("#aichat_icon")[0]) {
  5477. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5478. }
  5479. },
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. _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); } }
  5482. break;
  5483. case "ainew": //AI共创
  5484. _formdiv = new U.UF.UI.form(
  5485. "AI协同",
  5486. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5487. "id": "ainew",
  5488. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _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); } }
  5494. break;
  5495. case "gpt4": //gpt4
  5496. _formdiv = new U.UF.UI.form(
  5497. "AI助手",
  5498. $$("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 }), {
  5499. "id": "gpt4",
  5500. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5501. "onresize": function () { }
  5502. }, {
  5503. closecallback: function () { }
  5504. }, { "style": { "height": "36px" } }).form; //创建窗体
  5505. _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); } }
  5506. break;
  5507. case "aigpt": //gpt4
  5508. _formdiv = new U.UF.UI.form(
  5509. "AI助手+",
  5510. $$("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 }), {
  5511. "id": "aigpt",
  5512. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5513. "onresize": function () { }
  5514. }, {
  5515. closecallback: function () { }
  5516. }, { "style": { "height": "36px" } }).form; //创建窗体
  5517. _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); } }
  5518. break;
  5519. case "futureClass": //AI共创
  5520. _formdiv = new U.UF.UI.form(
  5521. "协同建构",
  5522. $$("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
  5523. "id": "synergyCourse",
  5524. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () {
  5528. $("iframe", _formdiv)[0].contentWindow.loginout();
  5529. }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _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); } }
  5532. break;
  5533. case "aiagent": //ai agent
  5534. _formdiv = new U.UF.UI.form(
  5535. "AI Agent",
  5536. $$("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" }), {
  5537. "id": "AIAgent",
  5538. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. _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); } }
  5544. break;
  5545. case "dataBoard": //数据看板
  5546. _formdiv = new U.UF.UI.form(
  5547. "数据看板",
  5548. $$("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 }), {
  5549. "id": "dataBoard",
  5550. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _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); } }
  5556. break;
  5557. case "dataBoardSies": //数据融合
  5558. _formdiv = new U.UF.UI.form(
  5559. "数据融合",
  5560. $$("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 }), {
  5561. "id": "dataBoardSies",
  5562. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. _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); } }
  5568. break;
  5569. case "dataBoardNew": //数据看板
  5570. _formdiv = new U.UF.UI.form(
  5571. "综合看板",
  5572. $$("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 }), {
  5573. "id": "dataBoardNew",
  5574. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //创建窗体
  5579. _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); } }
  5580. break;
  5581. case "dataBoardTest": //数据看板
  5582. _formdiv = new U.UF.UI.form(
  5583. "评测看板",
  5584. $$("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 }), {
  5585. "id": "dataBoardTest",
  5586. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5587. "onresize": function () { }
  5588. }, {
  5589. closecallback: function () { }
  5590. }, { "style": { "height": "36px" } }).form; //创建窗体
  5591. _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); } }
  5592. break;
  5593. case "AIAnalyse": //AI共创
  5594. _formdiv = new U.UF.UI.form(
  5595. "AI分析",
  5596. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5597. "id": "AIAnalyse",
  5598. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //创建窗体
  5603. _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); } }
  5604. break;
  5605. case "studioCourse": //AI共创
  5606. _formdiv = new U.UF.UI.form(
  5607. "工作管理",
  5608. $$("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 }), {
  5609. "id": "studioCourse",
  5610. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //创建窗体
  5615. _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); } }
  5616. break;
  5617. case "studioIndex": //AI共创
  5618. _formdiv = new U.UF.UI.form(
  5619. "工作中心",
  5620. $$("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 }), {
  5621. "id": "studioIndex",
  5622. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "source":
  5630. _formdiv = new U.UF.UI.form(
  5631. "教学资源",
  5632. $$("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 }), {
  5633. "id": "source",
  5634. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "testTeacher":
  5642. _formdiv = new U.UF.UI.form(
  5643. "教师管理",
  5644. $$("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 }), {
  5645. "id": "testTeacher",
  5646. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "testStudent":
  5654. _formdiv = new U.UF.UI.form(
  5655. "教师中心",
  5656. $$("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 }), {
  5657. "id": "testStudent",
  5658. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. case "testTeacherSies":
  5666. _formdiv = new U.UF.UI.form(
  5667. "教师管理",
  5668. $$("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 }), {
  5669. "id": "testTeacherSies",
  5670. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _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); } }
  5676. break;
  5677. case "testStudentSies":
  5678. _formdiv = new U.UF.UI.form(
  5679. "教师中心",
  5680. $$("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 }), {
  5681. "id": "testStudentSies",
  5682. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //创建窗体
  5687. _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); } }
  5688. break;
  5689. case "ytpbl": //消息通知
  5690. _formdiv = new U.UF.UI.form(
  5691. "案例征集",
  5692. $$("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 }), {
  5693. "id": "ytpbl",
  5694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. _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); } }
  5700. // 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");
  5701. break;
  5702. case "aiCourseResource": //人工智能窗体
  5703. _formdiv = new U.UF.UI.form(
  5704. false,
  5705. $$("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 }), {
  5706. "id": "aiCourseResource",
  5707. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5708. "onresize": function () { },
  5709. "isdrag": false,
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _taskbar = ''
  5714. break;
  5715. case "szdjgCocooroboX": //图形化编程
  5716. _formdiv = new U.UF.UI.form(
  5717. "图形化编程",
  5718. $$("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" }), {
  5719. "id": "szdjgCocooroboX",
  5720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. _taskbar = ''
  5726. break;
  5727. case "szdjgPython": //python编程
  5728. _formdiv = new U.UF.UI.form(
  5729. "Python编程",
  5730. $$("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" }), {
  5731. "id": "szdjgPython",
  5732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _taskbar = ''
  5738. break;
  5739. case "Record":
  5740. _formdiv = new U.UF.UI.form(
  5741. "观察记录",
  5742. $$("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 }), {
  5743. "id": "Record",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _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); } }
  5750. break;
  5751. case "aigptCourse":
  5752. _formdiv = new U.UF.UI.form(
  5753. "AI智能体",
  5754. $$("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' }), {
  5755. "id": "aigptCourse",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _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); } }
  5762. break;
  5763. case "classroomObservation":
  5764. _formdiv = new U.UF.UI.form(
  5765. "课堂观察",
  5766. $$("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 }), {
  5767. "id": "classroomObservation",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _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); } }
  5774. break;
  5775. case "pblCourse":
  5776. _formdiv = new U.UF.UI.form(
  5777. "学生PBL",
  5778. $$("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 }), {
  5779. "id": "pblCourse",
  5780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. _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); } }
  5786. break;
  5787. }
  5788. //U.MD.D.I.openClick(str);
  5789. //如果有任务栏信息
  5790. if (_taskbar) {
  5791. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5792. }
  5793. }
  5794. // U.MD.D.I.openClick = function(str){
  5795. // var click = '';
  5796. // switch(str){
  5797. // case 'friend':
  5798. // click = '我的好友';
  5799. // break;
  5800. // case 'domain':
  5801. // click = '域名管理';
  5802. // break;
  5803. // case 'disk':
  5804. // click = '我的云盘';
  5805. // break;
  5806. // case 'word':
  5807. // click = 'Word';
  5808. // break;
  5809. // case 'excel':
  5810. // click = 'Execl';
  5811. // break;
  5812. // case 'txt':
  5813. // click = '文本文件';
  5814. // break;
  5815. // case 'lookupFriend':
  5816. // click = '查找好友';
  5817. // break;
  5818. // case 'ftp':
  5819. // click = 'FTP';
  5820. // break;
  5821. // case 'group':
  5822. // click = '群组';
  5823. // break;
  5824. // case 'set':
  5825. // click = '我的设置';
  5826. // break;
  5827. // case 'systemSet':
  5828. // click = '系统设置';
  5829. // break;
  5830. // case 'boomYun':
  5831. // click = '互联办公';
  5832. // break;
  5833. // case 'xz':
  5834. // click = '云端下载';
  5835. // break;
  5836. // case 'client':
  5837. // click = '有思浏览器';
  5838. // break;
  5839. // case 'backEndProgramming':
  5840. // click = '在线后台编程';
  5841. // break;
  5842. // case 'frontEndProgramming':
  5843. // click = '在线前端编程';
  5844. // break;
  5845. // default: break;
  5846. // }
  5847. // if(U.MD.D.I.Ip && click){
  5848. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5849. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5850. // })
  5851. // }
  5852. // }
  5853. /**
  5854. *函数作用:ajax简易函数,使用post格式
  5855. *@param url {data} 后台地址
  5856. *@param data {data} 参数json
  5857. *@param fn {data} 回调函数
  5858. *
  5859. */
  5860. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5861. // var xhr = new XMLHttpRequest();
  5862. // xhr.open("GET",url,true);
  5863. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5864. // xhr.onreadystatechange = function(){
  5865. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5866. // fn.call(this,xhr.responseText);
  5867. // }
  5868. // };
  5869. // xhr.send();
  5870. // }
  5871. /*判断是否是内网IP*/
  5872. // U.MD.D.I.isInnerIPFn = function(str){
  5873. // var curPageUrl = str;
  5874. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5875. // curPageUrl =curPageUrl.replace(reg1,'');
  5876. // // console.log('curPageUrl-1 '+curPageUrl);
  5877. // var reg2 = /\:+/g;//替换冒号为一点
  5878. // curPageUrl =curPageUrl.replace(reg2,'.');
  5879. // // console.log('curPageUrl-2 '+curPageUrl);
  5880. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5881. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5882. // if(curPageUrl[2] != '16'){
  5883. // return ipAddress;
  5884. // }else{
  5885. // return false;
  5886. // }
  5887. // }
  5888. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5889. // //compatibility for firefox and chrome
  5890. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5891. // var pc = new myPeerConnection({
  5892. // iceServers: []
  5893. // }),
  5894. // noop = function() {},
  5895. // localIPs = {},
  5896. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5897. // key;
  5898. // function iterateIP(ip) {
  5899. // if (!localIPs[ip]) onNewIP(ip);
  5900. // localIPs[ip] = true;
  5901. // }
  5902. // //create a bogus data channel
  5903. // pc.createDataChannel("");
  5904. // // create offer and set local description
  5905. // pc.createOffer().then(function(sdp) {
  5906. // sdp.sdp.split('\n').forEach(function(line) {
  5907. // if (line.indexOf('candidate') < 0) return;
  5908. // line.match(ipRegex).forEach(iterateIP);
  5909. // });
  5910. // pc.setLocalDescription(sdp, noop, noop);
  5911. // }).catch(function(reason) {
  5912. // // An error occurred, so handle the failure to connect
  5913. // });
  5914. // //sten for candidate events
  5915. // pc.onicecandidate = function(ice) {
  5916. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5917. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5918. // };
  5919. // }
  5920. // U.MD.D.I.getUserIpBool = function(callback){
  5921. // U.MD.D.I.getUserIP(function(ip){
  5922. // alert("Got IP! :" + ip);
  5923. // });
  5924. //}
  5925. //#endregion
  5926. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5927. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5928. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5929. _userinfo = US.userInfo, //登录用户信息
  5930. _userid = US.userInfo.userid //登录用户id
  5931. let _iframe;
  5932. let _cid = cid,
  5933. _stage = stage,
  5934. _task = task,
  5935. _tool = tool;
  5936. var _jie = $$("div", {
  5937. "style": {
  5938. "position": "absolute",
  5939. "bottom": "50px",
  5940. "right": "50px",
  5941. "zIndex": "9999",
  5942. "backgroundColor": "#2268bc",
  5943. "color": "#fff",
  5944. "padding": "12px 20px",
  5945. "cursor": "pointer",
  5946. "borderRadius": "4px",
  5947. },
  5948. "innerHTML": "提交作业"
  5949. })
  5950. let aTool = ''
  5951. let _loading = document.createElement('div')
  5952. _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;"
  5953. // _loading.id = "";
  5954. let _lchild = document.createElement('div')
  5955. let _limg = document.createElement('img')
  5956. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5957. _limg.style = "width: 26px;margin-right: 10px;"
  5958. _lchild.appendChild(_limg)
  5959. let _lspan = document.createElement('span')
  5960. _lspan.innerHTML = "上传中..."
  5961. _lchild.appendChild(_lspan)
  5962. _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%);"
  5963. _loading.appendChild(_lchild)
  5964. var _box = $$('div', {
  5965. "style": {
  5966. "position": "relative",
  5967. "width": "100%",
  5968. "height": "100%",
  5969. },
  5970. })
  5971. _box.appendChild(_loading)
  5972. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5973. switch (str) {
  5974. case "whiteboard":
  5975. aTool = 1;
  5976. _iframe = $$("iframe", {
  5977. "frameborder": "no",
  5978. "border": "0",
  5979. "scrolling ": "no",
  5980. "style": {
  5981. "cssText": "border:0;width:100%;height:100%"
  5982. },
  5983. "src": "https://beta.iwb.cocorobo.cn/"
  5984. })
  5985. _box.appendChild(_iframe);
  5986. _box.appendChild(_jie);
  5987. _formdiv = new U.UF.UI.form(
  5988. "电子白板",
  5989. _box, {
  5990. "id": "whiteboard" + cid + stage + task + tool,
  5991. "style": {
  5992. "width": "90%",
  5993. "height": "90%",
  5994. "overflow": 'hidden'
  5995. },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, {
  6000. "style": {
  6001. "height": "36px"
  6002. }
  6003. }).form; //创建窗体
  6004. _taskbar = {
  6005. "id": str + _formdiv.id,
  6006. "style": {
  6007. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6008. },
  6009. "name": "电子白板",
  6010. "forms": _formdiv,
  6011. "click": function () {
  6012. U.MD.D.I.openApplication(str, obj, info);
  6013. }
  6014. }
  6015. break;
  6016. case "mind":
  6017. aTool = 3;
  6018. _iframe = $$("iframe", {
  6019. "frameborder": "no",
  6020. "border": "0",
  6021. "scrolling ": "no",
  6022. "style": {
  6023. "cssText": "border:0;width:100%;height:100%"
  6024. },
  6025. "src": "/kityminder-editor/dist/index.html"
  6026. })
  6027. _box.appendChild(_iframe);
  6028. _box.appendChild(_jie);
  6029. _formdiv = new U.UF.UI.form(
  6030. "思维导图",
  6031. _box, { //"/jsmind/example/demo.html"
  6032. "id": "mind" + cid + stage + task + tool,
  6033. "style": {
  6034. "width": "90%",
  6035. "height": "90%",
  6036. "overflow": 'hidden'
  6037. },
  6038. "onresize": function () { }
  6039. }, {
  6040. closecallback: function () { }
  6041. }, {
  6042. "style": {
  6043. "height": "36px"
  6044. }
  6045. }).form; //创建窗体
  6046. _taskbar = {
  6047. "id": str + _formdiv.id,
  6048. "style": {
  6049. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6050. },
  6051. "name": "思维导图",
  6052. "forms": _formdiv,
  6053. "click": function () {
  6054. U.MD.D.I.openApplication(str, obj, info);
  6055. }
  6056. }
  6057. break;
  6058. case "MindMap":
  6059. aTool = 3;
  6060. _iframe = $$("iframe", {
  6061. "frameborder": "no",
  6062. "border": "0",
  6063. "scrolling ": "no",
  6064. "style": {
  6065. "cssText": "border:0;width:100%;height:100%"
  6066. },
  6067. "src": "//cloud.cocorobo.cn/mind/"
  6068. })
  6069. _box.appendChild(_iframe);
  6070. _box.appendChild(_jie);
  6071. _formdiv = new U.UF.UI.form(
  6072. "思维导图",
  6073. _box, { //"/jsmind/example/demo.html"
  6074. "id": "mind" + cid + stage + task + tool,
  6075. "style": {
  6076. "width": "90%",
  6077. "height": "90%",
  6078. "overflow": 'hidden'
  6079. },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, {
  6084. "style": {
  6085. "height": "36px"
  6086. }
  6087. }).form; //创建窗体
  6088. _taskbar = {
  6089. "id": str + _formdiv.id,
  6090. "style": {
  6091. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6092. },
  6093. "name": "思维导图",
  6094. "forms": _formdiv,
  6095. "click": function () {
  6096. U.MD.D.I.openApplication(str, obj, info);
  6097. }
  6098. }
  6099. break;
  6100. case "doc":
  6101. aTool = 6;
  6102. _iframe = $$("iframe", {
  6103. "frameborder": "no",
  6104. "border": "0",
  6105. "scrolling ": "no",
  6106. "style": {
  6107. "cssText": "border:0;width:100%;height:100%"
  6108. },
  6109. "src": "/Office/Word/WordEditArea.htm"
  6110. })
  6111. _box.appendChild(_iframe);
  6112. _box.appendChild(_jie);
  6113. _formdiv = new U.UF.UI.form(
  6114. "协同文档",
  6115. _box, {
  6116. "id": "doc" + cid + stage + task + tool,
  6117. "style": {
  6118. "width": "90%",
  6119. "height": "90%",
  6120. "overflow": 'hidden'
  6121. },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, {
  6126. "style": {
  6127. "height": "36px"
  6128. }
  6129. }).form; //创建窗体
  6130. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6131. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6132. })
  6133. _taskbar = {
  6134. "id": str + _formdiv.id,
  6135. "style": {
  6136. "backgroundImage": "url(/img/icon/doc.png)"
  6137. },
  6138. "name": "协同文档",
  6139. "forms": _formdiv,
  6140. "click": function () {
  6141. U.MD.D.I.openApplication(str, obj, info);
  6142. }
  6143. }
  6144. break;
  6145. case "mindNetwork": //好友打开
  6146. aTool = 7;
  6147. _iframe = $$("iframe", {
  6148. "webkitallowfullscreen": "",
  6149. "mozallowfullscreen": "",
  6150. "allowfullscreen": "",
  6151. "frameborder": "no",
  6152. "border": "0",
  6153. "scrolling ": "no",
  6154. "style": {
  6155. "cssText": "border:0; width:100%; height:100%;"
  6156. },
  6157. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6158. })
  6159. _box.appendChild(_iframe);
  6160. _box.appendChild(_jie);
  6161. _formdiv = new U.UF.UI.form(
  6162. "思维网格",
  6163. _box, {
  6164. "id": "mindNetwork" + cid + stage + task + tool,
  6165. "style": {
  6166. "width": "90%",
  6167. "height": "90%",
  6168. "overflow": 'hidden'
  6169. },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, {
  6174. "style": {
  6175. "height": "36px"
  6176. }
  6177. }).form; //创建窗体
  6178. _taskbar = {
  6179. "id": str + _formdiv.id,
  6180. "style": {
  6181. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6182. },
  6183. "name": "思维网格",
  6184. "forms": _formdiv,
  6185. "click": function () {
  6186. U.MD.D.I.openApplication(str, obj, info);
  6187. }
  6188. }
  6189. break;
  6190. case "courseDesign":
  6191. _iframe = $$("iframe", {
  6192. "webkitallowfullscreen": "",
  6193. "mozallowfullscreen": "",
  6194. "allowfullscreen": "",
  6195. "frameborder": "no",
  6196. "border": "0",
  6197. "scrolling ": "no",
  6198. "style": {
  6199. "cssText": "border:0; width:100%; height:100%;"
  6200. },
  6201. "src": "/course-design-vue"
  6202. })
  6203. _box.appendChild(_iframe);
  6204. _box.appendChild(_jie);
  6205. _formdiv = new U.UF.UI.form(
  6206. "项目设计",
  6207. _box, {
  6208. "id": "courseDesign" + cid + stage + task + tool,
  6209. "style": {
  6210. "width": "90%",
  6211. "height": "90%",
  6212. "overflow": 'hidden'
  6213. },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, {
  6218. "style": {
  6219. "height": "36px"
  6220. }
  6221. }).form; //创建窗体
  6222. _taskbar = {
  6223. "id": str + _formdiv.id,
  6224. "style": {
  6225. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6226. },
  6227. "name": "项目设计",
  6228. "forms": _formdiv,
  6229. "click": function () {
  6230. U.MD.D.I.openApplication(str, obj, info);
  6231. }
  6232. }
  6233. break;
  6234. }
  6235. const script1 = document.createElement("script");
  6236. script1.type = "text/javascript";
  6237. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6238. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6239. const script2 = document.createElement("script");
  6240. script2.type = "text/javascript";
  6241. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6242. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6243. const script3 = document.createElement("script");
  6244. script3.type = "text/javascript";
  6245. script3.charset = "UTF-8";
  6246. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6247. const script4 = document.createElement("script");
  6248. script4.type = "text/javascript";
  6249. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6250. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6251. if (_iframe) {
  6252. if (str == 'doc') {
  6253. _iframe = _formdiv.querySelector('iframe')
  6254. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6255. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6256. _iframe.contentWindow.document.body.appendChild(script1);
  6257. _iframe.contentWindow.document.body.appendChild(script2);
  6258. // _iframe.contentWindow.document.body.appendChild(script3);
  6259. _iframe.contentWindow.document.body.appendChild(script4);
  6260. })
  6261. if (onloadListener) {
  6262. _iframe.contentDocument.location.reload()
  6263. } else {
  6264. _iframe.contentDocument.location.reload()
  6265. }
  6266. } else if (str == 'courseDesign') {
  6267. U.UF.DL.iframeLoad(_iframe, function () {
  6268. // _iframe.contentWindow.U.MD.O.W.load();
  6269. // _iframe.contentWindow.document.body.appendChild(script1);
  6270. _iframe.contentWindow.document.body.appendChild(script2);
  6271. _iframe.contentWindow.document.body.appendChild(script4);
  6272. })
  6273. } else if (str == 'mind') {
  6274. _iframe = _formdiv.querySelector('iframe')
  6275. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6276. //
  6277. _iframe.contentWindow.document.body.appendChild(script1);
  6278. _iframe.contentWindow.document.body.appendChild(script2);
  6279. _iframe.contentWindow.document.body.appendChild(script4);
  6280. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6281. })
  6282. if (onloadListener) {
  6283. _iframe.contentDocument.location.reload()
  6284. } else {
  6285. _iframe.contentDocument.location.reload()
  6286. }
  6287. } else if (str == 'whiteboard') {
  6288. _iframe = _formdiv.querySelector('iframe')
  6289. let onloadListener = _iframe.onload = () => {
  6290. _iframe.contentWindow.document.body.appendChild(script1);
  6291. _iframe.contentWindow.document.body.appendChild(script2);
  6292. _iframe.contentWindow.document.body.appendChild(script4);
  6293. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6294. };
  6295. // if (onloadListener) {
  6296. // try {
  6297. // _iframe.src += "?cocorobo="+new Date().getTime()
  6298. // _iframe.contentWindow.document.location.reload()
  6299. // } catch (error) {
  6300. // }
  6301. // } else {
  6302. // _iframe.contentDocument.location.reload()
  6303. // }
  6304. } else {
  6305. _iframe.onload = () => {
  6306. _iframe.contentWindow.document.body.appendChild(script1);
  6307. _iframe.contentWindow.document.body.appendChild(script2);
  6308. // _iframe.contentWindow.document.body.appendChild(script3);
  6309. _iframe.contentWindow.document.body.appendChild(script4);
  6310. };
  6311. }
  6312. _jie.onclick = async () => {
  6313. let text = ''
  6314. if (aTool == 1) {
  6315. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6316. } else if (aTool == 6) {
  6317. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6318. } else if (aTool == 3) {
  6319. text = await U.MD.D.I.getEditorContent(_iframe);
  6320. }
  6321. _loading.style.display = 'flex'
  6322. console.log(_loading);
  6323. var _ajs = _iframe.contentWindow.document.createElement("script");
  6324. _ajs.type = "text/javascript";
  6325. _ajs.innerHTML =
  6326. // 'console.log(' + _loading + ');\n' +
  6327. 'var _js = document.createElement("script");\n' +
  6328. '_js.type="text/javascript";\n' +
  6329. '_js.charset="UTF-8";\n' +
  6330. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6331. "_js.onload = function(){\n" +
  6332. ' var a = document.getElementsByTagName("img")\n' +
  6333. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6334. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6335. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6336. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6337. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6338. "beforeUpload_shishi(file," +
  6339. "'" +
  6340. _userid +
  6341. "'" +
  6342. ", " +
  6343. "'" +
  6344. _cid +
  6345. "'" +
  6346. ", " +
  6347. "'" +
  6348. _stage +
  6349. "'" +
  6350. ", " +
  6351. "'" +
  6352. _task +
  6353. "'" +
  6354. ", " +
  6355. "'" +
  6356. _tool +
  6357. "'" +
  6358. ", " +
  6359. "'" +
  6360. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6361. "'" +
  6362. ", " +
  6363. "'" +
  6364. aTool +
  6365. "'" +
  6366. ", " +
  6367. "`" +
  6368. text +
  6369. "`" +
  6370. ")\n" +
  6371. " });\n" +
  6372. "}\n" +
  6373. "document.head.appendChild(_js);\n";
  6374. _iframe.contentWindow.document.head.appendChild(_ajs);
  6375. }
  6376. }
  6377. //U.MD.D.I.openClick(str);
  6378. //如果有任务栏信息
  6379. // if (_taskbar) {
  6380. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6381. // }
  6382. }
  6383. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6384. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6385. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6386. _userinfo = US.userInfo, //登录用户信息
  6387. _userid = US.userInfo.userid //登录用户id
  6388. let _iframe;
  6389. let _cid = cid,
  6390. _stage = stage,
  6391. _task = task,
  6392. _tool = tool;
  6393. var _jie = $$("div", {
  6394. "style": {
  6395. "position": "absolute",
  6396. "bottom": "50px",
  6397. "right": "50px",
  6398. "zIndex": "9999",
  6399. "backgroundColor": "#2268bc",
  6400. "color": "#fff",
  6401. "padding": "12px 20px",
  6402. "cursor": "pointer",
  6403. "borderRadius": "4px",
  6404. },
  6405. "innerHTML": "提交作业"
  6406. })
  6407. let aTool = ''
  6408. let _loading = document.createElement('div')
  6409. _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;"
  6410. // _loading.id = "";
  6411. let _lchild = document.createElement('div')
  6412. let _limg = document.createElement('img')
  6413. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6414. _limg.style = "width: 26px;margin-right: 10px;"
  6415. _lchild.appendChild(_limg)
  6416. let _lspan = document.createElement('span')
  6417. _lspan.innerHTML = "上传中..."
  6418. _lchild.appendChild(_lspan)
  6419. _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%);"
  6420. _loading.appendChild(_lchild)
  6421. let _box = $$('div', {
  6422. "style": {
  6423. "position": "relative",
  6424. "width": "100%",
  6425. "height": "100%",
  6426. },
  6427. })
  6428. _box.appendChild(_loading)
  6429. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6430. switch (str) {
  6431. case "whiteboard":
  6432. aTool = 1;
  6433. _iframe = $$("iframe", {
  6434. "frameborder": "no",
  6435. "border": "0",
  6436. "scrolling ": "no",
  6437. "style": {
  6438. "cssText": "border:0;width:100%;height:100%"
  6439. },
  6440. "src": "https://beta.iwb.cocorobo.cn/"
  6441. })
  6442. _box.appendChild(_iframe);
  6443. _box.appendChild(_jie);
  6444. _formdiv = new U.UF.UI.form(
  6445. "电子白板",
  6446. _box, {
  6447. "id": "whiteboard" + cid + stage + task + tool,
  6448. "style": {
  6449. "width": "90%",
  6450. "height": "90%",
  6451. "overflow": 'hidden'
  6452. },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, {
  6457. "style": {
  6458. "height": "36px"
  6459. }
  6460. }).form; //创建窗体
  6461. _taskbar = {
  6462. "id": str + _formdiv.id,
  6463. "style": {
  6464. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6465. },
  6466. "name": "电子白板",
  6467. "forms": _formdiv,
  6468. "click": function () {
  6469. U.MD.D.I.openApplication(str, obj, info);
  6470. }
  6471. }
  6472. break;
  6473. case "mind":
  6474. aTool = 3;
  6475. _iframe = $$("iframe", {
  6476. "frameborder": "no",
  6477. "border": "0",
  6478. "scrolling ": "no",
  6479. "style": {
  6480. "cssText": "border:0;width:100%;height:100%"
  6481. },
  6482. "src": "/kityminder-editor/dist/index.html"
  6483. })
  6484. _box.appendChild(_iframe);
  6485. _box.appendChild(_jie);
  6486. _formdiv = new U.UF.UI.form(
  6487. "思维导图",
  6488. _box, { //"/jsmind/example/demo.html"
  6489. "id": "mind" + cid + stage + task + tool,
  6490. "style": {
  6491. "width": "90%",
  6492. "height": "90%",
  6493. "overflow": 'hidden'
  6494. },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, {
  6499. "style": {
  6500. "height": "36px"
  6501. }
  6502. }).form; //创建窗体
  6503. _taskbar = {
  6504. "id": str + _formdiv.id,
  6505. "style": {
  6506. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6507. },
  6508. "name": "思维导图",
  6509. "forms": _formdiv,
  6510. "click": function () {
  6511. U.MD.D.I.openApplication(str, obj, info);
  6512. }
  6513. }
  6514. break;
  6515. case "MindMap":
  6516. aTool = 3;
  6517. _iframe = $$("iframe", {
  6518. "frameborder": "no",
  6519. "border": "0",
  6520. "scrolling ": "no",
  6521. "style": {
  6522. "cssText": "border:0;width:100%;height:100%"
  6523. },
  6524. "src": "//cloud.cocorobo.cn/mind/"
  6525. })
  6526. _box.appendChild(_iframe);
  6527. _box.appendChild(_jie);
  6528. _formdiv = new U.UF.UI.form(
  6529. "思维导图",
  6530. _box, { //"/jsmind/example/demo.html"
  6531. "id": "mind" + cid + stage + task + tool,
  6532. "style": {
  6533. "width": "90%",
  6534. "height": "90%",
  6535. "overflow": 'hidden'
  6536. },
  6537. "onresize": function () { }
  6538. }, {
  6539. closecallback: function () { }
  6540. }, {
  6541. "style": {
  6542. "height": "36px"
  6543. }
  6544. }).form; //创建窗体
  6545. _taskbar = {
  6546. "id": str + _formdiv.id,
  6547. "style": {
  6548. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6549. },
  6550. "name": "思维导图",
  6551. "forms": _formdiv,
  6552. "click": function () {
  6553. U.MD.D.I.openApplication(str, obj, info);
  6554. }
  6555. }
  6556. break;
  6557. case "doc":
  6558. aTool = 6;
  6559. _iframe = $$("iframe", {
  6560. "frameborder": "no",
  6561. "border": "0",
  6562. "scrolling ": "no",
  6563. "style": {
  6564. "cssText": "border:0;width:100%;height:100%"
  6565. },
  6566. "src": "/Office/Word/WordEditArea.htm"
  6567. })
  6568. _box.appendChild(_iframe);
  6569. _box.appendChild(_jie);
  6570. _formdiv = new U.UF.UI.form(
  6571. "协同文档",
  6572. _box, {
  6573. "id": "doc" + cid + stage + task + tool,
  6574. "style": {
  6575. "width": "90%",
  6576. "height": "90%",
  6577. "overflow": 'hidden'
  6578. },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, {
  6583. "style": {
  6584. "height": "36px"
  6585. }
  6586. }).form; //创建窗体
  6587. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6588. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6589. })
  6590. _taskbar = {
  6591. "id": str + _formdiv.id,
  6592. "style": {
  6593. "backgroundImage": "url(/img/icon/doc.png)"
  6594. },
  6595. "name": "协同文档",
  6596. "forms": _formdiv,
  6597. "click": function () {
  6598. U.MD.D.I.openApplication(str, obj, info);
  6599. }
  6600. }
  6601. break;
  6602. case "mindNetwork": //好友打开
  6603. aTool = 7;
  6604. _iframe = $$("iframe", {
  6605. "webkitallowfullscreen": "",
  6606. "mozallowfullscreen": "",
  6607. "allowfullscreen": "",
  6608. "frameborder": "no",
  6609. "border": "0",
  6610. "scrolling ": "no",
  6611. "style": {
  6612. "cssText": "border:0; width:100%; height:100%;"
  6613. },
  6614. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6615. })
  6616. _box.appendChild(_iframe);
  6617. _box.appendChild(_jie);
  6618. _formdiv = new U.UF.UI.form(
  6619. "思维网格",
  6620. _box, {
  6621. "id": "mindNetwork" + cid + stage + task + tool,
  6622. "style": {
  6623. "width": "90%",
  6624. "height": "90%",
  6625. "overflow": 'hidden'
  6626. },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, {
  6631. "style": {
  6632. "height": "36px"
  6633. }
  6634. }).form; //创建窗体
  6635. _taskbar = {
  6636. "id": str + _formdiv.id,
  6637. "style": {
  6638. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6639. },
  6640. "name": "思维网格",
  6641. "forms": _formdiv,
  6642. "click": function () {
  6643. U.MD.D.I.openApplication(str, obj, info);
  6644. }
  6645. }
  6646. break;
  6647. case "courseDesign":
  6648. _iframe = $$("iframe", {
  6649. "webkitallowfullscreen": "",
  6650. "mozallowfullscreen": "",
  6651. "allowfullscreen": "",
  6652. "frameborder": "no",
  6653. "border": "0",
  6654. "scrolling ": "no",
  6655. "style": {
  6656. "cssText": "border:0; width:100%; height:100%;"
  6657. },
  6658. "src": "/course-design-vue"
  6659. })
  6660. _box.appendChild(_iframe);
  6661. _box.appendChild(_jie);
  6662. _formdiv = new U.UF.UI.form(
  6663. "项目设计",
  6664. _box, {
  6665. "id": "courseDesign" + cid + stage + task + tool,
  6666. "style": {
  6667. "width": "90%",
  6668. "height": "90%",
  6669. "overflow": 'hidden'
  6670. },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, {
  6675. "style": {
  6676. "height": "36px"
  6677. }
  6678. }).form; //创建窗体
  6679. _taskbar = {
  6680. "id": str + _formdiv.id,
  6681. "style": {
  6682. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6683. },
  6684. "name": "项目设计",
  6685. "forms": _formdiv,
  6686. "click": function () {
  6687. U.MD.D.I.openApplication(str, obj, info);
  6688. }
  6689. }
  6690. break;
  6691. }
  6692. const script1 = document.createElement("script");
  6693. script1.type = "text/javascript";
  6694. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6695. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6696. const script2 = document.createElement("script");
  6697. script2.type = "text/javascript";
  6698. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6699. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6700. const script3 = document.createElement("script");
  6701. script3.type = "text/javascript";
  6702. script3.charset = "UTF-8";
  6703. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6704. const script4 = document.createElement("script");
  6705. script4.type = "text/javascript";
  6706. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6707. script4.src = window.origin + "/js/Common/jietu2E.js";
  6708. if (_iframe) {
  6709. if (str == 'doc') {
  6710. _iframe = _formdiv.querySelector('iframe')
  6711. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6712. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6713. _iframe.contentWindow.document.body.appendChild(script1);
  6714. _iframe.contentWindow.document.body.appendChild(script2);
  6715. // _iframe.contentWindow.document.body.appendChild(script3);
  6716. _iframe.contentWindow.document.body.appendChild(script4);
  6717. })
  6718. if (onloadListener) {
  6719. _iframe.contentDocument.location.reload()
  6720. } else {
  6721. _iframe.contentDocument.location.reload()
  6722. }
  6723. } else if (str == 'courseDesign') {
  6724. U.UF.DL.iframeLoad(_iframe, function () {
  6725. // _iframe.contentWindow.U.MD.O.W.load();
  6726. // _iframe.contentWindow.document.body.appendChild(script1);
  6727. _iframe.contentWindow.document.body.appendChild(script2);
  6728. _iframe.contentWindow.document.body.appendChild(script4);
  6729. })
  6730. } else if (str == 'mind') {
  6731. _iframe = _formdiv.querySelector('iframe')
  6732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6733. //
  6734. _iframe.contentWindow.document.body.appendChild(script1);
  6735. _iframe.contentWindow.document.body.appendChild(script2);
  6736. _iframe.contentWindow.document.body.appendChild(script4);
  6737. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6738. })
  6739. if (onloadListener) {
  6740. _iframe.contentDocument.location.reload()
  6741. } else {
  6742. _iframe.contentDocument.location.reload()
  6743. }
  6744. } else if (str == 'whiteboard') {
  6745. _iframe = _formdiv.querySelector('iframe')
  6746. let onloadListener = _iframe.onload = () => {
  6747. _iframe.contentWindow.document.body.appendChild(script1);
  6748. _iframe.contentWindow.document.body.appendChild(script2);
  6749. _iframe.contentWindow.document.body.appendChild(script4);
  6750. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6751. };
  6752. // if (onloadListener) {
  6753. // try {
  6754. // _iframe.src += "?cocorobo="+new Date().getTime()
  6755. // _iframe.contentWindow.document.location.reload()
  6756. // } catch (error) {
  6757. // }
  6758. // } else {
  6759. // _iframe.contentDocument.location.reload()
  6760. // }
  6761. } else {
  6762. _iframe.onload = () => {
  6763. _iframe.contentWindow.document.body.appendChild(script1);
  6764. _iframe.contentWindow.document.body.appendChild(script2);
  6765. // _iframe.contentWindow.document.body.appendChild(script3);
  6766. _iframe.contentWindow.document.body.appendChild(script4);
  6767. };
  6768. }
  6769. _jie.onclick = async () => {
  6770. let text = ''
  6771. if (aTool == 1) {
  6772. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6773. } else if (aTool == 6) {
  6774. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6775. } else if (aTool == 3) {
  6776. text = await U.MD.D.I.getEditorContent(_iframe);
  6777. }
  6778. _loading.style.display = 'flex'
  6779. console.log(_loading);
  6780. var _ajs = _iframe.contentWindow.document.createElement("script");
  6781. _ajs.type = "text/javascript";
  6782. _ajs.innerHTML =
  6783. // 'console.log(' + _loading + ');\n' +
  6784. 'var _js = document.createElement("script");\n' +
  6785. '_js.type="text/javascript";\n' +
  6786. '_js.charset="UTF-8";\n' +
  6787. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6788. "_js.onload = function(){\n" +
  6789. ' var a = document.getElementsByTagName("img")\n' +
  6790. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6791. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6792. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6793. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6794. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6795. "beforeUpload_shishi(file," +
  6796. "'" +
  6797. _userid +
  6798. "'" +
  6799. ", " +
  6800. "'" +
  6801. _cid +
  6802. "'" +
  6803. ", " +
  6804. "'" +
  6805. _stage +
  6806. "'" +
  6807. ", " +
  6808. "'" +
  6809. _task +
  6810. "'" +
  6811. ", " +
  6812. "'" +
  6813. _tool +
  6814. "'" +
  6815. ", " +
  6816. "'" +
  6817. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6818. "'" +
  6819. ", " +
  6820. "'" +
  6821. aTool +
  6822. "'" +
  6823. ", " +
  6824. "`" +
  6825. text +
  6826. "`" +
  6827. ")\n" +
  6828. " });\n" +
  6829. "}\n" +
  6830. "document.head.appendChild(_js);\n";
  6831. _iframe.contentWindow.document.head.appendChild(_ajs);
  6832. }
  6833. }
  6834. //U.MD.D.I.openClick(str);
  6835. //如果有任务栏信息
  6836. // if (_taskbar) {
  6837. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6838. // }
  6839. }
  6840. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6841. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6842. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6843. _userid = student.userid, //登录用户id
  6844. _username = student.student //用户名字
  6845. let _iframe;
  6846. let _cid = cid,
  6847. _stage = stage,
  6848. _task = task,
  6849. _tool = tool;
  6850. var _jie = $$("div", {
  6851. "style": {
  6852. "position": "absolute",
  6853. "bottom": "50px",
  6854. "right": "50px",
  6855. "zIndex": "9999",
  6856. "backgroundColor": "#2268bc",
  6857. "color": "#fff",
  6858. "padding": "12px 20px",
  6859. "cursor": "pointer",
  6860. "borderRadius": "4px",
  6861. },
  6862. "innerHTML": "提交作业"
  6863. })
  6864. let aTool = ''
  6865. let _loading = document.createElement('div')
  6866. _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;"
  6867. // _loading.id = "";
  6868. let _lchild = document.createElement('div')
  6869. let _limg = document.createElement('img')
  6870. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6871. _limg.style = "width: 26px;margin-right: 10px;"
  6872. _lchild.appendChild(_limg)
  6873. let _lspan = document.createElement('span')
  6874. _lspan.innerHTML = "上传中..."
  6875. _lchild.appendChild(_lspan)
  6876. _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%);"
  6877. _loading.appendChild(_lchild)
  6878. var _box = $$('div', {
  6879. "style": {
  6880. "position": "relative",
  6881. "width": "100%",
  6882. "height": "100%",
  6883. },
  6884. })
  6885. _box.appendChild(_loading)
  6886. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6887. switch (str) {
  6888. case "whiteboard":
  6889. aTool = 1;
  6890. _iframe = $$("iframe", {
  6891. "frameborder": "no",
  6892. "border": "0",
  6893. "scrolling ": "no",
  6894. "style": {
  6895. "cssText": "border:0;width:100%;height:100%"
  6896. },
  6897. "src": "https://beta.iwb.cocorobo.cn/"
  6898. })
  6899. _box.appendChild(_iframe);
  6900. _box.appendChild(_jie);
  6901. _formdiv = new U.UF.UI.form(
  6902. "电子白板-" + _username,
  6903. _box, {
  6904. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6905. "style": {
  6906. "width": "90%",
  6907. "height": "90%",
  6908. "overflow": 'hidden'
  6909. },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, {
  6914. "style": {
  6915. "height": "36px"
  6916. }
  6917. }).form; //创建窗体
  6918. _taskbar = {
  6919. "id": str + _formdiv.id,
  6920. "style": {
  6921. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6922. },
  6923. "name": "电子白板",
  6924. "forms": _formdiv,
  6925. "click": function () {
  6926. U.MD.D.I.openApplication(str, obj, info);
  6927. }
  6928. }
  6929. break;
  6930. case "mind":
  6931. aTool = 3;
  6932. _iframe = $$("iframe", {
  6933. "frameborder": "no",
  6934. "border": "0",
  6935. "scrolling ": "no",
  6936. "style": {
  6937. "cssText": "border:0;width:100%;height:100%"
  6938. },
  6939. "src": "/kityminder-editor/dist/index.html"
  6940. })
  6941. _box.appendChild(_iframe);
  6942. _box.appendChild(_jie);
  6943. _formdiv = new U.UF.UI.form(
  6944. "思维导图-" + _username,
  6945. _box, { //"/jsmind/example/demo.html"
  6946. "id": "mind" + cid + stage + task + tool + _userid,
  6947. "style": {
  6948. "width": "90%",
  6949. "height": "90%",
  6950. "overflow": 'hidden'
  6951. },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, {
  6956. "style": {
  6957. "height": "36px"
  6958. }
  6959. }).form; //创建窗体
  6960. _taskbar = {
  6961. "id": str + _formdiv.id,
  6962. "style": {
  6963. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6964. },
  6965. "name": "思维导图",
  6966. "forms": _formdiv,
  6967. "click": function () {
  6968. U.MD.D.I.openApplication(str, obj, info);
  6969. }
  6970. }
  6971. break;
  6972. case "MindMap":
  6973. aTool = 3;
  6974. _iframe = $$("iframe", {
  6975. "frameborder": "no",
  6976. "border": "0",
  6977. "scrolling ": "no",
  6978. "style": {
  6979. "cssText": "border:0;width:100%;height:100%"
  6980. },
  6981. "src": "//cloud.cocorobo.cn/mind/"
  6982. })
  6983. _box.appendChild(_iframe);
  6984. _box.appendChild(_jie);
  6985. _formdiv = new U.UF.UI.form(
  6986. "思维导图-" + _username,
  6987. _box, { //"/jsmind/example/demo.html"
  6988. "id": "mind" + cid + stage + task + tool + _userid,
  6989. "style": {
  6990. "width": "90%",
  6991. "height": "90%",
  6992. "overflow": 'hidden'
  6993. },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, {
  6998. "style": {
  6999. "height": "36px"
  7000. }
  7001. }).form; //创建窗体
  7002. _taskbar = {
  7003. "id": str + _formdiv.id,
  7004. "style": {
  7005. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7006. },
  7007. "name": "思维导图",
  7008. "forms": _formdiv,
  7009. "click": function () {
  7010. U.MD.D.I.openApplication(str, obj, info);
  7011. }
  7012. }
  7013. break;
  7014. case "doc":
  7015. aTool = 6;
  7016. _iframe = $$("iframe", {
  7017. "frameborder": "no",
  7018. "border": "0",
  7019. "scrolling ": "no",
  7020. "style": {
  7021. "cssText": "border:0;width:100%;height:100%"
  7022. },
  7023. "src": "/Office/Word/WordEditArea.htm"
  7024. })
  7025. _box.appendChild(_iframe);
  7026. _box.appendChild(_jie);
  7027. _formdiv = new U.UF.UI.form(
  7028. "协同文档-" + _username,
  7029. _box, {
  7030. "id": "doc" + cid + stage + task + tool + _userid,
  7031. "style": {
  7032. "width": "90%",
  7033. "height": "90%",
  7034. "overflow": 'hidden'
  7035. },
  7036. "onresize": function () { }
  7037. }, {
  7038. closecallback: function () { }
  7039. }, {
  7040. "style": {
  7041. "height": "36px"
  7042. }
  7043. }).form; //创建窗体
  7044. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7045. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7046. })
  7047. _taskbar = {
  7048. "id": str + _formdiv.id,
  7049. "style": {
  7050. "backgroundImage": "url(/img/icon/doc.png)"
  7051. },
  7052. "name": "协同文档",
  7053. "forms": _formdiv,
  7054. "click": function () {
  7055. U.MD.D.I.openApplication(str, obj, info);
  7056. }
  7057. }
  7058. break;
  7059. case "mindNetwork": //好友打开
  7060. aTool = 7;
  7061. _iframe = $$("iframe", {
  7062. "webkitallowfullscreen": "",
  7063. "mozallowfullscreen": "",
  7064. "allowfullscreen": "",
  7065. "frameborder": "no",
  7066. "border": "0",
  7067. "scrolling ": "no",
  7068. "style": {
  7069. "cssText": "border:0; width:100%; height:100%;"
  7070. },
  7071. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7072. })
  7073. _box.appendChild(_iframe);
  7074. _box.appendChild(_jie);
  7075. _formdiv = new U.UF.UI.form(
  7076. "思维网格-" + _username,
  7077. _box, {
  7078. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7079. "style": {
  7080. "width": "90%",
  7081. "height": "90%",
  7082. "overflow": 'hidden'
  7083. },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () { }
  7087. }, {
  7088. "style": {
  7089. "height": "36px"
  7090. }
  7091. }).form; //创建窗体
  7092. _taskbar = {
  7093. "id": str + _formdiv.id,
  7094. "style": {
  7095. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7096. },
  7097. "name": "思维网格",
  7098. "forms": _formdiv,
  7099. "click": function () {
  7100. U.MD.D.I.openApplication(str, obj, info);
  7101. }
  7102. }
  7103. break;
  7104. case "courseDesign":
  7105. _iframe = $$("iframe", {
  7106. "webkitallowfullscreen": "",
  7107. "mozallowfullscreen": "",
  7108. "allowfullscreen": "",
  7109. "frameborder": "no",
  7110. "border": "0",
  7111. "scrolling ": "no",
  7112. "style": {
  7113. "cssText": "border:0; width:100%; height:100%;"
  7114. },
  7115. "src": "/course-design-vue"
  7116. })
  7117. _box.appendChild(_iframe);
  7118. _box.appendChild(_jie);
  7119. _formdiv = new U.UF.UI.form(
  7120. "项目设计-" + _username,
  7121. _box, {
  7122. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7123. "style": {
  7124. "width": "90%",
  7125. "height": "90%",
  7126. "overflow": 'hidden'
  7127. },
  7128. "onresize": function () { }
  7129. }, {
  7130. closecallback: function () { }
  7131. }, {
  7132. "style": {
  7133. "height": "36px"
  7134. }
  7135. }).form; //创建窗体
  7136. _taskbar = {
  7137. "id": str + _formdiv.id,
  7138. "style": {
  7139. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7140. },
  7141. "name": "项目设计",
  7142. "forms": _formdiv,
  7143. "click": function () {
  7144. U.MD.D.I.openApplication(str, obj, info);
  7145. }
  7146. }
  7147. break;
  7148. }
  7149. const script1 = document.createElement("script");
  7150. script1.type = "text/javascript";
  7151. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7152. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7153. const script2 = document.createElement("script");
  7154. script2.type = "text/javascript";
  7155. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7156. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7157. const script3 = document.createElement("script");
  7158. script3.type = "text/javascript";
  7159. script3.charset = "UTF-8";
  7160. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7161. const script4 = document.createElement("script");
  7162. script4.type = "text/javascript";
  7163. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7164. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7165. if (_iframe) {
  7166. if (str == 'doc') {
  7167. _iframe = _formdiv.querySelector('iframe')
  7168. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7169. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7170. _iframe.contentWindow.document.body.appendChild(script1);
  7171. _iframe.contentWindow.document.body.appendChild(script2);
  7172. // _iframe.contentWindow.document.body.appendChild(script3);
  7173. _iframe.contentWindow.document.body.appendChild(script4);
  7174. })
  7175. if (onloadListener) {
  7176. _iframe.contentDocument.location.reload()
  7177. } else {
  7178. _iframe.contentDocument.location.reload()
  7179. }
  7180. } else if (str == 'courseDesign') {
  7181. U.UF.DL.iframeLoad(_iframe, function () {
  7182. // _iframe.contentWindow.U.MD.O.W.load();
  7183. // _iframe.contentWindow.document.body.appendChild(script1);
  7184. _iframe.contentWindow.document.body.appendChild(script2);
  7185. _iframe.contentWindow.document.body.appendChild(script4);
  7186. })
  7187. } else if (str == 'mind') {
  7188. _iframe = _formdiv.querySelector('iframe')
  7189. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7190. //
  7191. _iframe.contentWindow.document.body.appendChild(script1);
  7192. _iframe.contentWindow.document.body.appendChild(script2);
  7193. _iframe.contentWindow.document.body.appendChild(script4);
  7194. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7195. })
  7196. if (onloadListener) {
  7197. _iframe.contentDocument.location.reload()
  7198. } else {
  7199. _iframe.contentDocument.location.reload()
  7200. }
  7201. } else if (str == 'whiteboard') {
  7202. _iframe = _formdiv.querySelector('iframe')
  7203. let onloadListener = _iframe.onload = () => {
  7204. _iframe.contentWindow.document.body.appendChild(script1);
  7205. _iframe.contentWindow.document.body.appendChild(script2);
  7206. _iframe.contentWindow.document.body.appendChild(script4);
  7207. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7208. };
  7209. // if (onloadListener) {
  7210. // try {
  7211. // _iframe.src += "?cocorobo="+new Date().getTime()
  7212. // _iframe.contentWindow.document.location.reload()
  7213. // } catch (error) {
  7214. // }
  7215. // } else {
  7216. // _iframe.contentDocument.location.reload()
  7217. // }
  7218. } else {
  7219. _iframe.onload = () => {
  7220. _iframe.contentWindow.document.body.appendChild(script1);
  7221. _iframe.contentWindow.document.body.appendChild(script2);
  7222. // _iframe.contentWindow.document.body.appendChild(script3);
  7223. _iframe.contentWindow.document.body.appendChild(script4);
  7224. };
  7225. }
  7226. _jie.onclick = async () => {
  7227. let text = ''
  7228. if (aTool == 1) {
  7229. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7230. } else if (aTool == 6) {
  7231. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7232. } else if (aTool == 3) {
  7233. text = await U.MD.D.I.getEditorContent(_iframe);
  7234. }
  7235. _loading.style.display = 'flex'
  7236. console.log(_loading);
  7237. var _ajs = _iframe.contentWindow.document.createElement("script");
  7238. _ajs.type = "text/javascript";
  7239. _ajs.innerHTML =
  7240. // 'console.log(' + _loading + ');\n' +
  7241. 'var _js = document.createElement("script");\n' +
  7242. '_js.type="text/javascript";\n' +
  7243. '_js.charset="UTF-8";\n' +
  7244. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7245. "_js.onload = function(){\n" +
  7246. ' var a = document.getElementsByTagName("img")\n' +
  7247. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7248. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7249. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7250. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7251. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7252. "beforeUpload_shishi(file," +
  7253. "'" +
  7254. _userid +
  7255. "'" +
  7256. ", " +
  7257. "'" +
  7258. _cid +
  7259. "'" +
  7260. ", " +
  7261. "'" +
  7262. _stage +
  7263. "'" +
  7264. ", " +
  7265. "'" +
  7266. _task +
  7267. "'" +
  7268. ", " +
  7269. "'" +
  7270. _tool +
  7271. "'" +
  7272. ", " +
  7273. "'" +
  7274. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7275. "'" +
  7276. ", " +
  7277. "'" +
  7278. aTool +
  7279. "'" +
  7280. ", " +
  7281. "`" +
  7282. text +
  7283. "`" +
  7284. ")\n" +
  7285. " });\n" +
  7286. "}\n" +
  7287. "document.head.appendChild(_js);\n";
  7288. _iframe.contentWindow.document.head.appendChild(_ajs);
  7289. }
  7290. }
  7291. }
  7292. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7293. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7294. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7295. _userid = student.userid, //登录用户id
  7296. _username = student.student //用户名字
  7297. let _iframe;
  7298. let _cid = cid,
  7299. _stage = stage,
  7300. _task = task,
  7301. _tool = tool;
  7302. var _jie = $$("div", {
  7303. "style": {
  7304. "position": "absolute",
  7305. "bottom": "50px",
  7306. "right": "50px",
  7307. "zIndex": "9999",
  7308. "backgroundColor": "#2268bc",
  7309. "color": "#fff",
  7310. "padding": "12px 20px",
  7311. "cursor": "pointer",
  7312. "borderRadius": "4px",
  7313. },
  7314. "innerHTML": "提交作业"
  7315. })
  7316. let aTool = ''
  7317. let _loading = document.createElement('div')
  7318. _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;"
  7319. // _loading.id = "";
  7320. let _lchild = document.createElement('div')
  7321. let _limg = document.createElement('img')
  7322. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7323. _limg.style = "width: 26px;margin-right: 10px;"
  7324. _lchild.appendChild(_limg)
  7325. let _lspan = document.createElement('span')
  7326. _lspan.innerHTML = "上传中..."
  7327. _lchild.appendChild(_lspan)
  7328. _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%);"
  7329. _loading.appendChild(_lchild)
  7330. var _box = $$('div', {
  7331. "style": {
  7332. "position": "relative",
  7333. "width": "100%",
  7334. "height": "100%",
  7335. },
  7336. })
  7337. _box.appendChild(_loading)
  7338. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7339. switch (str) {
  7340. case "whiteboard":
  7341. aTool = 1;
  7342. _iframe = $$("iframe", {
  7343. "frameborder": "no",
  7344. "border": "0",
  7345. "scrolling ": "no",
  7346. "style": {
  7347. "cssText": "border:0;width:100%;height:100%"
  7348. },
  7349. "src": "https://beta.iwb.cocorobo.cn/"
  7350. })
  7351. _box.appendChild(_iframe);
  7352. _box.appendChild(_jie);
  7353. _formdiv = new U.UF.UI.form(
  7354. "电子白板-" + _username,
  7355. _box, {
  7356. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7357. "style": {
  7358. "width": "90%",
  7359. "height": "90%",
  7360. "overflow": 'hidden'
  7361. },
  7362. "onresize": function () { }
  7363. }, {
  7364. closecallback: function () { }
  7365. }, {
  7366. "style": {
  7367. "height": "36px"
  7368. }
  7369. }).form; //创建窗体
  7370. _taskbar = {
  7371. "id": str + _formdiv.id,
  7372. "style": {
  7373. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7374. },
  7375. "name": "电子白板",
  7376. "forms": _formdiv,
  7377. "click": function () {
  7378. U.MD.D.I.openApplication(str, obj, info);
  7379. }
  7380. }
  7381. break;
  7382. case "mind":
  7383. aTool = 3;
  7384. _iframe = $$("iframe", {
  7385. "frameborder": "no",
  7386. "border": "0",
  7387. "scrolling ": "no",
  7388. "style": {
  7389. "cssText": "border:0;width:100%;height:100%"
  7390. },
  7391. "src": "/kityminder-editor/dist/index.html"
  7392. })
  7393. _box.appendChild(_iframe);
  7394. _box.appendChild(_jie);
  7395. _formdiv = new U.UF.UI.form(
  7396. "思维导图-" + _username,
  7397. _box, { //"/jsmind/example/demo.html"
  7398. "id": "mind" + cid + stage + task + tool + _userid,
  7399. "style": {
  7400. "width": "90%",
  7401. "height": "90%",
  7402. "overflow": 'hidden'
  7403. },
  7404. "onresize": function () { }
  7405. }, {
  7406. closecallback: function () { }
  7407. }, {
  7408. "style": {
  7409. "height": "36px"
  7410. }
  7411. }).form; //创建窗体
  7412. _taskbar = {
  7413. "id": str + _formdiv.id,
  7414. "style": {
  7415. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7416. },
  7417. "name": "思维导图",
  7418. "forms": _formdiv,
  7419. "click": function () {
  7420. U.MD.D.I.openApplication(str, obj, info);
  7421. }
  7422. }
  7423. break;
  7424. case "MindMap":
  7425. aTool = 3;
  7426. _iframe = $$("iframe", {
  7427. "frameborder": "no",
  7428. "border": "0",
  7429. "scrolling ": "no",
  7430. "style": {
  7431. "cssText": "border:0;width:100%;height:100%"
  7432. },
  7433. "src": "//cloud.cocorobo.cn/mind/"
  7434. })
  7435. _box.appendChild(_iframe);
  7436. _box.appendChild(_jie);
  7437. _formdiv = new U.UF.UI.form(
  7438. "思维导图-" + _username,
  7439. _box, { //"/jsmind/example/demo.html"
  7440. "id": "mind" + cid + stage + task + tool + _userid,
  7441. "style": {
  7442. "width": "90%",
  7443. "height": "90%",
  7444. "overflow": 'hidden'
  7445. },
  7446. "onresize": function () { }
  7447. }, {
  7448. closecallback: function () { }
  7449. }, {
  7450. "style": {
  7451. "height": "36px"
  7452. }
  7453. }).form; //创建窗体
  7454. _taskbar = {
  7455. "id": str + _formdiv.id,
  7456. "style": {
  7457. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7458. },
  7459. "name": "思维导图",
  7460. "forms": _formdiv,
  7461. "click": function () {
  7462. U.MD.D.I.openApplication(str, obj, info);
  7463. }
  7464. }
  7465. break;
  7466. case "doc":
  7467. aTool = 6;
  7468. _iframe = $$("iframe", {
  7469. "frameborder": "no",
  7470. "border": "0",
  7471. "scrolling ": "no",
  7472. "style": {
  7473. "cssText": "border:0;width:100%;height:100%"
  7474. },
  7475. "src": "/Office/Word/WordEditArea.htm"
  7476. })
  7477. _box.appendChild(_iframe);
  7478. _box.appendChild(_jie);
  7479. _formdiv = new U.UF.UI.form(
  7480. "协同文档-" + _username,
  7481. _box, {
  7482. "id": "doc" + cid + stage + task + tool + _userid,
  7483. "style": {
  7484. "width": "90%",
  7485. "height": "90%",
  7486. "overflow": 'hidden'
  7487. },
  7488. "onresize": function () { }
  7489. }, {
  7490. closecallback: function () { }
  7491. }, {
  7492. "style": {
  7493. "height": "36px"
  7494. }
  7495. }).form; //创建窗体
  7496. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7497. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7498. })
  7499. _taskbar = {
  7500. "id": str + _formdiv.id,
  7501. "style": {
  7502. "backgroundImage": "url(/img/icon/doc.png)"
  7503. },
  7504. "name": "协同文档",
  7505. "forms": _formdiv,
  7506. "click": function () {
  7507. U.MD.D.I.openApplication(str, obj, info);
  7508. }
  7509. }
  7510. break;
  7511. case "mindNetwork": //好友打开
  7512. aTool = 7;
  7513. _iframe = $$("iframe", {
  7514. "webkitallowfullscreen": "",
  7515. "mozallowfullscreen": "",
  7516. "allowfullscreen": "",
  7517. "frameborder": "no",
  7518. "border": "0",
  7519. "scrolling ": "no",
  7520. "style": {
  7521. "cssText": "border:0; width:100%; height:100%;"
  7522. },
  7523. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7524. })
  7525. _box.appendChild(_iframe);
  7526. _box.appendChild(_jie);
  7527. _formdiv = new U.UF.UI.form(
  7528. "思维网格-" + _username,
  7529. _box, {
  7530. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7531. "style": {
  7532. "width": "90%",
  7533. "height": "90%",
  7534. "overflow": 'hidden'
  7535. },
  7536. "onresize": function () { }
  7537. }, {
  7538. closecallback: function () { }
  7539. }, {
  7540. "style": {
  7541. "height": "36px"
  7542. }
  7543. }).form; //创建窗体
  7544. _taskbar = {
  7545. "id": str + _formdiv.id,
  7546. "style": {
  7547. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7548. },
  7549. "name": "思维网格",
  7550. "forms": _formdiv,
  7551. "click": function () {
  7552. U.MD.D.I.openApplication(str, obj, info);
  7553. }
  7554. }
  7555. break;
  7556. case "courseDesign":
  7557. _iframe = $$("iframe", {
  7558. "webkitallowfullscreen": "",
  7559. "mozallowfullscreen": "",
  7560. "allowfullscreen": "",
  7561. "frameborder": "no",
  7562. "border": "0",
  7563. "scrolling ": "no",
  7564. "style": {
  7565. "cssText": "border:0; width:100%; height:100%;"
  7566. },
  7567. "src": "/course-design-vue"
  7568. })
  7569. _box.appendChild(_iframe);
  7570. _box.appendChild(_jie);
  7571. _formdiv = new U.UF.UI.form(
  7572. "项目设计-" + _username,
  7573. _box, {
  7574. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7575. "style": {
  7576. "width": "90%",
  7577. "height": "90%",
  7578. "overflow": 'hidden'
  7579. },
  7580. "onresize": function () { }
  7581. }, {
  7582. closecallback: function () { }
  7583. }, {
  7584. "style": {
  7585. "height": "36px"
  7586. }
  7587. }).form; //创建窗体
  7588. _taskbar = {
  7589. "id": str + _formdiv.id,
  7590. "style": {
  7591. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7592. },
  7593. "name": "项目设计",
  7594. "forms": _formdiv,
  7595. "click": function () {
  7596. U.MD.D.I.openApplication(str, obj, info);
  7597. }
  7598. }
  7599. break;
  7600. }
  7601. const script1 = document.createElement("script");
  7602. script1.type = "text/javascript";
  7603. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7604. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7605. const script2 = document.createElement("script");
  7606. script2.type = "text/javascript";
  7607. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7608. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7609. const script3 = document.createElement("script");
  7610. script3.type = "text/javascript";
  7611. script3.charset = "UTF-8";
  7612. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7613. const script4 = document.createElement("script");
  7614. script4.type = "text/javascript";
  7615. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7616. script4.src = window.origin + "/js/Common/jietu2E.js";
  7617. if (_iframe) {
  7618. if (str == 'doc') {
  7619. _iframe = _formdiv.querySelector('iframe')
  7620. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7621. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7622. _iframe.contentWindow.document.body.appendChild(script1);
  7623. _iframe.contentWindow.document.body.appendChild(script2);
  7624. // _iframe.contentWindow.document.body.appendChild(script3);
  7625. _iframe.contentWindow.document.body.appendChild(script4);
  7626. })
  7627. if (onloadListener) {
  7628. _iframe.contentDocument.location.reload()
  7629. } else {
  7630. _iframe.contentDocument.location.reload()
  7631. }
  7632. } else if (str == 'courseDesign') {
  7633. U.UF.DL.iframeLoad(_iframe, function () {
  7634. // _iframe.contentWindow.U.MD.O.W.load();
  7635. // _iframe.contentWindow.document.body.appendChild(script1);
  7636. _iframe.contentWindow.document.body.appendChild(script2);
  7637. _iframe.contentWindow.document.body.appendChild(script4);
  7638. })
  7639. } else if (str == 'mind') {
  7640. _iframe = _formdiv.querySelector('iframe')
  7641. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7642. //
  7643. _iframe.contentWindow.document.body.appendChild(script1);
  7644. _iframe.contentWindow.document.body.appendChild(script2);
  7645. _iframe.contentWindow.document.body.appendChild(script4);
  7646. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7647. })
  7648. if (onloadListener) {
  7649. _iframe.contentDocument.location.reload()
  7650. } else {
  7651. _iframe.contentDocument.location.reload()
  7652. }
  7653. } else if (str == 'whiteboard') {
  7654. _iframe = _formdiv.querySelector('iframe')
  7655. let onloadListener = _iframe.onload = () => {
  7656. _iframe.contentWindow.document.body.appendChild(script1);
  7657. _iframe.contentWindow.document.body.appendChild(script2);
  7658. _iframe.contentWindow.document.body.appendChild(script4);
  7659. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7660. };
  7661. // if (onloadListener) {
  7662. // try {
  7663. // _iframe.src += "?cocorobo="+new Date().getTime()
  7664. // _iframe.contentWindow.document.location.reload()
  7665. // } catch (error) {
  7666. // }
  7667. // } else {
  7668. // _iframe.contentDocument.location.reload()
  7669. // }
  7670. } else {
  7671. _iframe.onload = () => {
  7672. _iframe.contentWindow.document.body.appendChild(script1);
  7673. _iframe.contentWindow.document.body.appendChild(script2);
  7674. // _iframe.contentWindow.document.body.appendChild(script3);
  7675. _iframe.contentWindow.document.body.appendChild(script4);
  7676. };
  7677. }
  7678. _jie.onclick = async () => {
  7679. let text = ''
  7680. if (aTool == 1) {
  7681. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7682. } else if (aTool == 6) {
  7683. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7684. } else if (aTool == 3) {
  7685. text = await U.MD.D.I.getEditorContent(_iframe);
  7686. }
  7687. _loading.style.display = 'flex'
  7688. console.log(_loading);
  7689. var _ajs = _iframe.contentWindow.document.createElement("script");
  7690. _ajs.type = "text/javascript";
  7691. _ajs.innerHTML =
  7692. // 'console.log(' + _loading + ');\n' +
  7693. 'var _js = document.createElement("script");\n' +
  7694. '_js.type="text/javascript";\n' +
  7695. '_js.charset="UTF-8";\n' +
  7696. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7697. "_js.onload = function(){\n" +
  7698. ' var a = document.getElementsByTagName("img")\n' +
  7699. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7700. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7701. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7702. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7703. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7704. "beforeUpload_shishi(file," +
  7705. "'" +
  7706. _userid +
  7707. "'" +
  7708. ", " +
  7709. "'" +
  7710. _cid +
  7711. "'" +
  7712. ", " +
  7713. "'" +
  7714. _stage +
  7715. "'" +
  7716. ", " +
  7717. "'" +
  7718. _task +
  7719. "'" +
  7720. ", " +
  7721. "'" +
  7722. _tool +
  7723. "'" +
  7724. ", " +
  7725. "'" +
  7726. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7727. "'" +
  7728. ", " +
  7729. "'" +
  7730. aTool +
  7731. "'" +
  7732. ", " +
  7733. "`" +
  7734. text +
  7735. "`" +
  7736. ")\n" +
  7737. " });\n" +
  7738. "}\n" +
  7739. "document.head.appendChild(_js);\n";
  7740. _iframe.contentWindow.document.head.appendChild(_ajs);
  7741. }
  7742. }
  7743. }
  7744. U.MD.D.I.getEditorContent = function (iframe) {
  7745. return new Promise((resolve, reject) => {
  7746. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7747. console.log(content);
  7748. resolve(content)
  7749. });
  7750. });
  7751. }
  7752. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7753. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7754. // if (res.value[0].length > 0) {
  7755. // // resolve(res.value[0][0].text);
  7756. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7757. // $(fileInput).val('');
  7758. // });
  7759. // }
  7760. // }, [], { "type": "GET", "withCredentials": true });
  7761. var xmlhttp;
  7762. var Mac, Sn, DeviceId
  7763. if (window.XMLHttpRequest) {
  7764. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7765. xmlhttp = new XMLHttpRequest();
  7766. } else {
  7767. // IE6, IE5 浏览器执行代码
  7768. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7769. }
  7770. xmlhttp.onreadystatechange = function () {
  7771. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7772. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7773. // resolve(res.value[0][0].text);
  7774. if (type == '2') {
  7775. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7776. } else if (type == '3') {
  7777. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7778. }
  7779. } else {
  7780. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7781. }
  7782. }
  7783. }
  7784. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7785. xmlhttp.send();
  7786. }
  7787. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7788. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7789. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7790. _userinfo = US.userInfo, //登录用户信息
  7791. _userid = US.userInfo.userid //登录用户id
  7792. let _iframe;
  7793. let _cid = cid,
  7794. _stage = stage,
  7795. _task = task,
  7796. _tool = tool;
  7797. var _jie = $$("div", {
  7798. "style": {
  7799. "position": "absolute",
  7800. "bottom": "50px",
  7801. "right": "50px",
  7802. "zIndex": "9999",
  7803. "backgroundColor": "#2268bc",
  7804. "color": "#fff",
  7805. "padding": "12px 20px",
  7806. "cursor": "pointer",
  7807. "borderRadius": "4px",
  7808. },
  7809. "innerHTML": "确认并提交"
  7810. })
  7811. let aTool = ''
  7812. let _loading = document.createElement('div')
  7813. _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;"
  7814. // _loading.id = "";
  7815. let _lchild = document.createElement('div')
  7816. let _limg = document.createElement('img')
  7817. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7818. _limg.style = "width: 26px;margin-right: 10px;"
  7819. _lchild.appendChild(_limg)
  7820. let _lspan = document.createElement('span')
  7821. _lspan.innerHTML = "上传中..."
  7822. _lchild.appendChild(_lspan)
  7823. _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%);"
  7824. _loading.appendChild(_lchild)
  7825. var _box = $$('div', {
  7826. "style": {
  7827. "position": "relative",
  7828. "width": "100%",
  7829. "height": "100%",
  7830. },
  7831. })
  7832. _box.appendChild(_loading)
  7833. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7834. switch (str) {
  7835. case "whiteboard":
  7836. aTool = 1;
  7837. _iframe = $$("iframe", {
  7838. "frameborder": "no",
  7839. "border": "0",
  7840. "scrolling ": "no",
  7841. "style": {
  7842. "cssText": "border:0;width:100%;height:100%"
  7843. },
  7844. "src": "https://beta.iwb.cocorobo.cn/"
  7845. })
  7846. _box.appendChild(_iframe);
  7847. _box.appendChild(_jie);
  7848. _formdiv = new U.UF.UI.form(
  7849. "电子白板",
  7850. _box, {
  7851. "id": "whiteboards" + cid + stage + task + tool,
  7852. "style": {
  7853. "width": "90%",
  7854. "height": "90%",
  7855. "overflow": 'hidden'
  7856. },
  7857. "onresize": function () { }
  7858. }, {
  7859. closecallback: function () { }
  7860. }, {
  7861. "style": {
  7862. "height": "36px"
  7863. }
  7864. }).form; //创建窗体
  7865. _taskbar = {
  7866. "id": str + _formdiv.id,
  7867. "style": {
  7868. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7869. },
  7870. "name": "电子白板",
  7871. "forms": _formdiv,
  7872. "click": function () {
  7873. U.MD.D.I.openApplication(str, obj, info);
  7874. }
  7875. }
  7876. break;
  7877. case "mind":
  7878. aTool = 3;
  7879. _iframe = $$("iframe", {
  7880. "frameborder": "no",
  7881. "border": "0",
  7882. "scrolling ": "no",
  7883. "style": {
  7884. "cssText": "border:0;width:100%;height:100%"
  7885. },
  7886. "src": "/kityminder-editor/dist/index.html"
  7887. });
  7888. _box.appendChild(_iframe);
  7889. _box.appendChild(_jie);
  7890. _formdiv = new U.UF.UI.form(
  7891. "思维导图",
  7892. _box, { //"/jsmind/example/demo.html"
  7893. "id": "minds" + cid + stage + task + tool,
  7894. "style": {
  7895. "width": "90%",
  7896. "height": "90%",
  7897. "overflow": 'hidden'
  7898. },
  7899. "onresize": function () { }
  7900. }, {
  7901. closecallback: function () { }
  7902. }, {
  7903. "style": {
  7904. "height": "36px"
  7905. }
  7906. }).form; //创建窗体
  7907. _taskbar = {
  7908. "id": str + _formdiv.id,
  7909. "style": {
  7910. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7911. },
  7912. "name": "思维导图",
  7913. "forms": _formdiv,
  7914. "click": function () {
  7915. U.MD.D.I.openApplication(str, obj, info);
  7916. }
  7917. }
  7918. break;
  7919. case "doc":
  7920. aTool = 6;
  7921. _iframe = $$("iframe", {
  7922. "frameborder": "no",
  7923. "border": "0",
  7924. "scrolling ": "no",
  7925. "style": {
  7926. "cssText": "border:0;width:100%;height:100%"
  7927. },
  7928. "src": "/Office/Word/WordEditArea.htm"
  7929. })
  7930. _box.appendChild(_iframe);
  7931. _box.appendChild(_jie);
  7932. _formdiv = new U.UF.UI.form(
  7933. "协同文档",
  7934. _box, {
  7935. "id": "docs" + cid + stage + task + tool,
  7936. "style": {
  7937. "width": "90%",
  7938. "height": "90%",
  7939. "overflow": 'hidden'
  7940. },
  7941. "onresize": function () { }
  7942. }, {
  7943. closecallback: function () { }
  7944. }, {
  7945. "style": {
  7946. "height": "36px"
  7947. }
  7948. }).form; //创建窗体
  7949. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7950. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7951. })
  7952. _taskbar = {
  7953. "id": str + _formdiv.id,
  7954. "style": {
  7955. "backgroundImage": "url(/img/icon/doc.png)"
  7956. },
  7957. "name": "协同文档",
  7958. "forms": _formdiv,
  7959. "click": function () {
  7960. U.MD.D.I.openApplication(str, obj, info);
  7961. }
  7962. }
  7963. break;
  7964. }
  7965. const script1 = document.createElement("script");
  7966. script1.type = "text/javascript";
  7967. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7968. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7969. const script2 = document.createElement("script");
  7970. script2.type = "text/javascript";
  7971. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7972. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7973. const script3 = document.createElement("script");
  7974. script3.type = "text/javascript";
  7975. script3.charset = "UTF-8";
  7976. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7977. const script4 = document.createElement("script");
  7978. script4.type = "text/javascript";
  7979. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7980. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7981. if (_iframe) {
  7982. if (str == 'doc') {
  7983. _iframe = _formdiv.querySelector('iframe')
  7984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7985. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7986. _iframe.contentWindow.document.body.appendChild(script1);
  7987. _iframe.contentWindow.document.body.appendChild(script2);
  7988. // _iframe.contentWindow.document.body.appendChild(script3);
  7989. _iframe.contentWindow.document.body.appendChild(script4);
  7990. })
  7991. if (onloadListener) {
  7992. _iframe.contentDocument.location.reload()
  7993. } else {
  7994. _iframe.contentDocument.location.reload()
  7995. }
  7996. } else if (str == 'mind') {
  7997. _iframe = _formdiv.querySelector('iframe')
  7998. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7999. _iframe.contentWindow.document.body.appendChild(script1);
  8000. _iframe.contentWindow.document.body.appendChild(script2);
  8001. _iframe.contentWindow.document.body.appendChild(script4);
  8002. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8003. })
  8004. if (onloadListener) {
  8005. _iframe.contentDocument.location.reload()
  8006. } else {
  8007. _iframe.contentDocument.location.reload()
  8008. }
  8009. } else {
  8010. _iframe.onload = () => {
  8011. _iframe.contentWindow.document.body.appendChild(script1);
  8012. _iframe.contentWindow.document.body.appendChild(script2);
  8013. // _iframe.contentWindow.document.body.appendChild(script3);
  8014. _iframe.contentWindow.document.body.appendChild(script4);
  8015. };
  8016. }
  8017. _jie.onclick = async () => {
  8018. let text = ''
  8019. if (aTool == 6) {
  8020. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8021. } else if (aTool == 3) {
  8022. text = await U.MD.D.I.getEditorContent(_iframe);
  8023. }
  8024. _loading.style.display = 'flex'
  8025. console.log(_loading);
  8026. var _ajs = _iframe.contentWindow.document.createElement("script");
  8027. _ajs.type = "text/javascript";
  8028. _ajs.innerHTML =
  8029. // 'console.log(' + _loading + ');\n' +
  8030. 'var _js = document.createElement("script");\n' +
  8031. '_js.type="text/javascript";\n' +
  8032. '_js.charset="UTF-8";\n' +
  8033. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8034. "_js.onload = function(){\n" +
  8035. ' var a = document.getElementsByTagName("img")\n' +
  8036. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8037. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8038. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8039. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8040. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8041. "beforeUpload_shishi(file," +
  8042. "'" +
  8043. _userid +
  8044. "'" +
  8045. ", " +
  8046. "'" +
  8047. _cid +
  8048. "'" +
  8049. ", " +
  8050. "'" +
  8051. _stage +
  8052. "'" +
  8053. ", " +
  8054. "'" +
  8055. _task +
  8056. "'" +
  8057. ", " +
  8058. "'" +
  8059. _tool +
  8060. "'" +
  8061. ", " +
  8062. "'" +
  8063. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8064. "'" +
  8065. ", " +
  8066. "'" +
  8067. aTool +
  8068. "'" +
  8069. ", " +
  8070. "`" +
  8071. text +
  8072. "`" +
  8073. ")\n" +
  8074. " });\n" +
  8075. "}\n" +
  8076. "document.head.appendChild(_js);\n";
  8077. _iframe.contentWindow.document.head.appendChild(_ajs);
  8078. }
  8079. }
  8080. //U.MD.D.I.openClick(str);
  8081. //如果有任务栏信息
  8082. // if (_taskbar) {
  8083. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8084. // }
  8085. }
  8086. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8087. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8088. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8089. _userinfo = US.userInfo, //登录用户信息
  8090. _userid = US.userInfo.userid //登录用户id
  8091. let _iframe;
  8092. let _cid = cid,
  8093. _stage = stage,
  8094. _task = task,
  8095. _tool = tool;
  8096. var _jie = $$("div", {
  8097. "style": {
  8098. "position": "absolute",
  8099. "bottom": "50px",
  8100. "right": "50px",
  8101. "zIndex": "9999",
  8102. "backgroundColor": "#2268bc",
  8103. "color": "#fff",
  8104. "padding": "12px 20px",
  8105. "cursor": "pointer",
  8106. "borderRadius": "4px",
  8107. },
  8108. "innerHTML": "确认并提交"
  8109. })
  8110. let aTool = ''
  8111. let _loading = document.createElement('div')
  8112. _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;"
  8113. // _loading.id = "";
  8114. let _lchild = document.createElement('div')
  8115. let _limg = document.createElement('img')
  8116. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8117. _limg.style = "width: 26px;margin-right: 10px;"
  8118. _lchild.appendChild(_limg)
  8119. let _lspan = document.createElement('span')
  8120. _lspan.innerHTML = "上传中..."
  8121. _lchild.appendChild(_lspan)
  8122. _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%);"
  8123. _loading.appendChild(_lchild)
  8124. var _box = $$('div', {
  8125. "style": {
  8126. "position": "relative",
  8127. "width": "100%",
  8128. "height": "100%",
  8129. },
  8130. })
  8131. _box.appendChild(_loading)
  8132. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8133. switch (str) {
  8134. case "whiteboard":
  8135. aTool = 1;
  8136. _iframe = $$("iframe", {
  8137. "frameborder": "no",
  8138. "border": "0",
  8139. "scrolling ": "no",
  8140. "style": {
  8141. "cssText": "border:0;width:100%;height:100%"
  8142. },
  8143. "src": "https://beta.iwb.cocorobo.cn/"
  8144. })
  8145. _box.appendChild(_iframe);
  8146. _box.appendChild(_jie);
  8147. _formdiv = new U.UF.UI.form(
  8148. "电子白板",
  8149. _box, {
  8150. "id": "whiteboards" + cid + stage + task + tool,
  8151. "style": {
  8152. "width": "90%",
  8153. "height": "90%",
  8154. "overflow": 'hidden'
  8155. },
  8156. "onresize": function () { }
  8157. }, {
  8158. closecallback: function () { }
  8159. }, {
  8160. "style": {
  8161. "height": "36px"
  8162. }
  8163. }).form; //创建窗体
  8164. _taskbar = {
  8165. "id": str + _formdiv.id,
  8166. "style": {
  8167. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8168. },
  8169. "name": "电子白板",
  8170. "forms": _formdiv,
  8171. "click": function () {
  8172. U.MD.D.I.openApplication(str, obj, info);
  8173. }
  8174. }
  8175. break;
  8176. case "mind":
  8177. aTool = 3;
  8178. _iframe = $$("iframe", {
  8179. "frameborder": "no",
  8180. "border": "0",
  8181. "scrolling ": "no",
  8182. "style": {
  8183. "cssText": "border:0;width:100%;height:100%"
  8184. },
  8185. "src": "/kityminder-editor/dist/index.html"
  8186. });
  8187. _box.appendChild(_iframe);
  8188. _box.appendChild(_jie);
  8189. _formdiv = new U.UF.UI.form(
  8190. "思维导图",
  8191. _box, { //"/jsmind/example/demo.html"
  8192. "id": "minds" + cid + stage + task + tool,
  8193. "style": {
  8194. "width": "90%",
  8195. "height": "90%",
  8196. "overflow": 'hidden'
  8197. },
  8198. "onresize": function () { }
  8199. }, {
  8200. closecallback: function () { }
  8201. }, {
  8202. "style": {
  8203. "height": "36px"
  8204. }
  8205. }).form; //创建窗体
  8206. _taskbar = {
  8207. "id": str + _formdiv.id,
  8208. "style": {
  8209. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8210. },
  8211. "name": "思维导图",
  8212. "forms": _formdiv,
  8213. "click": function () {
  8214. U.MD.D.I.openApplication(str, obj, info);
  8215. }
  8216. }
  8217. break;
  8218. case "doc":
  8219. aTool = 6;
  8220. _iframe = $$("iframe", {
  8221. "frameborder": "no",
  8222. "border": "0",
  8223. "scrolling ": "no",
  8224. "style": {
  8225. "cssText": "border:0;width:100%;height:100%"
  8226. },
  8227. "src": "/Office/Word/WordEditArea.htm"
  8228. })
  8229. _box.appendChild(_iframe);
  8230. _box.appendChild(_jie);
  8231. _formdiv = new U.UF.UI.form(
  8232. "协同文档",
  8233. _box, {
  8234. "id": "docs" + cid + stage + task + tool,
  8235. "style": {
  8236. "width": "90%",
  8237. "height": "90%",
  8238. "overflow": 'hidden'
  8239. },
  8240. "onresize": function () { }
  8241. }, {
  8242. closecallback: function () { }
  8243. }, {
  8244. "style": {
  8245. "height": "36px"
  8246. }
  8247. }).form; //创建窗体
  8248. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8249. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8250. })
  8251. _taskbar = {
  8252. "id": str + _formdiv.id,
  8253. "style": {
  8254. "backgroundImage": "url(/img/icon/doc.png)"
  8255. },
  8256. "name": "协同文档",
  8257. "forms": _formdiv,
  8258. "click": function () {
  8259. U.MD.D.I.openApplication(str, obj, info);
  8260. }
  8261. }
  8262. break;
  8263. }
  8264. const script1 = document.createElement("script");
  8265. script1.type = "text/javascript";
  8266. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8267. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8268. const script2 = document.createElement("script");
  8269. script2.type = "text/javascript";
  8270. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8271. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8272. const script3 = document.createElement("script");
  8273. script3.type = "text/javascript";
  8274. script3.charset = "UTF-8";
  8275. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8276. const script4 = document.createElement("script");
  8277. script4.type = "text/javascript";
  8278. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8279. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8280. if (_iframe) {
  8281. if (str == 'doc') {
  8282. _iframe = _formdiv.querySelector('iframe')
  8283. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8284. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8285. _iframe.contentWindow.document.body.appendChild(script1);
  8286. _iframe.contentWindow.document.body.appendChild(script2);
  8287. // _iframe.contentWindow.document.body.appendChild(script3);
  8288. _iframe.contentWindow.document.body.appendChild(script4);
  8289. })
  8290. if (onloadListener) {
  8291. _iframe.contentDocument.location.reload()
  8292. } else {
  8293. _iframe.contentDocument.location.reload()
  8294. }
  8295. } else if (str == 'mind') {
  8296. _iframe = _formdiv.querySelector('iframe')
  8297. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8298. _iframe.contentWindow.document.body.appendChild(script1);
  8299. _iframe.contentWindow.document.body.appendChild(script2);
  8300. _iframe.contentWindow.document.body.appendChild(script4);
  8301. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8302. })
  8303. if (onloadListener) {
  8304. _iframe.contentDocument.location.reload()
  8305. } else {
  8306. _iframe.contentDocument.location.reload()
  8307. }
  8308. } else {
  8309. _iframe.onload = () => {
  8310. _iframe.contentWindow.document.body.appendChild(script1);
  8311. _iframe.contentWindow.document.body.appendChild(script2);
  8312. // _iframe.contentWindow.document.body.appendChild(script3);
  8313. _iframe.contentWindow.document.body.appendChild(script4);
  8314. };
  8315. }
  8316. _jie.onclick = async () => {
  8317. let text = ''
  8318. if (aTool == 6) {
  8319. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8320. } else if (aTool == 3) {
  8321. text = await U.MD.D.I.getEditorContent(_iframe);
  8322. }
  8323. _loading.style.display = 'flex'
  8324. console.log(_loading);
  8325. var _ajs = _iframe.contentWindow.document.createElement("script");
  8326. _ajs.type = "text/javascript";
  8327. _ajs.innerHTML =
  8328. // 'console.log(' + _loading + ');\n' +
  8329. 'var _js = document.createElement("script");\n' +
  8330. '_js.type="text/javascript";\n' +
  8331. '_js.charset="UTF-8";\n' +
  8332. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8333. "_js.onload = function(){\n" +
  8334. ' var a = document.getElementsByTagName("img")\n' +
  8335. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8336. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8337. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8338. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8339. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8340. "beforeUpload_shishi(file," +
  8341. "'" +
  8342. _userid +
  8343. "'" +
  8344. ", " +
  8345. "'" +
  8346. _cid +
  8347. "'" +
  8348. ", " +
  8349. "'" +
  8350. _stage +
  8351. "'" +
  8352. ", " +
  8353. "'" +
  8354. _task +
  8355. "'" +
  8356. ", " +
  8357. "'" +
  8358. _tool +
  8359. "'" +
  8360. ", " +
  8361. "'" +
  8362. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8363. "'" +
  8364. ", " +
  8365. "'" +
  8366. aTool +
  8367. "'" +
  8368. ", " +
  8369. "`" +
  8370. text +
  8371. "`" +
  8372. ")\n" +
  8373. " });\n" +
  8374. "}\n" +
  8375. "document.head.appendChild(_js);\n";
  8376. _iframe.contentWindow.document.head.appendChild(_ajs);
  8377. }
  8378. }
  8379. //U.MD.D.I.openClick(str);
  8380. //如果有任务栏信息
  8381. // if (_taskbar) {
  8382. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8383. // }
  8384. }
  8385. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8386. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8387. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8388. _userinfo = US.userInfo, //登录用户信息
  8389. _userid = US.userInfo.userid //登录用户id
  8390. let _iframe;
  8391. let _cid = cid,
  8392. _stage = stage,
  8393. _task = task,
  8394. _tool = tool;
  8395. var _jie = $$("div", {
  8396. "style": {
  8397. "position": "absolute",
  8398. "bottom": "50px",
  8399. "right": "50px",
  8400. "zIndex": "9999",
  8401. "backgroundColor": "#2268bc",
  8402. "color": "#fff",
  8403. "padding": "12px 20px",
  8404. "cursor": "pointer",
  8405. "borderRadius": "4px",
  8406. },
  8407. "innerHTML": "上传模板"
  8408. })
  8409. let aTool = ''
  8410. let _loading = document.createElement('div')
  8411. _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;"
  8412. // _loading.id = "";
  8413. let _lchild = document.createElement('div')
  8414. let _limg = document.createElement('img')
  8415. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8416. _limg.style = "width: 26px;margin-right: 10px;"
  8417. _lchild.appendChild(_limg)
  8418. let _lspan = document.createElement('span')
  8419. _lspan.innerHTML = "上传中..."
  8420. _lchild.appendChild(_lspan)
  8421. _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%);"
  8422. _loading.appendChild(_lchild)
  8423. var _box = $$('div', {
  8424. "style": {
  8425. "position": "relative",
  8426. "width": "100%",
  8427. "height": "100%",
  8428. },
  8429. })
  8430. _box.appendChild(_loading)
  8431. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8432. switch (str) {
  8433. case "whiteboard":
  8434. aTool = 1;
  8435. _iframe = $$("iframe", {
  8436. "frameborder": "no",
  8437. "border": "0",
  8438. "scrolling ": "no",
  8439. "style": {
  8440. "cssText": "border:0;width:100%;height:100%"
  8441. },
  8442. "src": "https://beta.iwb.cocorobo.cn/"
  8443. })
  8444. _box.appendChild(_iframe);
  8445. _box.appendChild(_jie);
  8446. _formdiv = new U.UF.UI.form(
  8447. "电子白板",
  8448. _box, {
  8449. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8450. "style": {
  8451. "width": "90%",
  8452. "height": "90%",
  8453. "overflow": 'hidden'
  8454. },
  8455. "onresize": function () { }
  8456. }, {
  8457. closecallback: function () { }
  8458. }, {
  8459. "style": {
  8460. "height": "36px"
  8461. }
  8462. }).form; //创建窗体
  8463. _taskbar = {
  8464. "id": str + _formdiv.id,
  8465. "style": {
  8466. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8467. },
  8468. "name": "电子白板",
  8469. "forms": _formdiv,
  8470. "click": function () {
  8471. U.MD.D.I.openApplication(str, obj, info);
  8472. }
  8473. }
  8474. break;
  8475. case "mind":
  8476. aTool = 3;
  8477. _iframe = $$("iframe", {
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0;width:100%;height:100%"
  8483. },
  8484. "src": "/kityminder-editor/dist/index.html"
  8485. });
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "思维导图",
  8490. _box, { //"/jsmind/example/demo.html"
  8491. "id": "minds_Yu" + cid + stage + task + tool,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //创建窗体
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8509. },
  8510. "name": "思维导图",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "doc":
  8518. aTool = 6;
  8519. _iframe = $$("iframe", {
  8520. "frameborder": "no",
  8521. "border": "0",
  8522. "scrolling ": "no",
  8523. "style": {
  8524. "cssText": "border:0;width:100%;height:100%"
  8525. },
  8526. "src": "/Office/Word/WordEditArea.htm"
  8527. })
  8528. _box.appendChild(_iframe);
  8529. _box.appendChild(_jie);
  8530. _formdiv = new U.UF.UI.form(
  8531. "协同文档",
  8532. _box, {
  8533. "id": "docs_Yu" + cid + stage + task + tool,
  8534. "style": {
  8535. "width": "90%",
  8536. "height": "90%",
  8537. "overflow": 'hidden'
  8538. },
  8539. "onresize": function () { }
  8540. }, {
  8541. closecallback: function () { }
  8542. }, {
  8543. "style": {
  8544. "height": "36px"
  8545. }
  8546. }).form; //创建窗体
  8547. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8548. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8549. })
  8550. _taskbar = {
  8551. "id": str + _formdiv.id,
  8552. "style": {
  8553. "backgroundImage": "url(/img/icon/doc.png)"
  8554. },
  8555. "name": "协同文档",
  8556. "forms": _formdiv,
  8557. "click": function () {
  8558. U.MD.D.I.openApplication(str, obj, info);
  8559. }
  8560. }
  8561. break;
  8562. case "CocoPi":
  8563. aTool = 57;
  8564. _iframe = $$("iframe", {
  8565. "allowpaymentrequest": "allowpaymentrequest",
  8566. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8567. "webkitallowfullscreen": "",
  8568. "mozallowfullscreen": "",
  8569. "frameborder": "no",
  8570. "border": "0",
  8571. "scrolling ": "no",
  8572. "style": {
  8573. "cssText": "border:0;width:100%;height:100%"
  8574. },
  8575. "src": "https://pi.cocorobo.cn/"
  8576. })
  8577. _box.appendChild(_iframe);
  8578. _box.appendChild(_jie);
  8579. _formdiv = new U.UF.UI.form(
  8580. "CocoPi",
  8581. _box, {
  8582. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8583. "style": {
  8584. "width": "90%",
  8585. "height": "90%",
  8586. "overflow": 'hidden'
  8587. },
  8588. "onresize": function () { }
  8589. }, {
  8590. closecallback: function () { }
  8591. }, {
  8592. "style": {
  8593. "height": "36px"
  8594. }
  8595. }).form; //创建窗体
  8596. _taskbar = {
  8597. "id": str + _formdiv.id,
  8598. "style": {
  8599. "backgroundImage": "url(/img/icon/cocopi.png)"
  8600. },
  8601. "name": "CocoPi",
  8602. "forms": _formdiv,
  8603. "click": function () {
  8604. U.MD.D.I.openApplication(str, obj, info);
  8605. }
  8606. }
  8607. break;
  8608. }
  8609. if (_iframe) {
  8610. if (str == 'doc') {
  8611. _iframe = _formdiv.querySelector('iframe')
  8612. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8613. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8614. })
  8615. if (onloadListener) {
  8616. _iframe.contentDocument.location.reload()
  8617. } else {
  8618. _iframe.contentDocument.location.reload()
  8619. }
  8620. } else if (str == 'mind') {
  8621. _iframe = _formdiv.querySelector('iframe')
  8622. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8623. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8624. })
  8625. if (onloadListener) {
  8626. _iframe.contentDocument.location.reload()
  8627. } else {
  8628. _iframe.contentDocument.location.reload()
  8629. }
  8630. } else if (str == 'whiteboard') {
  8631. _iframe = _formdiv.querySelector('iframe')
  8632. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8633. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8634. })
  8635. // if (onloadListener) {
  8636. // try {
  8637. // _iframe.src += "?cocorobo="+new Date().getTime()
  8638. // _iframe.contentWindow.document.location.reload()
  8639. // } catch (error) {
  8640. // }
  8641. // } else {
  8642. // _iframe.contentDocument.location.reload()
  8643. // }
  8644. } else if (str == 'CocoPi') {
  8645. _iframe = _formdiv.querySelector('iframe')
  8646. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8647. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8648. })
  8649. if (onloadListener) {
  8650. _iframe.contentDocument.location.reload()
  8651. } else {
  8652. _iframe.contentDocument.location.reload()
  8653. }
  8654. } else {
  8655. _iframe.onload = () => { };
  8656. }
  8657. _jie.onclick = async () => {
  8658. let text = ''
  8659. let type = '2'
  8660. if (aTool == 1) {
  8661. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8662. type = '3'
  8663. } else if (aTool == 6) {
  8664. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8665. type = '1'
  8666. } else if (aTool == 3) {
  8667. text = await U.MD.D.I.getEditorContent(_iframe);
  8668. type = '2'
  8669. } else if (aTool == 57) {
  8670. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8671. type = '4'
  8672. }
  8673. _loading.style.display = 'flex'
  8674. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8675. }
  8676. }
  8677. //U.MD.D.I.openClick(str);
  8678. //如果有任务栏信息
  8679. // if (_taskbar) {
  8680. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8681. // }
  8682. }
  8683. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8684. var xmlhttp;
  8685. var Mac, Sn, DeviceId
  8686. if (window.XMLHttpRequest) {
  8687. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8688. xmlhttp = new XMLHttpRequest();
  8689. } else {
  8690. // IE6, IE5 浏览器执行代码
  8691. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8692. }
  8693. xmlhttp.onreadystatechange = function () {
  8694. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8695. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8696. // resolve(res.value[0][0].text);
  8697. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8698. }
  8699. }
  8700. }
  8701. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8702. xmlhttp.send();
  8703. }
  8704. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8705. var xmlhttp;
  8706. var Mac, Sn, DeviceId
  8707. if (window.XMLHttpRequest) {
  8708. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8709. xmlhttp = new XMLHttpRequest();
  8710. } else {
  8711. // IE6, IE5 浏览器执行代码
  8712. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8713. }
  8714. xmlhttp.onreadystatechange = function () {
  8715. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8716. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8717. // resolve(res.value[0][0].text);
  8718. if (type == '2') {
  8719. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8720. } else if (type == '3') {
  8721. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8722. } else if (type == '4') {
  8723. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8724. }
  8725. } else {
  8726. if (type == '2') {
  8727. iframe.contentWindow.editor.minder.importData('json', '')
  8728. } else if (type == '3') {
  8729. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8730. } else if (type == '4') {
  8731. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8732. }
  8733. }
  8734. }
  8735. }
  8736. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8737. xmlhttp.send();
  8738. }
  8739. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8740. var xmlhttp;
  8741. var Mac, Sn, DeviceId
  8742. if (window.XMLHttpRequest) {
  8743. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8744. xmlhttp = new XMLHttpRequest();
  8745. } else {
  8746. // IE6, IE5 浏览器执行代码
  8747. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8748. }
  8749. xmlhttp.onreadystatechange = function () {
  8750. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8751. if (xmlhttp.response) {
  8752. // resolve(res.value[0][0].text);
  8753. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8754. // $(fileInput).val('');
  8755. // });
  8756. span.innerHTML = '上传成功'
  8757. setTimeout(() => {
  8758. loading.style.display = 'none'
  8759. }, 1000);
  8760. }
  8761. }
  8762. }
  8763. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8764. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8765. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8766. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8767. // 设置请求头,表示请求体的编码格式
  8768. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8769. // 设置请求体,使用url-encoded格式的数据
  8770. }
  8771. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8772. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8773. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8774. _userinfo = US.userInfo, //登录用户信息
  8775. _userid = US.userInfo.userid //登录用户id
  8776. let _iframe;
  8777. let _cid = cid,
  8778. _stage = stage,
  8779. _task = task,
  8780. _tool = tool;
  8781. var _jie = $$("div", {
  8782. "style": {
  8783. "position": "absolute",
  8784. "bottom": "50px",
  8785. "right": "50px",
  8786. "zIndex": "9999",
  8787. "backgroundColor": "#2268bc",
  8788. "color": "#fff",
  8789. "padding": "12px 20px",
  8790. "cursor": "pointer",
  8791. "borderRadius": "4px",
  8792. },
  8793. "innerHTML": "提交作业"
  8794. })
  8795. let aTool = ''
  8796. let _loading = document.createElement('div')
  8797. _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;"
  8798. // _loading.id = "";
  8799. let _lchild = document.createElement('div')
  8800. let _limg = document.createElement('img')
  8801. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8802. _limg.style = "width: 26px;margin-right: 10px;"
  8803. _lchild.appendChild(_limg)
  8804. let _lspan = document.createElement('span')
  8805. _lspan.innerHTML = "上传中..."
  8806. _lchild.appendChild(_lspan)
  8807. _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%);"
  8808. _loading.appendChild(_lchild)
  8809. var _box = $$('div', {
  8810. "style": {
  8811. "position": "relative",
  8812. "width": "100%",
  8813. "height": "100%",
  8814. },
  8815. })
  8816. _box.appendChild(_loading)
  8817. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8818. switch (str) {
  8819. case "CocoPi":
  8820. aTool = 57;
  8821. _iframe = $$("iframe", {
  8822. "allowpaymentrequest": "allowpaymentrequest",
  8823. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8824. "webkitallowfullscreen": "",
  8825. "mozallowfullscreen": "",
  8826. "frameborder": "no",
  8827. "border": "0",
  8828. "scrolling ": "no",
  8829. "style": {
  8830. "cssText": "border:0;width:100%;height:100%"
  8831. },
  8832. "src": "https://pi.cocorobo.cn/"
  8833. })
  8834. _box.appendChild(_iframe);
  8835. _box.appendChild(_jie);
  8836. _formdiv = new U.UF.UI.form(
  8837. "CocoPi",
  8838. _box, {
  8839. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8840. "style": {
  8841. "width": "90%",
  8842. "height": "90%",
  8843. "overflow": 'hidden'
  8844. },
  8845. "onresize": function () { }
  8846. }, {
  8847. closecallback: function () { }
  8848. }, {
  8849. "style": {
  8850. "height": "36px"
  8851. }
  8852. }).form; //创建窗体
  8853. _taskbar = {
  8854. "id": str + _formdiv.id,
  8855. "style": {
  8856. "backgroundImage": "url(/img/icon/cocopi.png)"
  8857. },
  8858. "name": "CocoPi",
  8859. "forms": _formdiv,
  8860. "click": function () {
  8861. U.MD.D.I.openApplication(str, obj, info);
  8862. }
  8863. }
  8864. break;
  8865. }
  8866. if (_iframe) {
  8867. if (str == 'CocoPi') {
  8868. _iframe = _formdiv.querySelector('iframe')
  8869. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8870. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8871. })
  8872. if (onloadListener) {
  8873. _iframe.contentDocument.location.reload()
  8874. } else {
  8875. _iframe.contentDocument.location.reload()
  8876. }
  8877. }
  8878. _jie.onclick = async () => {
  8879. let text = ''
  8880. if (aTool == 57) {
  8881. text = _iframe.contentWindow.getLoadXmlStr()
  8882. }
  8883. _loading.style.display = 'flex'
  8884. console.log(_loading);
  8885. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8886. _loading.style.display = 'none'
  8887. let _div = document.createElement('div')
  8888. _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;"
  8889. let _inner = document.createElement('div')
  8890. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8891. _inner.innerHTML = "上传成功"
  8892. _div.appendChild(_inner)
  8893. _iframe.contentWindow.window.document.body.appendChild(_div)
  8894. _div.onclick = () => {
  8895. _iframe.contentWindow.window.document.body.removeChild(_div)
  8896. }
  8897. setTimeout(() => {
  8898. _iframe.contentWindow.window.document.body.removeChild(_div)
  8899. }, 1000);
  8900. }, [], { "type": "POST", "withCredentials": true });
  8901. }
  8902. }
  8903. }
  8904. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8905. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8906. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8907. _userid = student.userid, //登录用户id
  8908. _username = student.student //用户名字
  8909. let _iframe;
  8910. let _cid = cid,
  8911. _stage = stage,
  8912. _task = task,
  8913. _tool = tool;
  8914. var _jie = $$("div", {
  8915. "style": {
  8916. "position": "absolute",
  8917. "bottom": "50px",
  8918. "right": "50px",
  8919. "zIndex": "9999",
  8920. "backgroundColor": "#2268bc",
  8921. "color": "#fff",
  8922. "padding": "12px 20px",
  8923. "cursor": "pointer",
  8924. "borderRadius": "4px",
  8925. },
  8926. "innerHTML": "提交作业"
  8927. })
  8928. let aTool = ''
  8929. let _loading = document.createElement('div')
  8930. _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;"
  8931. // _loading.id = "";
  8932. let _lchild = document.createElement('div')
  8933. let _limg = document.createElement('img')
  8934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8935. _limg.style = "width: 26px;margin-right: 10px;"
  8936. _lchild.appendChild(_limg)
  8937. let _lspan = document.createElement('span')
  8938. _lspan.innerHTML = "上传中..."
  8939. _lchild.appendChild(_lspan)
  8940. _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%);"
  8941. _loading.appendChild(_lchild)
  8942. var _box = $$('div', {
  8943. "style": {
  8944. "position": "relative",
  8945. "width": "100%",
  8946. "height": "100%",
  8947. },
  8948. })
  8949. _box.appendChild(_loading)
  8950. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8951. switch (str) {
  8952. case "CocoPi":
  8953. aTool = 57;
  8954. _iframe = $$("iframe", {
  8955. "allowpaymentrequest": "allowpaymentrequest",
  8956. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8957. "webkitallowfullscreen": "",
  8958. "mozallowfullscreen": "",
  8959. "frameborder": "no",
  8960. "border": "0",
  8961. "scrolling ": "no",
  8962. "style": {
  8963. "cssText": "border:0;width:100%;height:100%"
  8964. },
  8965. "src": "https://pi.cocorobo.cn/"
  8966. })
  8967. _box.appendChild(_iframe);
  8968. _box.appendChild(_jie);
  8969. _formdiv = new U.UF.UI.form(
  8970. "CocoPi-" + _username,
  8971. _box, {
  8972. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8973. "style": {
  8974. "width": "90%",
  8975. "height": "90%",
  8976. "overflow": 'hidden'
  8977. },
  8978. "onresize": function () { }
  8979. }, {
  8980. closecallback: function () { }
  8981. }, {
  8982. "style": {
  8983. "height": "36px"
  8984. }
  8985. }).form; //创建窗体
  8986. _taskbar = {
  8987. "id": str + _formdiv.id,
  8988. "style": {
  8989. "backgroundImage": "url(/img/icon/cocopi.png)"
  8990. },
  8991. "name": "CocoPi",
  8992. "forms": _formdiv,
  8993. "click": function () {
  8994. U.MD.D.I.openApplication(str, obj, info);
  8995. }
  8996. }
  8997. break;
  8998. }
  8999. if (_iframe) {
  9000. if (str == 'CocoPi') {
  9001. _iframe = _formdiv.querySelector('iframe')
  9002. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9003. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9004. })
  9005. if (onloadListener) {
  9006. _iframe.contentDocument.location.reload()
  9007. } else {
  9008. _iframe.contentDocument.location.reload()
  9009. }
  9010. }
  9011. _jie.onclick = async () => {
  9012. let text = ''
  9013. if (aTool == 57) {
  9014. text = _iframe.contentWindow.getLoadXmlStr()
  9015. }
  9016. _loading.style.display = 'flex'
  9017. console.log(_loading);
  9018. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9019. _loading.style.display = 'none'
  9020. let _div = document.createElement('div')
  9021. _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;"
  9022. let _inner = document.createElement('div')
  9023. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9024. _inner.innerHTML = "上传成功"
  9025. _div.appendChild(_inner)
  9026. _iframe.contentWindow.window.document.body.appendChild(_div)
  9027. _div.onclick = () => {
  9028. _iframe.contentWindow.window.document.body.removeChild(_div)
  9029. }
  9030. setTimeout(() => {
  9031. _iframe.contentWindow.window.document.body.removeChild(_div)
  9032. }, 1000);
  9033. }, [], { "type": "POST", "withCredentials": true });
  9034. }
  9035. }
  9036. }
  9037. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9038. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9039. if (res.value[0].length > 0) {
  9040. if (atool == 57) {
  9041. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9042. }
  9043. } else {
  9044. if (atool == 57) {
  9045. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9046. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9047. }
  9048. }
  9049. }, [], { "type": "POST", "withCredentials": true });
  9050. }