DeskTop.js 532 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  634. ];
  635. //教科院实小教师桌面图标的全局变量
  636. U.MD.D.I.siesStudentDeskIcon = [
  637. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  641. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  642. ];
  643. //福田
  644. U.MD.D.I.gdjgTeacherDeskIcon = [
  645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  649. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  650. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  652. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  653. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  654. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  655. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  656. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. ];
  660. //gdjg
  661. U.MD.D.I.gdjgAdminDeskIcon = [
  662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  664. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  666. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  667. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  669. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  670. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  671. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  672. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  674. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  675. ];
  676. //hk
  677. U.MD.D.I.hkteacherDeskIcon = [
  678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  684. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  685. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  687. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  688. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  689. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  690. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  691. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  692. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  694. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  695. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  696. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  697. ];
  698. //hk
  699. U.MD.D.I.hkStudentDeskIcon = [
  700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  704. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkaceteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkaceStudentDeskIcon = [
  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. //香海正覺蓮社佛教正覺中學
  739. U.MD.D.I.hkZJLSteacherDeskIcon = [
  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": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  755. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  756. ];
  757. //香海正覺蓮社佛教正覺中學
  758. U.MD.D.I.hkZJLSStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  763. ];
  764. //云海
  765. U.MD.D.I.yunhaiTeacherDeskIcon = [
  766. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  767. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  768. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  769. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  773. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  774. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  775. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  776. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  777. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  778. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  779. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  780. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  782. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  783. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  784. ];
  785. //福田
  786. U.MD.D.I.heyuanTeacherDeskIcon = [
  787. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  788. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  789. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  790. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  791. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  792. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  795. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  796. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  799. ];
  800. //福田
  801. U.MD.D.I.heyuanAdminDeskIcon = [
  802. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  803. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  804. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  806. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  807. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  808. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  809. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  810. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  811. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  812. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  813. ];
  814. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  815. U.MD.D.I.szherTeacherDeskIcon = [
  816. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  817. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  818. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  819. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  820. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  821. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  822. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  827. ];
  828. //dsei
  829. U.MD.D.I.dseiTeacherDeskIcon = [
  830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  832. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  833. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  834. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  836. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  837. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  838. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  839. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  840. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  841. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  842. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  843. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  844. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  845. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  846. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  847. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  848. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  849. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  850. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  851. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  852. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  853. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  854. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  855. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  856. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  857. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  858. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  859. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  860. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  861. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  862. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  863. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  864. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  865. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  866. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  867. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  868. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  869. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  870. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  871. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  872. ];
  873. //dsei
  874. U.MD.D.I.dseiAdminDeskIcon = [
  875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  881. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  882. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  883. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  884. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  885. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  886. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  887. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  888. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  889. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  890. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  891. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  892. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  893. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  894. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  895. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  896. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  897. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  898. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  899. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  900. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  901. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  902. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  903. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  904. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  905. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  906. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  907. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  908. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  909. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  910. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  911. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  912. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  913. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  914. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  915. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  916. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  917. ];
  918. //dsei
  919. U.MD.D.I.dseiStudentDeskIcon = [
  920. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  921. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  922. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  923. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  926. ];
  927. //未来教育基地
  928. U.MD.D.I.szjkyTeacherDeskIcon = [
  929. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  930. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  931. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  932. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  933. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  934. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  935. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. ];
  951. //未来教育基地
  952. U.MD.D.I.szjkyAdminDeskIcon = [
  953. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  954. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  955. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  956. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  957. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  958. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  959. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  960. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  961. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  962. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  963. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  964. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  965. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  966. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  968. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  969. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  970. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  971. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  972. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  974. ];
  975. //未来教育基地
  976. U.MD.D.I.szjkyStudentDeskIcon = [
  977. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  978. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  981. ];
  982. //成华教育局
  983. U.MD.D.I.chjyjTeacherDeskIcon = [
  984. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  985. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  989. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  990. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  991. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  992. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  993. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  994. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  997. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  998. ];
  999. //成华教育局chjyj
  1000. U.MD.D.I.chjyjAdminDeskIcon = [
  1001. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1002. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1006. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1007. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1008. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1009. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1010. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1011. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1012. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. ];
  1017. //成华教育局chjyj
  1018. U.MD.D.I.chjyjStudentDeskIcon = [
  1019. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1020. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1021. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. ];
  1024. //tpc
  1025. U.MD.D.I.tpcStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcTeacherDeskIcon = [
  1033. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1034. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcAdminDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //THU-IOE
  1052. U.MD.D.I.thuioeTeacherDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1056. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1060. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1061. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1062. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1063. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1064. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1065. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1066. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1067. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1068. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1069. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1070. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1071. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1072. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1073. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1074. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1075. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1076. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1077. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1078. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1079. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1080. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1081. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1082. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1083. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1084. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1085. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //THU-IOE
  1094. U.MD.D.I.thuioeStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //jccssyl
  1101. U.MD.D.I.jccssylTeacherDeskIcon = [
  1102. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1103. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1104. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1105. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1109. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1114. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1115. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1118. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1119. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1120. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1121. ];
  1122. //jccssyl
  1123. U.MD.D.I.jccssylStudentDeskIcon = [
  1124. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1125. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1126. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. ];
  1129. //cale
  1130. U.MD.D.I.caleTeacherDeskIcon = [
  1131. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1132. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1134. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1138. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1139. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1140. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1141. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1142. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1143. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1144. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1147. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1148. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1150. ];
  1151. //cale
  1152. U.MD.D.I.caleStudentDeskIcon = [
  1153. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1154. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1155. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. ];
  1158. //lqwmsgzs
  1159. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1160. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1161. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1163. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1167. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1168. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1169. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1170. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1171. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1172. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1173. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1174. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1175. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1176. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1177. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1178. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1179. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1180. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1181. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1182. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1183. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1184. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1185. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1186. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1187. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1188. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1189. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1190. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1191. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1192. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1193. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //lqwmsgzs
  1199. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //盐田区幼儿园
  1206. U.MD.D.I.ytyTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1213. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1216. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1217. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1218. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //#region 桌面初始化a
  1227. /**
  1228. * 初始化桌面的起始函数
  1229. *
  1230. */
  1231. U.MD.D.I.init = function () {
  1232. if ($("#U_MD_D_K")[0]) {
  1233. //初始化桌面图标
  1234. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1235. // var clickUrl = ':12588/requestIp.php';
  1236. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1237. // U.MD.D.I.Ip = data;
  1238. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1239. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1240. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1241. // })
  1242. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1243. // })
  1244. }
  1245. }
  1246. /**
  1247. * 模式切换
  1248. *
  1249. */
  1250. U.MD.D.I.ModeCheck = function (type) {
  1251. if (US.Config.type == type) {
  1252. return
  1253. }
  1254. US.Config.type = type
  1255. $('.U_PBL_Check .active')[0].className = ''
  1256. if (type == 1) {
  1257. $('.U_PBL_Check div')[0].className = 'active'
  1258. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1259. } else {
  1260. $('.U_PBL_Check div')[1].className = 'active'
  1261. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1262. }
  1263. //初始化桌面图标
  1264. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1265. if (type == 2) {
  1266. U.MD.D.I.openApplication("project")
  1267. }
  1268. }
  1269. /**
  1270. * 隐藏任务栏
  1271. *
  1272. * @param {element} 桌面元素
  1273. */
  1274. U.MD.D.I.hiddenTaskbar = function (el) {
  1275. //任务栏位置变小
  1276. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1277. //桌面的位置变大
  1278. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1279. }
  1280. /**
  1281. * 隐藏任务栏
  1282. *
  1283. * @param {element} 桌面元素
  1284. */
  1285. U.MD.D.I.hiddenTaskbarout = function (el) {
  1286. //任务栏位置变小
  1287. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1288. //任务栏位置变化
  1289. U.selectEl(el).css({ "bottom": "-60px" });
  1290. //桌面的位置变大
  1291. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1292. }
  1293. }
  1294. /**
  1295. * 初始化打印桌面图标
  1296. *
  1297. * @param {element} 桌面元素
  1298. */
  1299. U.MD.D.I.initDesktopIcons = function (el, type) {
  1300. var i, //用于循环
  1301. _content, //桌面图标元素
  1302. _iconcontent, //桌面图标元素
  1303. _frag = $$("frag"), //定义一个碎片元素
  1304. _type = US.userInfo.type,
  1305. _org = US.userInfo.org,
  1306. _oid = US.userInfo.organizeid,
  1307. _role = US.userInfo.role,
  1308. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1309. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1310. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1311. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1312. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1313. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1314. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1315. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1316. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1317. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1318. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1319. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1320. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1321. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1322. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1323. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1324. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1325. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1326. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1327. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1328. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1329. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1330. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1331. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1332. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1333. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1334. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1335. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1336. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1337. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1338. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1339. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1340. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1341. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1342. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1343. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1344. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1345. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1346. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1347. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1348. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1349. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1350. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1351. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1352. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1353. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1354. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1355. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1356. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1357. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1358. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1359. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1360. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1361. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1362. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1363. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1364. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1365. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1366. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1367. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1368. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1369. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1370. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1371. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1372. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1373. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1374. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //网络夏令营
  1375. 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'];
  1376. 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'];
  1377. //清楚桌面图标
  1378. el.innerHTML = "";
  1379. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1380. _teacherDesktopIconInfo.push(
  1381. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1382. { "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)" } },
  1383. )
  1384. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1385. }
  1386. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5') {
  1387. _teacherDesktopIconInfo.push(
  1388. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1389. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1390. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1393. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1394. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1395. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1396. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1397. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1398. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1401. { "Name": "课程观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. )
  1403. }
  1404. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1405. // _teacherDesktopIconInfo.push(
  1406. // )
  1407. // }
  1408. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1409. _teacherDesktopIconInfo.push(
  1410. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. )
  1413. }
  1414. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1415. _teacherDesktopIconInfo.push(
  1416. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1417. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1418. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1419. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1420. )
  1421. _studentDesktopIconInfo.push(
  1422. )
  1423. }
  1424. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1425. _teacherDesktopIconInfo.push(
  1426. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1427. )
  1428. _studentDesktopIconInfo.push(
  1429. )
  1430. }
  1431. //麒麟二中 和 民新小学
  1432. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1433. _teacherDesktopIconInfo.push(
  1434. )
  1435. }
  1436. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1437. _teacherDesktopIconInfo.push(
  1438. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1439. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1440. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1441. )
  1442. }
  1443. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1444. _teacherDesktopIconInfo.push(
  1445. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1446. )
  1447. }
  1448. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1449. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1450. _teacherDesktopIconInfo.push(
  1451. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. )
  1454. }
  1455. //麒麟二中
  1456. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1457. _studentDesktopIconInfo.push(
  1458. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1459. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1460. )
  1461. }
  1462. //万科双语
  1463. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1464. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1465. if (el.Name == '项目管理') {
  1466. el.Name = 'PBL项目'
  1467. }
  1468. return el
  1469. })
  1470. _studentDesktopIconInfo3.push(
  1471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1472. )
  1473. }
  1474. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1475. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1476. return el.Name != '魔盒识字' && el.Name != '24点'
  1477. })
  1478. }
  1479. 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) {
  1480. _studentDesktopIconInfo.push(
  1481. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1482. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1483. )
  1484. }
  1485. //循环创建桌面图标
  1486. if (type == 1) {
  1487. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1488. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1489. _content = $$("div", {
  1490. className: "U_MD_D_KO",
  1491. "onmousedown": U.UF.C.closure(function (obj) {
  1492. //防止拖动图标即打开了桌面应用
  1493. U.MD.D.click(this, obj);
  1494. }, [_studentDesktopIconInfo[i]]),
  1495. "onclick": U.UF.C.closure(function (obj) {
  1496. //防止拖动图标即打开了桌面应用
  1497. U.MD.D.click(this, obj);
  1498. }, [_studentDesktopIconInfo[i]])
  1499. }, _frag); //
  1500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1503. }
  1504. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1505. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1506. _content = $$("div", {
  1507. className: "U_MD_D_KO",
  1508. "onmousedown": U.UF.C.closure(function (obj) {
  1509. //防止拖动图标即打开了桌面应用
  1510. U.MD.D.click(this, obj);
  1511. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1512. "onclick": U.UF.C.closure(function (obj) {
  1513. //防止拖动图标即打开了桌面应用
  1514. U.MD.D.click(this, obj);
  1515. }, [_hkZJLSStudentDeskIconInfo[i]])
  1516. }, _frag); //
  1517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1520. } //
  1521. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1522. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1523. _content = $$("div", {
  1524. className: "U_MD_D_KO",
  1525. "onmousedown": U.UF.C.closure(function (obj) {
  1526. //防止拖动图标即打开了桌面应用
  1527. U.MD.D.click(this, obj);
  1528. }, [_ytyStudentDeskIconInfo[i]]),
  1529. "onclick": U.UF.C.closure(function (obj) {
  1530. //防止拖动图标即打开了桌面应用
  1531. U.MD.D.click(this, obj);
  1532. }, [_ytyStudentDeskIconInfo[i]])
  1533. }, _frag); //
  1534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1537. } //
  1538. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1539. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1540. _content = $$("div", {
  1541. className: "U_MD_D_KO",
  1542. "onmousedown": U.UF.C.closure(function (obj) {
  1543. //防止拖动图标即打开了桌面应用
  1544. U.MD.D.click(this, obj);
  1545. }, [_jccssylStudentDeskIconInfo[i]]),
  1546. "onclick": U.UF.C.closure(function (obj) {
  1547. //防止拖动图标即打开了桌面应用
  1548. U.MD.D.click(this, obj);
  1549. }, [_jccssylStudentDeskIconInfo[i]])
  1550. }, _frag); //
  1551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1554. }
  1555. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1556. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1557. _content = $$("div", {
  1558. className: "U_MD_D_KO",
  1559. "onmousedown": U.UF.C.closure(function (obj) {
  1560. //防止拖动图标即打开了桌面应用
  1561. U.MD.D.click(this, obj);
  1562. }, [_caleStudentDeskIconInfo[i]]),
  1563. "onclick": U.UF.C.closure(function (obj) {
  1564. //防止拖动图标即打开了桌面应用
  1565. U.MD.D.click(this, obj);
  1566. }, [_caleStudentDeskIconInfo[i]])
  1567. }, _frag); //
  1568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1571. }
  1572. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1573. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1574. _content = $$("div", {
  1575. className: "U_MD_D_KO",
  1576. "onmousedown": U.UF.C.closure(function (obj) {
  1577. //防止拖动图标即打开了桌面应用
  1578. U.MD.D.click(this, obj);
  1579. }, [_thuioeStudentDeskIconInfo[i]]),
  1580. "onclick": U.UF.C.closure(function (obj) {
  1581. //防止拖动图标即打开了桌面应用
  1582. U.MD.D.click(this, obj);
  1583. }, [_thuioeStudentDeskIconInfo[i]])
  1584. }, _frag); //
  1585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1588. }
  1589. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1590. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1591. _content = $$("div", {
  1592. className: "U_MD_D_KO",
  1593. "onmousedown": U.UF.C.closure(function (obj) {
  1594. //防止拖动图标即打开了桌面应用
  1595. U.MD.D.click(this, obj);
  1596. }, [_tpcStudentDeskIconInfo[i]]),
  1597. "onclick": U.UF.C.closure(function (obj) {
  1598. //防止拖动图标即打开了桌面应用
  1599. U.MD.D.click(this, obj);
  1600. }, [_tpcStudentDeskIconInfo[i]])
  1601. }, _frag); //
  1602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1605. } //
  1606. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1607. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  1608. _content = $$("div", {
  1609. className: "U_MD_D_KO",
  1610. "onmousedown": U.UF.C.closure(function (obj) {
  1611. //防止拖动图标即打开了桌面应用
  1612. U.MD.D.click(this, obj);
  1613. }, [_chjyjStudentDeskIconInfo[i]]),
  1614. "onclick": U.UF.C.closure(function (obj) {
  1615. //防止拖动图标即打开了桌面应用
  1616. U.MD.D.click(this, obj);
  1617. }, [_chjyjStudentDeskIconInfo[i]])
  1618. }, _frag); //
  1619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1622. }
  1623. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1624. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  1625. _content = $$("div", {
  1626. className: "U_MD_D_KO",
  1627. "onmousedown": U.UF.C.closure(function (obj) {
  1628. //防止拖动图标即打开了桌面应用
  1629. U.MD.D.click(this, obj);
  1630. }, [_szjkyStudentDeskIconInfo[i]]),
  1631. "onclick": U.UF.C.closure(function (obj) {
  1632. //防止拖动图标即打开了桌面应用
  1633. U.MD.D.click(this, obj);
  1634. }, [_szjkyStudentDeskIconInfo[i]])
  1635. }, _frag); //
  1636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1639. }
  1640. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1641. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  1642. _content = $$("div", {
  1643. className: "U_MD_D_KO",
  1644. "onmousedown": U.UF.C.closure(function (obj) {
  1645. //防止拖动图标即打开了桌面应用
  1646. U.MD.D.click(this, obj);
  1647. }, [_dseiStudentDeskIconInfo[i]]),
  1648. "onclick": U.UF.C.closure(function (obj) {
  1649. //防止拖动图标即打开了桌面应用
  1650. U.MD.D.click(this, obj);
  1651. }, [_dseiStudentDeskIconInfo[i]])
  1652. }, _frag); //
  1653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1656. }
  1657. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1658. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  1659. _content = $$("div", {
  1660. className: "U_MD_D_KO",
  1661. "onmousedown": U.UF.C.closure(function (obj) {
  1662. //防止拖动图标即打开了桌面应用
  1663. U.MD.D.click(this, obj);
  1664. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1665. "onclick": U.UF.C.closure(function (obj) {
  1666. //防止拖动图标即打开了桌面应用
  1667. U.MD.D.click(this, obj);
  1668. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1669. }, _frag); //
  1670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1673. }
  1674. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1675. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  1676. _content = $$("div", {
  1677. className: "U_MD_D_KO",
  1678. "onmousedown": U.UF.C.closure(function (obj) {
  1679. //防止拖动图标即打开了桌面应用
  1680. U.MD.D.click(this, obj);
  1681. }, [_siesStudentDeskIconInfo[i]]),
  1682. "onclick": U.UF.C.closure(function (obj) {
  1683. //防止拖动图标即打开了桌面应用
  1684. U.MD.D.click(this, obj);
  1685. }, [_siesStudentDeskIconInfo[i]])
  1686. }, _frag); //
  1687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1690. }
  1691. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1692. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  1693. _content = $$("div", {
  1694. className: "U_MD_D_KO",
  1695. "onmousedown": U.UF.C.closure(function (obj) {
  1696. //防止拖动图标即打开了桌面应用
  1697. U.MD.D.click(this, obj);
  1698. }, [_hkStudentDeskIconInfo[i]]),
  1699. "onclick": U.UF.C.closure(function (obj) {
  1700. //防止拖动图标即打开了桌面应用
  1701. U.MD.D.click(this, obj);
  1702. }, [_hkStudentDeskIconInfo[i]])
  1703. }, _frag); //
  1704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1707. }
  1708. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1709. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  1710. _content = $$("div", {
  1711. className: "U_MD_D_KO",
  1712. "onmousedown": U.UF.C.closure(function (obj) {
  1713. //防止拖动图标即打开了桌面应用
  1714. U.MD.D.click(this, obj);
  1715. }, [_hkaceStudentDeskIconInfo[i]]),
  1716. "onclick": U.UF.C.closure(function (obj) {
  1717. //防止拖动图标即打开了桌面应用
  1718. U.MD.D.click(this, obj);
  1719. }, [_hkaceStudentDeskIconInfo[i]])
  1720. }, _frag); //
  1721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1724. }
  1725. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1726. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1727. _content = $$("div", {
  1728. className: "U_MD_D_KO",
  1729. "onmousedown": U.UF.C.closure(function (obj) {
  1730. //防止拖动图标即打开了桌面应用
  1731. U.MD.D.click(this, obj);
  1732. }, [_studentDesktopIconInfo[i]]),
  1733. "onclick": U.UF.C.closure(function (obj) {
  1734. //防止拖动图标即打开了桌面应用
  1735. U.MD.D.click(this, obj);
  1736. }, [_studentDesktopIconInfo[i]])
  1737. }, _frag); //
  1738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1741. }
  1742. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1743. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  1744. _content = $$("div", {
  1745. className: "U_MD_D_KO",
  1746. "onmousedown": U.UF.C.closure(function (obj) {
  1747. //防止拖动图标即打开了桌面应用
  1748. U.MD.D.click(this, obj);
  1749. }, [_tcStudentDeskIconInfo[i]]),
  1750. "onclick": U.UF.C.closure(function (obj) {
  1751. //防止拖动图标即打开了桌面应用
  1752. U.MD.D.click(this, obj);
  1753. }, [_tcStudentDeskIconInfo[i]])
  1754. }, _frag); //
  1755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  1757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  1758. }
  1759. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  1760. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  1761. _content = $$("div", {
  1762. className: "U_MD_D_KO",
  1763. "onmousedown": U.UF.C.closure(function (obj) {
  1764. //防止拖动图标即打开了桌面应用
  1765. U.MD.D.click(this, obj);
  1766. }, [_szscStudentDeskIconInfo[i]]),
  1767. "onclick": U.UF.C.closure(function (obj) {
  1768. //防止拖动图标即打开了桌面应用
  1769. U.MD.D.click(this, obj);
  1770. }, [_szscStudentDeskIconInfo[i]])
  1771. }, _frag); //
  1772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  1774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  1775. }
  1776. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  1777. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  1778. _content = $$("div", {
  1779. className: "U_MD_D_KO",
  1780. "onmousedown": U.UF.C.closure(function (obj) {
  1781. //防止拖动图标即打开了桌面应用
  1782. U.MD.D.click(this, obj);
  1783. }, [_studentDesktopIconInfo3[i]]),
  1784. "onclick": U.UF.C.closure(function (obj) {
  1785. //防止拖动图标即打开了桌面应用
  1786. U.MD.D.click(this, obj);
  1787. }, [_studentDesktopIconInfo3[i]])
  1788. }, _frag); //
  1789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  1791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  1792. }
  1793. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  1794. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  1795. _content = $$("div", {
  1796. className: "U_MD_D_KO",
  1797. "onmousedown": U.UF.C.closure(function (obj) {
  1798. //防止拖动图标即打开了桌面应用
  1799. U.MD.D.click(this, obj);
  1800. }, [_studentDesktopIconInfo2[i]]),
  1801. "onclick": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_studentDesktopIconInfo2[i]])
  1805. }, _frag); //
  1806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  1808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  1809. }
  1810. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  1811. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  1812. _content = $$("div", {
  1813. className: "U_MD_D_KO",
  1814. "onmousedown": U.UF.C.closure(function (obj) {
  1815. //防止拖动图标即打开了桌面应用
  1816. U.MD.D.click(this, obj);
  1817. }, [_wanketeacherDesktopIconInfo[i]]),
  1818. "onclick": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_wanketeacherDesktopIconInfo[i]])
  1822. }, _frag); //
  1823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  1825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  1826. }
  1827. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  1828. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  1829. _content = $$("div", {
  1830. className: "U_MD_D_KO",
  1831. "onmousedown": U.UF.C.closure(function (obj) {
  1832. //防止拖动图标即打开了桌面应用
  1833. U.MD.D.click(this, obj);
  1834. }, [_wankeAdminDesktopIconInfo[i]]),
  1835. "onclick": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_wankeAdminDesktopIconInfo[i]])
  1839. }, _frag); //
  1840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  1842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  1843. }
  1844. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  1845. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  1846. _content = $$("div", {
  1847. className: "U_MD_D_KO",
  1848. "onmousedown": U.UF.C.closure(function (obj) {
  1849. //防止拖动图标即打开了桌面应用
  1850. U.MD.D.click(this, obj);
  1851. }, [_jccssylTeacherDeskIconInfo[i]]),
  1852. "onclick": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_jccssylTeacherDeskIconInfo[i]])
  1856. }, _frag); //
  1857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  1859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  1860. }
  1861. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  1862. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  1863. _content = $$("div", {
  1864. className: "U_MD_D_KO",
  1865. "onmousedown": U.UF.C.closure(function (obj) {
  1866. //防止拖动图标即打开了桌面应用
  1867. U.MD.D.click(this, obj);
  1868. }, [_caleTeacherDeskIconInfo[i]]),
  1869. "onclick": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_caleTeacherDeskIconInfo[i]])
  1873. }, _frag); //
  1874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  1876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  1877. }
  1878. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  1879. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  1880. _content = $$("div", {
  1881. className: "U_MD_D_KO",
  1882. "onmousedown": U.UF.C.closure(function (obj) {
  1883. //防止拖动图标即打开了桌面应用
  1884. U.MD.D.click(this, obj);
  1885. }, [_tpcOrganizerDeskIconInfo[i]]),
  1886. "onclick": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_tpcOrganizerDeskIconInfo[i]])
  1890. }, _frag); //
  1891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  1893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  1894. }
  1895. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  1896. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  1897. _content = $$("div", {
  1898. className: "U_MD_D_KO",
  1899. "onmousedown": U.UF.C.closure(function (obj) {
  1900. //防止拖动图标即打开了桌面应用
  1901. U.MD.D.click(this, obj);
  1902. }, [_tpcTeacherDeskIconInfo[i]]),
  1903. "onclick": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_tpcTeacherDeskIconInfo[i]])
  1907. }, _frag); //
  1908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  1910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  1911. }
  1912. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  1913. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  1914. _content = $$("div", {
  1915. className: "U_MD_D_KO",
  1916. "onmousedown": U.UF.C.closure(function (obj) {
  1917. //防止拖动图标即打开了桌面应用
  1918. U.MD.D.click(this, obj);
  1919. }, [_teacherDesktopIconInfo2[i]]),
  1920. "onclick": U.UF.C.closure(function (obj) {
  1921. //防止拖动图标即打开了桌面应用
  1922. U.MD.D.click(this, obj);
  1923. }, [_teacherDesktopIconInfo2[i]])
  1924. }, _frag); //
  1925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  1927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  1928. }
  1929. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1930. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  1931. _content = $$("div", {
  1932. className: "U_MD_D_KO",
  1933. "onmousedown": U.UF.C.closure(function (obj) {
  1934. //防止拖动图标即打开了桌面应用
  1935. U.MD.D.click(this, obj);
  1936. }, [_thuioeTeacherDeskIconInfo[i]]),
  1937. "onclick": U.UF.C.closure(function (obj) {
  1938. //防止拖动图标即打开了桌面应用
  1939. U.MD.D.click(this, obj);
  1940. }, [_thuioeTeacherDeskIconInfo[i]])
  1941. }, _frag); //
  1942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  1944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  1945. }
  1946. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  1947. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  1948. _content = $$("div", {
  1949. className: "U_MD_D_KO",
  1950. "onmousedown": U.UF.C.closure(function (obj) {
  1951. //防止拖动图标即打开了桌面应用
  1952. U.MD.D.click(this, obj);
  1953. }, [_lotechTeacherDeskIconInfo[i]]),
  1954. "onclick": U.UF.C.closure(function (obj) {
  1955. //防止拖动图标即打开了桌面应用
  1956. U.MD.D.click(this, obj);
  1957. }, [_lotechTeacherDeskIconInfo[i]])
  1958. }, _frag); //
  1959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  1961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  1962. }//
  1963. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1964. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  1965. _content = $$("div", {
  1966. className: "U_MD_D_KO",
  1967. "onmousedown": U.UF.C.closure(function (obj) {
  1968. //防止拖动图标即打开了桌面应用
  1969. U.MD.D.click(this, obj);
  1970. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  1971. "onclick": U.UF.C.closure(function (obj) {
  1972. //防止拖动图标即打开了桌面应用
  1973. U.MD.D.click(this, obj);
  1974. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  1975. }, _frag); //
  1976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  1978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  1979. }
  1980. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1981. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  1982. _content = $$("div", {
  1983. className: "U_MD_D_KO",
  1984. "onmousedown": U.UF.C.closure(function (obj) {
  1985. //防止拖动图标即打开了桌面应用
  1986. U.MD.D.click(this, obj);
  1987. }, [_siesTeacherDeskIconInfo[i]]),
  1988. "onclick": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_siesTeacherDeskIconInfo[i]])
  1992. }, _frag); //
  1993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  1995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  1996. }
  1997. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  1998. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  1999. _content = $$("div", {
  2000. className: "U_MD_D_KO",
  2001. "onmousedown": U.UF.C.closure(function (obj) {
  2002. //防止拖动图标即打开了桌面应用
  2003. U.MD.D.click(this, obj);
  2004. }, [_longhuaTeacherDeskIconInfo[i]]),
  2005. "onclick": U.UF.C.closure(function (obj) {
  2006. //防止拖动图标即打开了桌面应用
  2007. U.MD.D.click(this, obj);
  2008. }, [_longhuaTeacherDeskIconInfo[i]])
  2009. }, _frag); //
  2010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2013. }
  2014. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2015. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2016. _content = $$("div", {
  2017. className: "U_MD_D_KO",
  2018. "onmousedown": U.UF.C.closure(function (obj) {
  2019. //防止拖动图标即打开了桌面应用
  2020. U.MD.D.click(this, obj);
  2021. }, [_ytyTeacherDeskIconInfo[i]]),
  2022. "onclick": U.UF.C.closure(function (obj) {
  2023. //防止拖动图标即打开了桌面应用
  2024. U.MD.D.click(this, obj);
  2025. }, [_ytyTeacherDeskIconInfo[i]])
  2026. }, _frag); //
  2027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2030. }
  2031. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2032. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2033. _content = $$("div", {
  2034. className: "U_MD_D_KO",
  2035. "onmousedown": U.UF.C.closure(function (obj) {
  2036. //防止拖动图标即打开了桌面应用
  2037. U.MD.D.click(this, obj);
  2038. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2039. "onclick": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_yunhaiTeacherDeskIconInfo[i]])
  2043. }, _frag); //
  2044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2047. } //_hkStudentDeskIconInfo
  2048. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2049. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2050. _content = $$("div", {
  2051. className: "U_MD_D_KO",
  2052. "onmousedown": U.UF.C.closure(function (obj) {
  2053. //防止拖动图标即打开了桌面应用
  2054. U.MD.D.click(this, obj);
  2055. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2056. "onclick": U.UF.C.closure(function (obj) {
  2057. //防止拖动图标即打开了桌面应用
  2058. U.MD.D.click(this, obj);
  2059. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2060. }, _frag); //
  2061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2064. }
  2065. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2066. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2067. _content = $$("div", {
  2068. className: "U_MD_D_KO",
  2069. "onmousedown": U.UF.C.closure(function (obj) {
  2070. //防止拖动图标即打开了桌面应用
  2071. U.MD.D.click(this, obj);
  2072. }, [_hkTeacherDeskIconInfo[i]]),
  2073. "onclick": U.UF.C.closure(function (obj) {
  2074. //防止拖动图标即打开了桌面应用
  2075. U.MD.D.click(this, obj);
  2076. }, [_hkTeacherDeskIconInfo[i]])
  2077. }, _frag); //
  2078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2081. }
  2082. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2083. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2084. _content = $$("div", {
  2085. className: "U_MD_D_KO",
  2086. "onmousedown": U.UF.C.closure(function (obj) {
  2087. //防止拖动图标即打开了桌面应用
  2088. U.MD.D.click(this, obj);
  2089. }, [_hkaceTeacherDeskIconInfo[i]]),
  2090. "onclick": U.UF.C.closure(function (obj) {
  2091. //防止拖动图标即打开了桌面应用
  2092. U.MD.D.click(this, obj);
  2093. }, [_hkaceTeacherDeskIconInfo[i]])
  2094. }, _frag); //
  2095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2098. }
  2099. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2100. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2101. _content = $$("div", {
  2102. className: "U_MD_D_KO",
  2103. "onmousedown": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_gdjgAdminDeskIconInfo[i]]),
  2107. "onclick": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_gdjgAdminDeskIconInfo[i]])
  2111. }, _frag); //
  2112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2115. }
  2116. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2117. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2118. _content = $$("div", {
  2119. className: "U_MD_D_KO",
  2120. "onmousedown": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_gdjgTeacherDeskIconInfo[i]]),
  2124. "onclick": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_gdjgTeacherDeskIconInfo[i]])
  2128. }, _frag); //
  2129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2132. }
  2133. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2134. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2135. _content = $$("div", {
  2136. className: "U_MD_D_KO",
  2137. "onmousedown": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_szherTeacherDeskIconInfo[i]]),
  2141. "onclick": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_szherTeacherDeskIconInfo[i]])
  2145. }, _frag); //
  2146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2149. }
  2150. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2151. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_heyuannAdminDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_heyuannAdminDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2166. }
  2167. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2168. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_heyuanTeacherDeskIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_heyuanTeacherDeskIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2183. } //
  2184. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2185. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2186. _content = $$("div", {
  2187. className: "U_MD_D_KO",
  2188. "onmousedown": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_dseiAdminDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_dseiAdminDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2202. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2203. _content = $$("div", {
  2204. className: "U_MD_D_KO",
  2205. "onmousedown": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_dseiTeacherDeskIconInfo[i]]),
  2209. "onclick": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_dseiTeacherDeskIconInfo[i]])
  2213. }, _frag); //
  2214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2217. } //
  2218. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2219. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2220. _content = $$("div", {
  2221. className: "U_MD_D_KO",
  2222. "onmousedown": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_chjyjAdminDeskIconInfo[i]]),
  2226. "onclick": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_chjyjAdminDeskIconInfo[i]])
  2230. }, _frag); //
  2231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2234. }//
  2235. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2236. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjTeacherDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_chjyjTeacherDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2253. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2254. _content = $$("div", {
  2255. className: "U_MD_D_KO",
  2256. "onmousedown": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyAdminDeskIconInfo[i]]),
  2260. "onclick": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_szjkyAdminDeskIconInfo[i]])
  2264. }, _frag); //
  2265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2268. }//
  2269. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2270. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2271. _content = $$("div", {
  2272. className: "U_MD_D_KO",
  2273. "onmousedown": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_szjkyTeacherDeskIconInfo[i]]),
  2277. "onclick": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_szjkyTeacherDeskIconInfo[i]])
  2281. }, _frag); //
  2282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2285. }
  2286. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2287. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2288. _content = $$("div", {
  2289. className: "U_MD_D_KO",
  2290. "onmousedown": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_futianAdminDeskIconInfo[i]]),
  2294. "onclick": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_futianAdminDeskIconInfo[i]])
  2298. }, _frag); //
  2299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2302. }
  2303. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2304. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2305. _content = $$("div", {
  2306. className: "U_MD_D_KO",
  2307. "onmousedown": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_futianTeacherDeskIconInfo[i]]),
  2311. "onclick": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_futianTeacherDeskIconInfo[i]])
  2315. }, _frag); //
  2316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2319. }
  2320. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2321. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2322. _content = $$("div", {
  2323. className: "U_MD_D_KO",
  2324. "onmousedown": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_MingdeTeacherDeskIcon[i]]),
  2328. "onclick": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_MingdeTeacherDeskIcon[i]])
  2332. }, _frag); //
  2333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2336. }
  2337. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2338. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_lhsAdminDesktopIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_lhsAdminDesktopIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2355. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_lhsteacherDesktopIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_lhsteacherDesktopIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2372. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_zhoujiateacherDesktopIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2387. }
  2388. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2389. for (i = 0; i < _hanDeskIcon.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_hanDeskIcon[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_hanDeskIcon[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2404. }
  2405. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2406. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  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. }, [_orgStemDeskIcon[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_orgStemDeskIcon[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2421. }
  2422. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2423. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_szulsDeskIcon[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_szulsDeskIcon[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2438. }
  2439. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2440. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_orgDesktopIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_orgDesktopIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2457. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_schoolDesktopIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_schoolDesktopIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2474. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_GMteacherDesktopIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_GMteacherDesktopIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2491. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_SONGteacherDesktopIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_SONGteacherDesktopIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2508. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_GMstudentDesktopIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_GMstudentDesktopIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2525. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_tcTeacherDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_tcTeacherDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2542. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_tcOrganizerDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_tcOrganizerDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  2559. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_szscTeacherDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_szscTeacherDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  2576. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_szscOrganizerDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_szscOrganizerDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else {
  2593. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_teacherDesktopIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_teacherDesktopIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. }
  2610. } else {
  2611. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. style: { 'width': '124px', 'height': '145px' },
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_easyDesktopIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_easyDesktopIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  2627. }
  2628. }
  2629. if (type == 1) {
  2630. //加载好后给图标定位
  2631. U.MD.D.iconPostion($(_frag).Child());
  2632. } else {
  2633. //加载好后给图标定位
  2634. U.MD.D.iconPostion2($(_frag).Child());
  2635. }
  2636. //把图标加载到页面
  2637. el.appendChild(_frag);
  2638. }
  2639. /**
  2640. * 显示任务栏
  2641. *
  2642. * @param {element} 桌面元素
  2643. */
  2644. U.MD.D.I.displayTaskbar = function (el) {
  2645. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  2646. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  2647. //任务栏位置变化
  2648. U.selectEl(el).css({ "bottom": "0px" });
  2649. //桌面位置变话
  2650. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  2651. }
  2652. }
  2653. //#region 桌面图标拖动逻辑
  2654. /**
  2655. * 桌面排列图标
  2656. *
  2657. * @param {element} 桌面元素
  2658. * @param {object} 上下相距的距离
  2659. * @param {object} 左右相距的距离
  2660. * @return {object} 命名空间
  2661. */
  2662. U.MD.D.iconPostion = function (childs, top, left) {
  2663. var i; //用于循环处理
  2664. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  2665. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  2666. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2667. for (i = 0; i < childs.length; i++) {
  2668. //如果竖排top超过了范围处理
  2669. if (top + 95 > US.height - 10) {
  2670. //left超过了页面范围处理,则向上重叠打印处理
  2671. if ((left + 180) > US.width) {
  2672. top -= 110;
  2673. left -= 90;
  2674. }
  2675. //没有超过范围,那么left+90添加到下一个竖排打印
  2676. else {
  2677. left += 90;
  2678. top = 15;
  2679. };
  2680. }
  2681. //给图标的位置赋值
  2682. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  2683. if (i < childs.length - 1) {
  2684. //页面图标每次向下加95
  2685. top += 95;
  2686. }
  2687. }
  2688. //返回最后调用的图标的位置
  2689. return [top, left];
  2690. }
  2691. /**
  2692. * 桌面排列图标
  2693. *
  2694. * @param {element} 桌面元素
  2695. * @param {object} 上下相距的距离
  2696. * @param {object} 左右相距的距离
  2697. * @return {object} 命名空间
  2698. */
  2699. U.MD.D.iconPostion2 = function (childs, top, left) {
  2700. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  2701. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  2702. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  2703. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  2704. for (i = 0; i < childs.length; i++) {
  2705. //如果竖排top超过了范围处理
  2706. if (left + 150 > US.width - 10) {
  2707. //left超过了页面范围处理,则向上重叠打印处理
  2708. if ((top + 180) > US.Height) {
  2709. top -= 150;
  2710. left -= 150;
  2711. }
  2712. //没有超过范围,那么left+90添加到下一个竖排打印
  2713. else {
  2714. top += 150;
  2715. left = ol;
  2716. };
  2717. }
  2718. //给图标的位置赋值
  2719. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  2720. if (i < childs.length - 1) {
  2721. //页面图标每次向下加95
  2722. left += 150;
  2723. }
  2724. }
  2725. //返回最后调用的图标的位置
  2726. return [top, left];
  2727. }
  2728. /**
  2729. * 桌面点击事件逻辑
  2730. *
  2731. * @param {element} 桌面元素
  2732. * @param {object} 上下相距的距离
  2733. * @param {object} 左右相距的距离
  2734. * @return {object} 命名空间
  2735. */
  2736. U.MD.D.click = function (el, obj) {
  2737. var _buttonnumber = event.button; //点击的按钮的事件值
  2738. var _userinfo = US.userInfo;
  2739. U.UF.EV.stopBubble(); //阻止向上冒泡
  2740. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  2741. if (_buttonnumber < 2) {
  2742. //如果是click事件的处理
  2743. if (event.type == "click") {
  2744. //如果元素在mousemove事件中没有移动则出发click事件
  2745. if (!U.MD.D.I.IsDrag) {
  2746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  2747. U.alert("请先登录您的账号!");
  2748. setTimeout(() => {
  2749. U.MD.U.L.login();
  2750. }, 2000);
  2751. } else {
  2752. //打开应用处理
  2753. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  2754. }
  2755. }
  2756. }
  2757. //如果是mouse事件的处理
  2758. else {
  2759. if (US.Config.type == '1') {
  2760. //拖动处理,添加拖动和拖动结束事件
  2761. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  2762. }
  2763. }
  2764. U.MD.D.I.IsDrag = false;
  2765. }
  2766. }
  2767. /**
  2768. * 拖动的处理
  2769. *
  2770. */
  2771. U.MD.D.iconMove = function () {
  2772. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  2773. U.MD.D.I.IsDrag = true;
  2774. }
  2775. /**
  2776. * 拖动结束后,这里是定位处理,以网状的形式定位
  2777. *
  2778. * @param {element} 拖动的元素
  2779. * @return {object} 命名空间
  2780. */
  2781. U.MD.D.iconUp = function (el) {
  2782. var _top = 15,
  2783. _left = 20,
  2784. _margin,
  2785. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  2786. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  2787. if (_positioninfo["OT"] > 15) {
  2788. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  2789. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  2790. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  2791. }
  2792. if (_positioninfo["OL"] > 20) {
  2793. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  2794. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  2795. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  2796. }
  2797. //while循环判断么一个重叠的元素
  2798. do {
  2799. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  2800. _top = _positioninfo[0] + 95; //得到定位后的top
  2801. _left = _positioninfo[1]; //得到定位后的left
  2802. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  2803. }
  2804. /**
  2805. * 判断拖动后图标是否重叠
  2806. *
  2807. * @param {element} 拖动的元素
  2808. * @param {element} 桌面所有的元素
  2809. * @param {array} 拖动元素的位置
  2810. ----------[0] 上 top
  2811. ----------[1] 左 left
  2812. * @return {object} 命名空间
  2813. */
  2814. U.MD.D.isOverlap = function (el, childs, postionarray) {
  2815. //循环所有的图标
  2816. for (var i = 0; i < childs.length; i++) {
  2817. //判断有没有和该图标诶子重叠的元素
  2818. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  2819. return childs[i]; //如果有返回
  2820. }
  2821. }
  2822. }
  2823. //#endregion
  2824. //#endregion
  2825. //#region 桌面应用
  2826. /**
  2827. * 打开应用
  2828. *
  2829. * @param {string} 类型
  2830. -----------------Disk 网盘系统
  2831. -----------------PDisk 学习系统网盘
  2832. -----------------Poto 图片
  2833. -----------------Video 视频
  2834. -----------------Music 音乐
  2835. -----------------Word word
  2836. -----------------Excel excel
  2837. -----------------Txt 记事本
  2838. -----------------PB 学习系统
  2839. -----------------Blog 朋友圈系统
  2840. -----------------FTP ftp系统
  2841. -----------------Group 好友群
  2842. -----------------SY 首页系统
  2843. -----------------Set 个人设置
  2844. -----------------XSet 系统设置
  2845. -----------------App 我们所有的app
  2846. -----------------BC c.1473.cn 平台
  2847. -----------------CWeb d.1473.cn 变成平台
  2848. -----------------其他的外联系统 我们统一用iframe打开
  2849. * @param {array} 类型
  2850. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  2851. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  2852. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  2853. 如果第一个参数为其他,则无第二个参数
  2854. * @returns {array}
  2855. */
  2856. window.addEventListener('message', function (e) { // 监听 message 事件
  2857. // alert(e.data.type);
  2858. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  2859. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  2860. //3是展示全部阶段 2学生 1老师 4专家
  2861. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  2862. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  2863. //3是展示全部阶段 2学生 1老师 4专家
  2864. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  2865. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  2866. //3是展示全部阶段 2学生 1老师 4专家
  2867. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  2868. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  2869. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  2870. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  2871. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  2872. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  2873. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  2874. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  2875. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  2876. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  2877. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  2878. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  2879. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  2880. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  2881. //3是展示全部阶段 2学生 1老师 4专家
  2882. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  2883. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  2884. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  2885. U.MD.D.I.selectUser();
  2886. } else if (e.data.allScreen && e.data.allScreen == "1") {
  2887. var _formel = document.getElementById("study");
  2888. U.UF.F.windowZooming(_formel);
  2889. } else if (e.data.allScreen && e.data.allScreen == "2") {
  2890. var _formel = document.getElementById("studyDetail");
  2891. U.UF.F.windowZooming(_formel);
  2892. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  2893. var _formel = document.getElementById("studyDetail");
  2894. U.UF.F.windowZooming(_formel);
  2895. } else if (e.data.allScreen && e.data.allScreen == "3") {
  2896. var _formel = document.getElementById("studentStudy");
  2897. U.UF.F.windowZooming(_formel);
  2898. } else if (e.data.allScreen && e.data.allScreen == "6") {
  2899. // var _formel = document.getElementById("study");
  2900. //如果最大化了,那么就把他缩小
  2901. // if (_formel.ismaximize) {
  2902. // return;
  2903. // }
  2904. // U.UF.F.windowZooming(_formel);
  2905. // U.UF.F.topWindow(_formel);
  2906. } else if (e.data.allScreen && e.data.allScreen == "4") {
  2907. // var _formel = document.getElementById("studyDetail");
  2908. //如果最大化了,那么就把他缩小
  2909. // if (_formel.ismaximize) {
  2910. // return;
  2911. // }
  2912. // U.UF.F.windowZooming(_formel);
  2913. // U.UF.F.topWindow(_formel);
  2914. } else if (e.data.allScreen && e.data.allScreen == "5") {
  2915. // var _formel = document.getElementById("studentStudy");
  2916. // if (_formel.ismaximize) {
  2917. // return;
  2918. // }
  2919. // U.UF.F.windowZooming(_formel);
  2920. // U.UF.F.topWindow(_formel);
  2921. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  2922. var _formel = document.getElementById("study");
  2923. // if (_formel.ismaximize) {
  2924. // return;
  2925. // }
  2926. // U.UF.F.windowZooming(_formel);
  2927. U.UF.F.topWindow(_formel);
  2928. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  2929. var _formel = document.getElementById("studentIndex");
  2930. U.UF.F.windowZooming(_formel);
  2931. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  2932. var _formel = document.getElementById("studyDetailS");
  2933. U.UF.F.windowZooming(_formel);
  2934. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  2935. var _formel = document.getElementById("studioIndex");
  2936. U.UF.F.windowZooming(_formel);
  2937. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  2938. var _formel = document.getElementById("studyDetailStudio");
  2939. U.UF.F.windowZooming(_formel);
  2940. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  2941. var _formel = document.getElementById("studyDetailStudio");
  2942. U.UF.F.windowZooming(_formel);
  2943. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  2944. var _formel = document.getElementById("studyDetailNT");
  2945. U.UF.F.windowZooming(_formel);
  2946. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  2947. var _formel = document.getElementById("studyDetailS");
  2948. U.UF.F.windowZooming(_formel);
  2949. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  2950. var _formel = document.getElementById("studyDetailS");
  2951. U.UF.F.topWindow(_formel);
  2952. } else if (e.data.tools && e.data.tools == "1") {
  2953. // U.MD.D.I.openApplication("whiteboard")
  2954. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2955. } else if (e.data.tools && e.data.tools == "2") {
  2956. U.MD.D.I.openApplication("note")
  2957. } else if (e.data.tools && e.data.tools == "3") {
  2958. // U.MD.D.I.openApplication("mind")
  2959. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2960. } else if (e.data.tools && e.data.tools == "4") {
  2961. U.MD.D.I.openApplication("investigation")
  2962. } else if (e.data.tools && e.data.tools == "6") {
  2963. // U.MD.D.I.openApplication("doc")
  2964. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2965. } else if (e.data.tools && e.data.tools == "7") {
  2966. // U.MD.D.I.openApplication("mindNetwork")
  2967. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2968. } else if (e.data.tools && e.data.tools == "8") {
  2969. U.MD.D.I.openApplication("library")
  2970. } else if (e.data.tools && e.data.tools == "17") {
  2971. U.MD.D.I.openApplication("stuLibrary")
  2972. } else if (e.data.tools && e.data.tools == "18") {
  2973. U.MD.D.I.openApplication("train")
  2974. } else if (e.data.tools && e.data.tools == "21") {
  2975. U.MD.D.I.openApplication("program")
  2976. } else if (e.data.tools && e.data.tools == "22") {
  2977. U.MD.D.I.openApplication("AIprogram2")
  2978. } else if (e.data.tools && e.data.tools == "23") {
  2979. U.MD.D.I.openApplication("Pythonprogram")
  2980. } else if (e.data.tools && e.data.tools == "24") {
  2981. U.MD.D.I.openApplication("AIprogram")
  2982. } else if (e.data.tools && e.data.tools == "25") {
  2983. U.MD.D.I.openApplication("sys")
  2984. } else if (e.data.tools && e.data.tools == "26") {
  2985. // U.MD.D.I.openApplication("courseDesign")
  2986. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  2987. } else if (e.data.tools && e.data.tools == "31") {
  2988. U.MD.D.I.openApplication("netWorkPanel")
  2989. } else if (e.data.tools && e.data.tools == "32") {
  2990. U.MD.D.I.openApplication("codeEdit")
  2991. } else if (e.data.tools && e.data.tools == "57") {
  2992. U.MD.D.I.openApplication("CocoPi")
  2993. } else if (e.data.tools && e.data.tools == "63") {
  2994. U.MD.D.I.openApplication("Wood")
  2995. } else if (e.data.tools && e.data.tools == "58") {
  2996. U.MD.D.I.openApplication("car")
  2997. } else if (e.data.tools && e.data.tools == "59") {
  2998. U.MD.D.I.openApplication("lineSearch")
  2999. } else if (e.data.tools && e.data.tools == "60") {
  3000. U.MD.D.I.openApplication("deepLearning")
  3001. } else if (e.data.tools && e.data.tools == "61") {
  3002. U.MD.D.I.openApplication("allHistory")
  3003. } else if (e.data.tools && e.data.tools == "28") {
  3004. U.MD.D.I.openApplication("translation")
  3005. } else if (e.data.tools && e.data.tools == "37") {
  3006. U.MD.D.I.openApplication("mohe")
  3007. } else if (e.data.tools && e.data.tools == "38") {
  3008. U.MD.D.I.openApplication("24game")
  3009. } else if (e.data.tools && e.data.tools == "39") {
  3010. U.MD.D.I.openApplication("GeoGebra")
  3011. } else if (e.data.tools && e.data.tools == "43") {
  3012. U.MD.D.I.openApplication("studentEvaluate")
  3013. } else if (e.data.tools && e.data.tools == "44") {
  3014. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3015. } else if (e.data.tools && e.data.tools == "46") {
  3016. U.MD.D.I.openApplication("project")
  3017. } else if (e.data.tools && e.data.tools == "71") {
  3018. U.MD.D.I.openApplication("aigptCourse")
  3019. } else if (e.data.tools && e.data.tools == "1s") {
  3020. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3021. } else if (e.data.tools && e.data.tools == "3s") {
  3022. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3023. } else if (e.data.tools && e.data.tools == "6s") {
  3024. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3025. } else if (e.data.tools && e.data.tools == "1studio") {
  3026. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3027. } else if (e.data.tools && e.data.tools == "3studio") {
  3028. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3029. } else if (e.data.tools && e.data.tools == "6studio") {
  3030. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3031. } else if (e.data.tools && e.data.tools == "3y") {
  3032. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3033. } else if (e.data.tools && e.data.tools == "1y") {
  3034. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3035. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3036. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3037. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3038. U.MD.D.I.openApplication("AIAnalyse")
  3039. } else if (e.data.tools && e.data.tools == "1teacher") {
  3040. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3041. } else if (e.data.tools && e.data.tools == "3teacher") {
  3042. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3043. } else if (e.data.tools && e.data.tools == "7teacher") {
  3044. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3045. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3046. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3047. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3048. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3049. } else if (e.data.tools && e.data.tools == "1E") {
  3050. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3051. } else if (e.data.tools && e.data.tools == "3E") {
  3052. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3053. } else if (e.data.tools && e.data.tools == "57y") {
  3054. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3055. } else if (e.data.tools && e.data.tools == "57u") {
  3056. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3057. } else if (e.data.tools && e.data.tools == "57teacher") {
  3058. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3059. } else if (e.data.tools && e.data.tools == "64") {
  3060. U.MD.D.I.openApplication("AIChat")
  3061. } else if (e.data.tools && e.data.tools == "66") {
  3062. U.MD.D.I.openApplication("formulaEdi")
  3063. } else if (e.data.tools && e.data.tools == "67") {
  3064. U.MD.D.I.openApplication("molStr")
  3065. } else if (e.data.tools && e.data.tools == "68") {
  3066. U.MD.D.I.openApplication("timeAxis")
  3067. } else if (e.data.tools && e.data.tools == "openCourse") {
  3068. let _data = {
  3069. typea: e.data.typea || '',
  3070. typeb: e.data.typeb || '',
  3071. typed: e.data.typed || '',
  3072. }
  3073. U.MD.D.I.openInApplication("index", _data)
  3074. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3075. let _data = {
  3076. classid: e.data.classid || '',
  3077. }
  3078. U.MD.D.I.openInApplication("dataClass", _data)
  3079. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3080. let _data = {
  3081. cid: e.data.cid || '',
  3082. gid: e.data.gid || '',
  3083. }
  3084. U.MD.D.I.openInApplication("opencCscl", _data)
  3085. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3086. U.MD.D.I.openApplication("dataBoardTest")
  3087. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3088. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3089. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3090. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3091. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3092. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3093. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3094. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3095. }else if (e.data.tools && e.data.tools == "loginSz") {
  3096. U.MD.D.I.openInApplication("loginSz")
  3097. }
  3098. });
  3099. U.MD.D.I.selectUser = function () {
  3100. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3101. if (res.value[0].length > 0) {
  3102. US.userInfo = res.value[0][0];
  3103. $(".userName")[0].innerHTML = US.userInfo.username;
  3104. }
  3105. }, [], { "type": "GET", "withCredentials": true });
  3106. }
  3107. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3108. var _userinfo = US.userInfo, //登录用户信息
  3109. _userid = US.userInfo.userid, //登录用户id
  3110. _oid = _userinfo.organizeid,
  3111. _type = US.userInfo.type,
  3112. _org = US.userInfo.org,
  3113. _role = US.userInfo.role,
  3114. _classId = US.userInfo.classid;
  3115. if (_type == 4) {
  3116. tType = 4
  3117. }
  3118. switch (str) {
  3119. case "studyDetailNT": //无终端模式
  3120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3121. setTimeout(() => {
  3122. U.MD.U.L.login();
  3123. }, 2000);
  3124. } else {
  3125. _formdiv = new U.UF.UI.form(
  3126. "课程详情",
  3127. $$("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 }), {
  3128. "id": "studyDetailNT",
  3129. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3130. "onresize": function () { }
  3131. }, {
  3132. closecallback: function () { }
  3133. }, { "style": { "height": "36px" } }).form; //创建窗体
  3134. _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); } }
  3135. break;
  3136. }
  3137. case "studyDetail":
  3138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3139. setTimeout(() => {
  3140. U.MD.U.L.login();
  3141. }, 2000);
  3142. } else {
  3143. _formdiv = new U.UF.UI.form(
  3144. "课程详情",
  3145. $$("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 }), {
  3146. "id": "studyDetail",
  3147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3148. "onresize": function () { }
  3149. }, {
  3150. closecallback: function () { }
  3151. }, { "style": { "height": "36px" } }).form; //创建窗体
  3152. _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); } }
  3153. break;
  3154. }
  3155. case "studyDetailTrain":
  3156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3157. setTimeout(() => {
  3158. U.MD.U.L.login();
  3159. }, 2000);
  3160. } else {
  3161. _formdiv = new U.UF.UI.form(
  3162. "培训详情",
  3163. $$("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 }), {
  3164. "id": "studyDetailTrain",
  3165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3166. "onresize": function () { }
  3167. }, {
  3168. closecallback: function () { }
  3169. }, { "style": { "height": "36px" } }).form; //创建窗体
  3170. _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); } }
  3171. break;
  3172. }
  3173. case "studyDetailS":
  3174. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3175. setTimeout(() => {
  3176. U.MD.U.L.login();
  3177. }, 2000);
  3178. } else {
  3179. _formdiv = new U.UF.UI.form(
  3180. "项目详情",
  3181. $$("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 }), {
  3182. "id": "studyDetailS",
  3183. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3184. "onresize": function () { }
  3185. }, {
  3186. closecallback: function () { }
  3187. }, { "style": { "height": "36px" } }).form; //创建窗体
  3188. _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); } }
  3189. break;
  3190. }
  3191. case "studyDetailStudio":
  3192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3193. setTimeout(() => {
  3194. U.MD.U.L.login();
  3195. }, 2000);
  3196. } else {
  3197. _formdiv = new U.UF.UI.form(
  3198. "工作详情",
  3199. $$("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 }), {
  3200. "id": "studyDetailStudio",
  3201. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3202. "onresize": function () { }
  3203. }, {
  3204. closecallback: function () { }
  3205. }, { "style": { "height": "36px" } }).form; //创建窗体
  3206. _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); } }
  3207. break;
  3208. }
  3209. case "studyDetailS5":
  3210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3211. setTimeout(() => {
  3212. U.MD.U.L.login();
  3213. }, 2000);
  3214. } else {
  3215. _formdiv = new U.UF.UI.form(
  3216. "项目详情",
  3217. $$("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 }), {
  3218. "id": "studyDetailS",
  3219. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3220. "onresize": function () { }
  3221. }, {
  3222. closecallback: function () { }
  3223. }, { "style": { "height": "36px" } }).form; //创建窗体
  3224. _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); } }
  3225. break;
  3226. }
  3227. case "studyDetailGM":
  3228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3229. setTimeout(() => {
  3230. U.MD.U.L.login();
  3231. }, 2000);
  3232. } else {
  3233. _formdiv = new U.UF.UI.form(
  3234. "课程详情",
  3235. $$("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 }), {
  3236. "id": "studyDetail",
  3237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3238. "onresize": function () { }
  3239. }, {
  3240. closecallback: function () { }
  3241. }, { "style": { "height": "36px" } }).form; //创建窗体
  3242. _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); } }
  3243. break;
  3244. }
  3245. case "hanUrl":
  3246. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3247. setTimeout(() => {
  3248. U.MD.U.L.login();
  3249. }, 2000);
  3250. } else {
  3251. _formdiv = new U.UF.UI.form(
  3252. "汉字宫",
  3253. $$("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" }), {
  3254. "id": "hanUrl",
  3255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3256. "onresize": function () { }
  3257. }, {
  3258. closecallback: function () { }
  3259. }, { "style": { "height": "36px" } }).form; //创建窗体
  3260. _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); } }
  3261. break;
  3262. }
  3263. case "index":
  3264. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3265. setTimeout(() => {
  3266. U.MD.U.L.login();
  3267. }, 2000);
  3268. } else {
  3269. _formdiv = new U.UF.UI.form(
  3270. "课程中心",
  3271. $$("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 }), {
  3272. "id": "study",
  3273. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3274. "onresize": function () { }
  3275. }, {
  3276. closecallback: function () { }
  3277. }, { "style": { "height": "36px" } }).form; //创建窗体
  3278. _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); } }
  3279. break;
  3280. }
  3281. case "dataClass":
  3282. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3283. setTimeout(() => {
  3284. U.MD.U.L.login();
  3285. }, 2000);
  3286. } else {
  3287. _formdiv = new U.UF.UI.form(
  3288. "数据报告",
  3289. $$("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 }), {
  3290. "id": "dataClass",
  3291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3292. "onresize": function () { }
  3293. }, {
  3294. closecallback: function () { }
  3295. }, { "style": { "height": "36px" } }).form; //创建窗体
  3296. _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); } }
  3297. break;
  3298. }
  3299. case "opencCscl":
  3300. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3301. setTimeout(() => {
  3302. U.MD.U.L.login();
  3303. }, 2000);
  3304. } else {
  3305. _formdiv = new U.UF.UI.form(
  3306. "协同建构",
  3307. $$("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 }), {
  3308. "id": "futureClass",
  3309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3310. "onresize": function () { }
  3311. }, {
  3312. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3313. }, { "style": { "height": "36px" } }).form; //创建窗体
  3314. _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); } }
  3315. break;
  3316. }
  3317. case "openCourseUpdate":
  3318. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3319. setTimeout(() => {
  3320. U.MD.U.L.login();
  3321. }, 2000);
  3322. } else {
  3323. _formdiv = new U.UF.UI.form(
  3324. "课程管理",
  3325. $$("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 }), {
  3326. "id": "openCourseUpdate",
  3327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3328. "onresize": function () { }
  3329. }, {
  3330. closecallback: function () { }
  3331. }, { "style": { "height": "36px" } }).form; //创建窗体
  3332. break;
  3333. }
  3334. case "openNewCourseUpdate":
  3335. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3336. setTimeout(() => {
  3337. U.MD.U.L.login();
  3338. }, 2000);
  3339. } else {
  3340. _formdiv = new U.UF.UI.form(
  3341. "课程管理",
  3342. $$("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 }), {
  3343. "id": "openCourseUpdate",
  3344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3345. "onresize": function () { }
  3346. }, {
  3347. closecallback: function () { }
  3348. }, { "style": { "height": "36px" } }).form; //创建窗体
  3349. break;
  3350. }
  3351. case "openCourseEUpdate":
  3352. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3353. setTimeout(() => {
  3354. U.MD.U.L.login();
  3355. }, 2000);
  3356. } else {
  3357. _formdiv = new U.UF.UI.form(
  3358. "课程管理",
  3359. $$("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 }), {
  3360. "id": "openCourseUpdate",
  3361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3362. "onresize": function () { }
  3363. }, {
  3364. closecallback: function () { }
  3365. }, { "style": { "height": "36px" } }).form; //创建窗体
  3366. break;
  3367. }
  3368. case "inviteLoginSz":
  3369. _formdiv = new U.UF.UI.form(
  3370. "随机码登录",
  3371. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  3372. "id": "loginSz",
  3373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3374. "onresize": function () { }
  3375. }, {
  3376. closecallback: function () { }
  3377. }, { "style": { "height": "36px" } }).form; //创建窗体
  3378. break;
  3379. case "loginSz":
  3380. _formdiv = new U.UF.UI.form(
  3381. "教师登录",
  3382. $$("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" }), {
  3383. "id": "loginSz",
  3384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3385. "onresize": function () { }
  3386. }, {
  3387. closecallback: function () { }
  3388. }, { "style": { "height": "36px" } }).form; //创建窗体
  3389. break;
  3390. case "teacher":
  3391. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3392. setTimeout(() => {
  3393. U.MD.U.L.login();
  3394. }, 2000);
  3395. } else {
  3396. _formdiv = new U.UF.UI.form(
  3397. "教师管理",
  3398. $$("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 }), {
  3399. "id": "teacher",
  3400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3401. "onresize": function () { }
  3402. }, {
  3403. closecallback: function () { }
  3404. }, { "style": { "height": "36px" } }).form; //创建窗体
  3405. break;
  3406. }
  3407. case "dataBoardSZArea":
  3408. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3409. setTimeout(() => {
  3410. U.MD.U.L.login();
  3411. }, 2000);
  3412. } else {
  3413. _formdiv = new U.UF.UI.form(
  3414. "综合数据看板",
  3415. $$("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 }), {
  3416. "id": "dataBoardSZArea",
  3417. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3418. "onresize": function () { }
  3419. }, {
  3420. closecallback: function () { }
  3421. }, { "style": { "height": "36px" } }).form; //创建窗体
  3422. break;
  3423. }
  3424. case "dataBoardSZCity":
  3425. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3426. setTimeout(() => {
  3427. U.MD.U.L.login();
  3428. }, 2000);
  3429. } else {
  3430. _formdiv = new U.UF.UI.form(
  3431. "综合数据看板",
  3432. $$("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 }), {
  3433. "id": "dataBoardSZCity",
  3434. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3435. "onresize": function () { }
  3436. }, {
  3437. closecallback: function () { }
  3438. }, { "style": { "height": "36px" } }).form; //创建窗体
  3439. break;
  3440. }
  3441. }
  3442. }
  3443. U.MD.D.I.openApplication = function (str, obj, info) {
  3444. obj = obj || {};
  3445. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3446. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3447. _userinfo = US.userInfo, //登录用户信息
  3448. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3449. _oid = obj.organizeid || _userinfo.organizeid,
  3450. _type = US.userInfo.type,
  3451. _org = US.userInfo.org,
  3452. _role = US.userInfo.role,
  3453. _classId = US.userInfo.classid,
  3454. _TscreenType = 1
  3455. _screenType = 2,
  3456. _SscreenType = 3;
  3457. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3458. return;
  3459. }
  3460. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3461. switch (str) {
  3462. case "studnetProject": //好友打开
  3463. _formdiv = new U.UF.UI.form(
  3464. "我的项目",
  3465. $$("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 }), {
  3466. "id": "studnetProject",
  3467. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3468. "onresize": function () { }
  3469. }, {
  3470. closecallback: function () { }
  3471. }, { "style": { "height": "36px" } }).form; //创建窗体
  3472. _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); } }
  3473. break;
  3474. case "studentEvaluate": //好友打开
  3475. _formdiv = new U.UF.UI.form(
  3476. "我的评价",
  3477. $$("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 }), {
  3478. "id": "studentEvaluate",
  3479. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3480. "onresize": function () { }
  3481. }, {
  3482. closecallback: function () { }
  3483. }, { "style": { "height": "36px" } }).form; //创建窗体
  3484. _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); } }
  3485. break;
  3486. case "my":
  3487. _formdiv = new U.UF.UI.form(
  3488. "我的资料",
  3489. $$("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 }), {
  3490. "id": "my",
  3491. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3492. "onresize": function () { }
  3493. }, {
  3494. closecallback: function () { }
  3495. }, { "style": { "height": "36px" } }).form; //创建窗体
  3496. _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); } }
  3497. break;
  3498. case "program":
  3499. _formdiv = new U.UF.UI.form(
  3500. "编程平台",
  3501. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3502. "id": "program",
  3503. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3504. "onresize": function () { }
  3505. }, {
  3506. closecallback: function () { }
  3507. }, { "style": { "height": "36px" } }).form; //创建窗体
  3508. _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); } }
  3509. break;
  3510. case "library":
  3511. _formdiv = new U.UF.UI.form(
  3512. "素材库",
  3513. $$("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 }), {
  3514. "id": "library",
  3515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3516. "onresize": function () { }
  3517. }, {
  3518. closecallback: function () { }
  3519. }, { "style": { "height": "36px" } }).form; //创建窗体
  3520. _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); } }
  3521. break;
  3522. case "whiteboard":
  3523. _formdiv = new U.UF.UI.form(
  3524. "电子白板",
  3525. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3526. "id": "whiteboard",
  3527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3528. "onresize": function () { }
  3529. }, {
  3530. closecallback: function () { }
  3531. }, { "style": { "height": "36px" } }).form; //创建窗体
  3532. _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); } }
  3533. break;
  3534. case "investigation":
  3535. _formdiv = new U.UF.UI.form(
  3536. "问卷调查",
  3537. $$("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 }), {
  3538. "id": "investigation",
  3539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3540. "onresize": function () { }
  3541. }, {
  3542. closecallback: function () { }
  3543. }, { "style": { "height": "36px" } }).form; //创建窗体
  3544. _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); } }
  3545. break;
  3546. case "note":
  3547. _formdiv = new U.UF.UI.form(
  3548. "便签分类",
  3549. $$("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 }), {
  3550. "id": "note",
  3551. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3552. "onresize": function () { }
  3553. }, {
  3554. closecallback: function () { }
  3555. }, { "style": { "height": "36px" } }).form; //创建窗体
  3556. _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); } }
  3557. break;
  3558. // case "score":
  3559. // _formdiv = new U.UF.UI.form(
  3560. // "量规评分",
  3561. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3562. // "id": "score",
  3563. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3564. // "onresize": function() {}
  3565. // }, {
  3566. // closecallback: function() {}
  3567. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3568. // _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); } }
  3569. // break;
  3570. case "mind":
  3571. _formdiv = new U.UF.UI.form(
  3572. "思维导图",
  3573. $$("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"
  3574. "id": "mind",
  3575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3576. "onresize": function () { }
  3577. }, {
  3578. closecallback: function () { }
  3579. }, { "style": { "height": "36px" } }).form; //创建窗体
  3580. _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); } }
  3581. break;
  3582. case "doc":
  3583. // U.MD.D.I.isRoom();
  3584. _formdiv = new U.UF.UI.form(
  3585. "协同文档",
  3586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  3587. "id": "doc",
  3588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3589. "onresize": function () { }
  3590. }, {
  3591. closecallback: function () { }
  3592. }, { "style": { "height": "36px" } }).form; //创建窗体
  3593. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3594. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3595. // })
  3596. _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); } }
  3597. break;
  3598. case "studentStudy":
  3599. _formdiv = new U.UF.UI.form(
  3600. "课程中心",
  3601. $$("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
  3602. "id": "studentStudy",
  3603. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3604. "onresize": function () { }
  3605. }, {
  3606. closecallback: function () { }
  3607. }, { "style": { "height": "36px" } }).form; //创建窗体
  3608. _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); } }
  3609. break;
  3610. case "train": //好友打开
  3611. _formdiv = new U.UF.UI.form(
  3612. "训练平台",
  3613. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3614. "id": "train",
  3615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3616. "onresize": function () { }
  3617. }, {
  3618. closecallback: function () { }
  3619. }, { "style": { "height": "36px" } }).form; //创建窗体
  3620. _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); } }
  3621. break;
  3622. case "mindNetwork": //好友打开
  3623. _formdiv = new U.UF.UI.form(
  3624. "思维网格",
  3625. $$("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 }), {
  3626. "id": "mindNetwork",
  3627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3628. "onresize": function () { }
  3629. }, {
  3630. closecallback: function () { }
  3631. }, { "style": { "height": "36px" } }).form; //创建窗体
  3632. _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); } }
  3633. break;
  3634. case "studentClassRoom": //好友打开
  3635. _formdiv = new U.UF.UI.form(
  3636. "实时课堂",
  3637. $$("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 }), {
  3638. "id": "studentClassRoom",
  3639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3640. "onresize": function () { }
  3641. }, {
  3642. closecallback: function () { }
  3643. }, { "style": { "height": "36px" } }).form; //创建窗体
  3644. _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); } }
  3645. setTimeout(() => {
  3646. U.UF.F.windowZooming(_formdiv)
  3647. }, 0);
  3648. break;
  3649. }
  3650. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3651. switch (str) {
  3652. case "studnetProject": //好友打开
  3653. _formdiv = new U.UF.UI.form(
  3654. "我的项目",
  3655. $$("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 }), {
  3656. "id": "studnetProject",
  3657. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3658. "onresize": function () { }
  3659. }, {
  3660. closecallback: function () { }
  3661. }, { "style": { "height": "36px" } }).form; //创建窗体
  3662. _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); } }
  3663. break;
  3664. case "studentEvaluate": //好友打开
  3665. _formdiv = new U.UF.UI.form(
  3666. "我的评价",
  3667. $$("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 }), {
  3668. "id": "studentEvaluate",
  3669. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3670. "onresize": function () { }
  3671. }, {
  3672. closecallback: function () { }
  3673. }, { "style": { "height": "36px" } }).form; //创建窗体
  3674. _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); } }
  3675. break;
  3676. case "my":
  3677. _formdiv = new U.UF.UI.form(
  3678. "我的资料",
  3679. $$("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 }), {
  3680. "id": "my",
  3681. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3682. "onresize": function () { }
  3683. }, {
  3684. closecallback: function () { }
  3685. }, { "style": { "height": "36px" } }).form; //创建窗体
  3686. _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); } }
  3687. break;
  3688. case "program":
  3689. _formdiv = new U.UF.UI.form(
  3690. "编程平台",
  3691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3692. "id": "program",
  3693. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3694. "onresize": function () { }
  3695. }, {
  3696. closecallback: function () { }
  3697. }, { "style": { "height": "36px" } }).form; //创建窗体
  3698. _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); } }
  3699. break;
  3700. case "library":
  3701. _formdiv = new U.UF.UI.form(
  3702. "素材库",
  3703. $$("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 }), {
  3704. "id": "library",
  3705. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3706. "onresize": function () { }
  3707. }, {
  3708. closecallback: function () { }
  3709. }, { "style": { "height": "36px" } }).form; //创建窗体
  3710. _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); } }
  3711. break;
  3712. case "whiteboard":
  3713. _formdiv = new U.UF.UI.form(
  3714. "电子白板",
  3715. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3716. "id": "whiteboard",
  3717. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3718. "onresize": function () { }
  3719. }, {
  3720. closecallback: function () { }
  3721. }, { "style": { "height": "36px" } }).form; //创建窗体
  3722. _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); } }
  3723. break;
  3724. case "investigation":
  3725. _formdiv = new U.UF.UI.form(
  3726. "问卷调查",
  3727. $$("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 }), {
  3728. "id": "investigation",
  3729. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3730. "onresize": function () { }
  3731. }, {
  3732. closecallback: function () { }
  3733. }, { "style": { "height": "36px" } }).form; //创建窗体
  3734. _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); } }
  3735. break;
  3736. case "note":
  3737. _formdiv = new U.UF.UI.form(
  3738. "便签分类",
  3739. $$("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 }), {
  3740. "id": "note",
  3741. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  3742. "onresize": function () { }
  3743. }, {
  3744. closecallback: function () { }
  3745. }, { "style": { "height": "36px" } }).form; //创建窗体
  3746. _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); } }
  3747. break;
  3748. // case "score":
  3749. // _formdiv = new U.UF.UI.form(
  3750. // "量规评分",
  3751. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  3752. // "id": "score",
  3753. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3754. // "onresize": function() {}
  3755. // }, {
  3756. // closecallback: function() {}
  3757. // }, { "style": { "height": "36px" } }).form; //创建窗体
  3758. // _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); } }
  3759. // break;
  3760. case "mind":
  3761. _formdiv = new U.UF.UI.form(
  3762. "思维导图",
  3763. $$("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"
  3764. "id": "mind",
  3765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3766. "onresize": function () { }
  3767. }, {
  3768. closecallback: function () { }
  3769. }, { "style": { "height": "36px" } }).form; //创建窗体
  3770. _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); } }
  3771. break;
  3772. case "doc":
  3773. // U.MD.D.I.isRoom();
  3774. _formdiv = new U.UF.UI.form(
  3775. "协同文档",
  3776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  3777. "id": "doc",
  3778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3779. "onresize": function () { }
  3780. }, {
  3781. closecallback: function () { }
  3782. }, { "style": { "height": "36px" } }).form; //创建窗体
  3783. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  3784. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  3785. })
  3786. _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); } }
  3787. break;
  3788. case "train": //好友打开
  3789. _formdiv = new U.UF.UI.form(
  3790. "训练平台",
  3791. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  3792. "id": "train",
  3793. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3794. "onresize": function () { }
  3795. }, {
  3796. closecallback: function () { }
  3797. }, { "style": { "height": "36px" } }).form; //创建窗体
  3798. _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); } }
  3799. break;
  3800. case "studentStudy":
  3801. _formdiv = new U.UF.UI.form(
  3802. "课程中心",
  3803. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  3804. "id": "studentStudy",
  3805. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3806. "onresize": function () { }
  3807. }, {
  3808. closecallback: function () { }
  3809. }, { "style": { "height": "36px" } }).form; //创建窗体
  3810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  3811. break;
  3812. case "mindNetwork": //好友打开
  3813. _formdiv = new U.UF.UI.form(
  3814. "思维网格",
  3815. $$("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 }), {
  3816. "id": "mindNetwork",
  3817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3818. "onresize": function () { }
  3819. }, {
  3820. closecallback: function () { }
  3821. }, { "style": { "height": "36px" } }).form; //创建窗体
  3822. _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); } }
  3823. break;
  3824. case "studentClassRoom": //好友打开
  3825. _formdiv = new U.UF.UI.form(
  3826. "实时课堂",
  3827. $$("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 }), {
  3828. "id": "studentClassRoom",
  3829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3830. "onresize": function () { }
  3831. }, {
  3832. closecallback: function () { }
  3833. }, { "style": { "height": "36px" } }).form; //创建窗体
  3834. _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); } }
  3835. setTimeout(() => {
  3836. U.UF.F.windowZooming(_formdiv)
  3837. }, 0);
  3838. break;
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  3841. //选择应用处理
  3842. switch (str) {
  3843. case "project": //好友打开
  3844. _formdiv = new U.UF.UI.form(
  3845. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  3846. $$("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 }), {
  3847. "id": "project",
  3848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3849. "onresize": function () { }
  3850. }, {
  3851. closecallback: function () { }
  3852. }, { "style": { "height": "36px" } }).form; //创建窗体
  3853. _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); } }
  3854. break;
  3855. case "student":
  3856. _formdiv = new U.UF.UI.form(
  3857. "学生管理",
  3858. $$("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 }), {
  3859. "id": "student",
  3860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3861. "onresize": function () { }
  3862. }, {
  3863. closecallback: function () { }
  3864. }, { "style": { "height": "36px" } }).form; //创建窗体
  3865. _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); } }
  3866. break;
  3867. case "evaluate":
  3868. _formdiv = new U.UF.UI.form(
  3869. "学生评价",
  3870. $$("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 }), {
  3871. "id": "evaluate",
  3872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3873. "onresize": function () { }
  3874. }, {
  3875. closecallback: function () { }
  3876. }, { "style": { "height": "36px" } }).form; //创建窗体
  3877. _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); } }
  3878. break;
  3879. case "sys":
  3880. _formdiv = new U.UF.UI.form(
  3881. "目标管理",
  3882. $$("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 }), {
  3883. "id": "sys",
  3884. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3885. "onresize": function () { }
  3886. }, {
  3887. closecallback: function () { }
  3888. }, { "style": { "height": "36px" } }).form; //创建窗体
  3889. _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); } }
  3890. break;
  3891. case "courseDesign":
  3892. _formdiv = new U.UF.UI.form(
  3893. "项目设计",
  3894. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  3895. "id": "courseDesign",
  3896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3897. "onresize": function () { }
  3898. }, {
  3899. closecallback: function () { }
  3900. }, { "style": { "height": "36px" } }).form; //创建窗体
  3901. _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); } }
  3902. break;
  3903. case "program":
  3904. _formdiv = new U.UF.UI.form(
  3905. "编程平台",
  3906. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  3907. "id": "program",
  3908. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  3909. "onresize": function () { }
  3910. }, {
  3911. closecallback: function () { }
  3912. }, { "style": { "height": "36px" } }).form; //创建窗体
  3913. _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); } }
  3914. break;
  3915. case "class":
  3916. _formdiv = new U.UF.UI.form(
  3917. "班级管理",
  3918. $$("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 }), {
  3919. "id": "class",
  3920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3921. "onresize": function () { }
  3922. }, {
  3923. closecallback: function () { }
  3924. }, { "style": { "height": "36px" } }).form; //创建窗体
  3925. _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); } }
  3926. break;
  3927. case "Grade":
  3928. _formdiv = new U.UF.UI.form(
  3929. "年级管理",
  3930. $$("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 }), {
  3931. "id": "Grade",
  3932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3933. "onresize": function () { }
  3934. }, {
  3935. closecallback: function () { }
  3936. }, { "style": { "height": "36px" } }).form; //创建窗体
  3937. _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); } }
  3938. break;
  3939. case "teacherOffice":
  3940. _formdiv = new U.UF.UI.form(
  3941. "教研室",
  3942. $$("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 }), {
  3943. "id": "teacherOffice",
  3944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3945. "onresize": function () { }
  3946. }, {
  3947. closecallback: function () { }
  3948. }, { "style": { "height": "36px" } }).form; //创建窗体
  3949. _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); } }
  3950. break;
  3951. case "my":
  3952. _formdiv = new U.UF.UI.form(
  3953. "我的资料",
  3954. $$("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 }), {
  3955. "id": "my",
  3956. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  3957. "onresize": function () { }
  3958. }, {
  3959. closecallback: function () { }
  3960. }, { "style": { "height": "36px" } }).form; //创建窗体
  3961. _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); } }
  3962. break;
  3963. case "notice":
  3964. _formdiv = new U.UF.UI.form(
  3965. "通知公告",
  3966. $$("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 }), {
  3967. "id": "notice",
  3968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3969. "onresize": function () { }
  3970. }, {
  3971. closecallback: function () { }
  3972. }, { "style": { "height": "36px" } }).form; //创建窗体
  3973. _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); } }
  3974. break;
  3975. case "library":
  3976. _formdiv = new U.UF.UI.form(
  3977. "素材库",
  3978. $$("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 }), {
  3979. "id": "library",
  3980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3981. "onresize": function () { }
  3982. }, {
  3983. closecallback: function () { }
  3984. }, { "style": { "height": "36px" } }).form; //创建窗体
  3985. _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); } }
  3986. break;
  3987. case "whiteboard":
  3988. _formdiv = new U.UF.UI.form(
  3989. "电子白板",
  3990. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  3991. "id": "whiteboard",
  3992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3993. "onresize": function () { }
  3994. }, {
  3995. closecallback: function () { }
  3996. }, { "style": { "height": "36px" } }).form; //创建窗体
  3997. _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); } }
  3998. break;
  3999. case "investigation":
  4000. _formdiv = new U.UF.UI.form(
  4001. "问卷调查",
  4002. $$("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 }), {
  4003. "id": "investigation",
  4004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4005. "onresize": function () { }
  4006. }, {
  4007. closecallback: function () { }
  4008. }, { "style": { "height": "36px" } }).form; //创建窗体
  4009. _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); } }
  4010. break;
  4011. case "note":
  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-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  4015. "id": "note",
  4016. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4022. break;
  4023. // case "score":
  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 + "" }), {
  4027. // "id": "score",
  4028. // "style": { "width": "90%", "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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4034. // break;
  4035. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4039. "id": "mind",
  4040. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4046. break;
  4047. case "doc":
  4048. // U.MD.D.I.isRoom();
  4049. _formdiv = new U.UF.UI.form(
  4050. "协同文档",
  4051. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4052. "id": "doc",
  4053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4054. "onresize": function () { }
  4055. }, {
  4056. closecallback: function () { }
  4057. }, { "style": { "height": "36px" } }).form; //创建窗体
  4058. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4059. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4060. })
  4061. _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); } }
  4062. break;
  4063. case "study":
  4064. _formdiv = new U.UF.UI.form(
  4065. "课程中心",
  4066. $$("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
  4067. "id": "study",
  4068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4069. "onresize": function () { }
  4070. }, {
  4071. closecallback: function () { }
  4072. }, { "style": { "height": "36px" } }).form; //创建窗体
  4073. _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); } }
  4074. break;
  4075. case "mindNetwork": //好友打开
  4076. _formdiv = new U.UF.UI.form(
  4077. "思维网格",
  4078. $$("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 }), {
  4079. "id": "mindNetwork",
  4080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4081. "onresize": function () { }
  4082. }, {
  4083. closecallback: function () { }
  4084. }, { "style": { "height": "36px" } }).form; //创建窗体
  4085. _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); } }
  4086. break;
  4087. case "train": //好友打开
  4088. _formdiv = new U.UF.UI.form(
  4089. "训练平台",
  4090. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4091. "id": "mindNetwork",
  4092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4093. "onresize": function () { }
  4094. }, {
  4095. closecallback: function () { }
  4096. }, { "style": { "height": "36px" } }).form; //创建窗体
  4097. _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); } }
  4098. break;
  4099. case "teacherClassRoom": //好友打开
  4100. _formdiv = new U.UF.UI.form(
  4101. "实时课堂",
  4102. $$("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 }), {
  4103. "id": "teacherClassRoom",
  4104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4105. "onresize": function () { }
  4106. }, {
  4107. closecallback: function () { }
  4108. }, { "style": { "height": "36px" } }).form; //创建窗体
  4109. _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); } }
  4110. setTimeout(() => {
  4111. U.UF.F.windowZooming(_formdiv)
  4112. }, 0);
  4113. break;
  4114. }
  4115. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4116. switch (str) {
  4117. case "project": //好友打开
  4118. _formdiv = new U.UF.UI.form(
  4119. "课程管理",
  4120. $$("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 }), {
  4121. "id": "project",
  4122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4123. "onresize": function () { }
  4124. }, {
  4125. closecallback: function () { }
  4126. }, { "style": { "height": "36px" } }).form; //创建窗体
  4127. _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); } }
  4128. break;
  4129. case "evaluate":
  4130. _formdiv = new U.UF.UI.form(
  4131. "学生评价",
  4132. $$("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 }), {
  4133. "id": "evaluate",
  4134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4135. "onresize": function () { }
  4136. }, {
  4137. closecallback: function () { }
  4138. }, { "style": { "height": "36px" } }).form; //创建窗体
  4139. _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); } }
  4140. break;
  4141. case "notice":
  4142. _formdiv = new U.UF.UI.form(
  4143. "通知公告",
  4144. $$("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 }), {
  4145. "id": "notice",
  4146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4147. "onresize": function () { }
  4148. }, {
  4149. closecallback: function () { }
  4150. }, { "style": { "height": "36px" } }).form; //创建窗体
  4151. _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); } }
  4152. break;
  4153. case "stuLibrary":
  4154. _formdiv = new U.UF.UI.form(
  4155. "学习资料",
  4156. $$("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 }), {
  4157. "id": "stuLibrary",
  4158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4159. "onresize": function () { }
  4160. }, {
  4161. closecallback: function () { }
  4162. }, { "style": { "height": "36px" } }).form; //创建窗体
  4163. _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); } }
  4164. break;
  4165. case "program":
  4166. _formdiv = new U.UF.UI.form(
  4167. "编程平台",
  4168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4169. "id": "program",
  4170. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4171. "onresize": function () { }
  4172. }, {
  4173. closecallback: function () { }
  4174. }, { "style": { "height": "36px" } }).form; //创建窗体
  4175. _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); } }
  4176. break;
  4177. case "whiteboard":
  4178. _formdiv = new U.UF.UI.form(
  4179. "电子白板",
  4180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://iwb.cocorobo.cn/" }), {
  4181. "id": "whiteboard",
  4182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4183. "onresize": function () { }
  4184. }, {
  4185. closecallback: function () { }
  4186. }, { "style": { "height": "36px" } }).form; //创建窗体
  4187. _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); } }
  4188. break;
  4189. case "investigation":
  4190. _formdiv = new U.UF.UI.form(
  4191. "问卷调查",
  4192. $$("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 }), {
  4193. "id": "investigation",
  4194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4195. "onresize": function () { }
  4196. }, {
  4197. closecallback: function () { }
  4198. }, { "style": { "height": "36px" } }).form; //创建窗体
  4199. _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); } }
  4200. break;
  4201. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  4205. "id": "mind",
  4206. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4212. break;
  4213. case "doc":
  4214. // U.MD.D.I.isRoom();
  4215. _formdiv = new U.UF.UI.form(
  4216. "协同文档",
  4217. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4218. "id": "doc",
  4219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4220. "onresize": function () { }
  4221. }, {
  4222. closecallback: function () { }
  4223. }, { "style": { "height": "36px" } }).form; //创建窗体
  4224. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4225. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4226. })
  4227. _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); } }
  4228. break;
  4229. case "study":
  4230. _formdiv = new U.UF.UI.form(
  4231. "课程中心",
  4232. $$("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
  4233. "id": "study",
  4234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4235. "onresize": function () { }
  4236. }, {
  4237. closecallback: function () { }
  4238. }, { "style": { "height": "36px" } }).form; //创建窗体
  4239. _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); } }
  4240. break;
  4241. case "mindNetwork": //好友打开
  4242. _formdiv = new U.UF.UI.form(
  4243. "思维网格",
  4244. $$("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 }), {
  4245. "id": "mindNetwork",
  4246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4247. "onresize": function () { }
  4248. }, {
  4249. closecallback: function () { }
  4250. }, { "style": { "height": "36px" } }).form; //创建窗体
  4251. _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); } }
  4252. break;
  4253. case "train": //好友打开
  4254. _formdiv = new U.UF.UI.form(
  4255. "训练平台",
  4256. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4257. "id": "train",
  4258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4259. "onresize": function () { }
  4260. }, {
  4261. closecallback: function () { }
  4262. }, { "style": { "height": "36px" } }).form; //创建窗体
  4263. _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); } }
  4264. break;
  4265. case "sys":
  4266. _formdiv = new U.UF.UI.form(
  4267. "目标管理",
  4268. $$("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 }), {
  4269. "id": "sys",
  4270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4271. "onresize": function () { }
  4272. }, {
  4273. closecallback: function () { }
  4274. }, { "style": { "height": "36px" } }).form; //创建窗体
  4275. _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); } }
  4276. break;
  4277. case "courseDesign":
  4278. _formdiv = new U.UF.UI.form(
  4279. "项目设计",
  4280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4281. "id": "courseDesign",
  4282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4283. "onresize": function () { }
  4284. }, {
  4285. closecallback: function () { }
  4286. }, { "style": { "height": "36px" } }).form; //创建窗体
  4287. _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); } }
  4288. break;
  4289. }
  4290. } else if (!_type) {
  4291. switch (str) {
  4292. case "my":
  4293. _formdiv = new U.UF.UI.form(
  4294. "我的资料",
  4295. $$("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 }), {
  4296. "id": "my",
  4297. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4298. "onresize": function () { }
  4299. }, {
  4300. closecallback: function () { }
  4301. }, { "style": { "height": "36px" } }).form; //创建窗体
  4302. _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); } }
  4303. break;
  4304. }
  4305. }
  4306. switch (str) {
  4307. // AIprogram2 AI体验 aihub.cocorobo.cn
  4308. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4309. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4310. case "formulaEdi": //公式编辑
  4311. _formdiv = new U.UF.UI.form(
  4312. "公式编辑",
  4313. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4314. "id": "formulaEdi",
  4315. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4316. "onresize": function () { }
  4317. }, {
  4318. closecallback: function () { }
  4319. }, { "style": { "height": "36px" } }).form; //创建窗体
  4320. _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); } }
  4321. break;
  4322. case "molStr": //分子结构
  4323. _formdiv = new U.UF.UI.form(
  4324. "分子结构",
  4325. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4326. "id": "molStr",
  4327. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4328. "onresize": function () { }
  4329. }, {
  4330. closecallback: function () { }
  4331. }, { "style": { "height": "36px" } }).form; //创建窗体
  4332. _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); } }
  4333. break;
  4334. case "timeAxis": //时间轴
  4335. _formdiv = new U.UF.UI.form(
  4336. "时间轴",
  4337. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4338. "id": "timeAxis",
  4339. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4340. "onresize": function () { }
  4341. }, {
  4342. closecallback: function () { }
  4343. }, { "style": { "height": "36px" } }).form; //创建窗体
  4344. _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); } }
  4345. break;
  4346. case "AIprogram2": //AI体验
  4347. _formdiv = new U.UF.UI.form(
  4348. "AI体验",
  4349. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4350. "id": "AIprogram2",
  4351. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4352. "onresize": function () { }
  4353. }, {
  4354. closecallback: function () { }
  4355. }, { "style": { "height": "36px" } }).form; //创建窗体
  4356. _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); } }
  4357. break;
  4358. case "Pythonprogram": //python编程
  4359. _formdiv = new U.UF.UI.form(
  4360. "Python编程",
  4361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4362. "id": "Pythonprogram",
  4363. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4364. "onresize": function () { }
  4365. }, {
  4366. closecallback: function () { }
  4367. }, { "style": { "height": "36px" } }).form; //创建窗体
  4368. _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); } }
  4369. break;
  4370. case "AIprogram": //ai编程
  4371. _formdiv = new U.UF.UI.form(
  4372. "AI编程平台",
  4373. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4374. "id": "AIprogram",
  4375. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4376. "onresize": function () { }
  4377. }, {
  4378. closecallback: function () { }
  4379. }, { "style": { "height": "36px" } }).form; //创建窗体
  4380. _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); } }
  4381. break;
  4382. case "CocoPi": //CocoPi
  4383. _formdiv = new U.UF.UI.form(
  4384. "CocoPi",
  4385. $$("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" }), {
  4386. "id": "CocoPi",
  4387. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4388. "onresize": function () { }
  4389. }, {
  4390. closecallback: function () { }
  4391. }, { "style": { "height": "36px" } }).form; //创建窗体
  4392. _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); } }
  4393. break;
  4394. case "Wood": //Wood
  4395. _formdiv = new U.UF.UI.form(
  4396. "海龟编程",
  4397. $$("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/" }), {
  4398. "id": "Wood",
  4399. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4400. "onresize": function () { }
  4401. }, {
  4402. closecallback: function () { }
  4403. }, { "style": { "height": "36px" } }).form; //创建窗体
  4404. _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); } }
  4405. break;
  4406. case "car": //模拟驾驶
  4407. _formdiv = new U.UF.UI.form(
  4408. "模拟驾驶",
  4409. $$("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/" }), {
  4410. "id": "car",
  4411. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4412. "onresize": function () { }
  4413. }, {
  4414. closecallback: function () { }
  4415. }, { "style": { "height": "36px" } }).form; //创建窗体
  4416. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4417. break;
  4418. case "lineSearch": //路径搜索
  4419. _formdiv = new U.UF.UI.form(
  4420. "路径搜索",
  4421. $$("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/" }), {
  4422. "id": "lineSearch",
  4423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4424. "onresize": function () { }
  4425. }, {
  4426. closecallback: function () { }
  4427. }, { "style": { "height": "36px" } }).form; //创建窗体
  4428. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4429. break;
  4430. case "deepLearning": //深度学习
  4431. _formdiv = new U.UF.UI.form(
  4432. "深度学习",
  4433. $$("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/#" }), {
  4434. "id": "deepLearning",
  4435. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4441. break;
  4442. case "allHistory": //深度学习
  4443. _formdiv = new U.UF.UI.form(
  4444. "全历史",
  4445. $$("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/" }), {
  4446. "id": "allHistory",
  4447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4448. "onresize": function () { }
  4449. }, {
  4450. closecallback: function () { }
  4451. }, { "style": { "height": "36px" } }).form; //创建窗体
  4452. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4453. break;
  4454. case "chatPDF": //ai编程
  4455. _formdiv = new U.UF.UI.form(
  4456. "chatPDF",
  4457. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  4458. "id": "chatPDF",
  4459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4460. "onresize": function () { }
  4461. }, {
  4462. closecallback: function () { }
  4463. }, { "style": { "height": "36px" } }).form; //创建窗体
  4464. _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); } }
  4465. break;
  4466. case "resources": //国家教育
  4467. _formdiv = new U.UF.UI.form(
  4468. "国家教育",
  4469. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  4470. "id": "resources",
  4471. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4472. "onresize": function () { }
  4473. }, {
  4474. closecallback: function () { }
  4475. }, { "style": { "height": "36px" } }).form; //创建窗体
  4476. _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); } }
  4477. break;
  4478. case "codeEdit": //源码编辑
  4479. _formdiv = new U.UF.UI.form(
  4480. "源码编辑",
  4481. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  4482. "id": "codeEdit",
  4483. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4484. "onresize": function () { }
  4485. }, {
  4486. closecallback: function () { }
  4487. }, { "style": { "height": "36px" } }).form; //创建窗体
  4488. _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); } }
  4489. break; //
  4490. case "MindMap": //MindMap
  4491. _formdiv = new U.UF.UI.form(
  4492. "MindMap",
  4493. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  4494. "id": "MindMap",
  4495. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4496. "onresize": function () { }
  4497. }, {
  4498. closecallback: function () { }
  4499. }, { "style": { "height": "36px" } }).form; //创建窗体
  4500. _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); } }
  4501. break;
  4502. case "netWorkPanel": //netWorkPanel
  4503. _formdiv = new U.UF.UI.form(
  4504. "netWorkPanel",
  4505. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  4506. "id": "netWorkPanel",
  4507. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4508. "onresize": function () { }
  4509. }, {
  4510. closecallback: function () { }
  4511. }, { "style": { "height": "36px" } }).form; //创建窗体
  4512. _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); } }
  4513. break;
  4514. case "GeoGebra": //GeoGebra
  4515. _formdiv = new U.UF.UI.form(
  4516. "GeoGebra",
  4517. $$("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" }), {
  4518. "id": "GeoGebra",
  4519. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4520. "onresize": function () { }
  4521. }, {
  4522. closecallback: function () { }
  4523. }, { "style": { "height": "36px" } }).form; //创建窗体
  4524. _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); } }
  4525. break;
  4526. case "translation": //翻译
  4527. _formdiv = new U.UF.UI.form(
  4528. "翻译",
  4529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  4530. "id": "translation",
  4531. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  4532. "onresize": function () { }
  4533. }, {
  4534. closecallback: function () { }
  4535. }, { "style": { "height": "36px" } }).form; //创建窗体
  4536. _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); } }
  4537. break;
  4538. case "mohe": //魔盒
  4539. _formdiv = new U.UF.UI.form(
  4540. "魔盒识字",
  4541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  4542. "id": "mohe",
  4543. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4544. "onresize": function () { }
  4545. }, {
  4546. closecallback: function () { }
  4547. }, { "style": { "height": "36px" } }).form; //创建窗体
  4548. _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); } }
  4549. break;
  4550. case "24game": //24点
  4551. _formdiv = new U.UF.UI.form(
  4552. "24点",
  4553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  4554. "id": "24game",
  4555. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  4556. "onresize": function () { }
  4557. }, {
  4558. closecallback: function () { }
  4559. }, { "style": { "height": "36px" } }).form; //创建窗体
  4560. _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); } }
  4561. break;
  4562. case "case":
  4563. _formdiv = new U.UF.UI.form(
  4564. "课程进展",
  4565. $$("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 }), {
  4566. "id": "case",
  4567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4568. "onresize": function () { }
  4569. }, {
  4570. closecallback: function () { }
  4571. }, { "style": { "height": "36px" } }).form; //创建窗体
  4572. _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); } }
  4573. break;
  4574. case "snf":
  4575. _formdiv = new U.UF.UI.form(
  4576. "赛诺梵",
  4577. $$("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" }), {
  4578. "id": "snf",
  4579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4580. "onresize": function () { }
  4581. }, {
  4582. closecallback: function () { }
  4583. }, { "style": { "height": "36px" } }).form; //创建窗体
  4584. _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); } }
  4585. break;
  4586. case "hanFamily":
  4587. _formdiv = new U.UF.UI.form(
  4588. "汉字家族",
  4589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  4590. "id": "hanFamily",
  4591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4592. "onresize": function () { }
  4593. }, {
  4594. closecallback: function () { }
  4595. }, { "style": { "height": "36px" } }).form; //创建窗体
  4596. _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); } }
  4597. break;
  4598. case "hanClassics":
  4599. _formdiv = new U.UF.UI.form(
  4600. "国学经典",
  4601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  4602. "id": "hanClassics",
  4603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4604. "onresize": function () { }
  4605. }, {
  4606. closecallback: function () { }
  4607. }, { "style": { "height": "36px" } }).form; //创建窗体
  4608. _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); } }
  4609. break;
  4610. case "hanTraining":
  4611. _formdiv = new U.UF.UI.form(
  4612. "笔画训练",
  4613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  4614. "id": "hanTraining",
  4615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4616. "onresize": function () { }
  4617. }, {
  4618. closecallback: function () { }
  4619. }, { "style": { "height": "36px" } }).form; //创建窗体
  4620. _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); } }
  4621. break;
  4622. case "hanClass":
  4623. _formdiv = new U.UF.UI.form(
  4624. "书法课堂",
  4625. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  4626. "id": "hanClass",
  4627. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4628. "onresize": function () { }
  4629. }, {
  4630. closecallback: function () { }
  4631. }, { "style": { "height": "36px" } }).form; //创建窗体
  4632. _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); } }
  4633. break;
  4634. case "han":
  4635. _formdiv = new U.UF.UI.form(
  4636. "汉字宫",
  4637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  4638. "id": "han",
  4639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4640. "onresize": function () { }
  4641. }, {
  4642. closecallback: function () { }
  4643. }, { "style": { "height": "36px" } }).form; //创建窗体
  4644. _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); } }
  4645. break;
  4646. case "projectGM": //课程管理
  4647. _formdiv = new U.UF.UI.form(
  4648. "课程管理",
  4649. $$("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 }), {
  4650. "id": "projectGM",
  4651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4652. "onresize": function () { }
  4653. }, {
  4654. closecallback: function () { }
  4655. }, { "style": { "height": "36px" } }).form; //创建窗体
  4656. _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); } }
  4657. break;
  4658. case "studyGM": //课程中心
  4659. _formdiv = new U.UF.UI.form(
  4660. "课程中心",
  4661. $$("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
  4662. "id": "study",
  4663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4664. "onresize": function () { }
  4665. }, {
  4666. closecallback: function () { }
  4667. }, { "style": { "height": "36px" } }).form; //创建窗体
  4668. _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); } }
  4669. break;
  4670. // studentGM
  4671. case "studentGM": //学生管理
  4672. _formdiv = new U.UF.UI.form(
  4673. "学生管理",
  4674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  4675. "id": "studentGM",
  4676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4677. "onresize": function () { }
  4678. }, {
  4679. closecallback: function () { }
  4680. }, { "style": { "height": "36px" } }).form; //创建窗体
  4681. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4682. break;
  4683. case "evaluateGM": //学生评价
  4684. _formdiv = new U.UF.UI.form(
  4685. "学生评价",
  4686. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4687. "id": "evaluateGM",
  4688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4689. "onresize": function () { }
  4690. }, {
  4691. closecallback: function () { }
  4692. }, { "style": { "height": "36px" } }).form; //创建窗体
  4693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4694. break;
  4695. // classGM
  4696. case "classGM": //班级管理
  4697. _formdiv = new U.UF.UI.form(
  4698. "班级管理",
  4699. $$("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 }), {
  4700. "id": "classGM",
  4701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4702. "onresize": function () { }
  4703. }, {
  4704. closecallback: function () { }
  4705. }, { "style": { "height": "36px" } }).form; //创建窗体
  4706. _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); } }
  4707. break;
  4708. // dataGM
  4709. case "dataGM":
  4710. _formdiv = new U.UF.UI.form(
  4711. "我的资料",
  4712. $$("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 }), {
  4713. "id": "dataGM",
  4714. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4715. "onresize": function () { }
  4716. }, {
  4717. closecallback: function () { }
  4718. }, { "style": { "height": "36px" } }).form; //创建窗体
  4719. _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); } }
  4720. break;
  4721. // caseGM
  4722. case "caseGM": //课程进展
  4723. _formdiv = new U.UF.UI.form(
  4724. "课程进展",
  4725. $$("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 }), {
  4726. "id": "caseGM",
  4727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4728. "onresize": function () { }
  4729. }, {
  4730. closecallback: function () { }
  4731. }, { "style": { "height": "36px" } }).form; //创建窗体
  4732. _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); } }
  4733. break;
  4734. // meterialGM
  4735. case "meterialGM": //素材库
  4736. _formdiv = new U.UF.UI.form(
  4737. "素材库",
  4738. $$("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 }), {
  4739. "id": "meterialGM",
  4740. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4741. "onresize": function () { }
  4742. }, {
  4743. closecallback: function () { }
  4744. }, { "style": { "height": "36px" } }).form; //创建窗体
  4745. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4746. break;
  4747. // evaluateSGM
  4748. case "evaluateSGM": //我的评价
  4749. _formdiv = new U.UF.UI.form(
  4750. "我的评价",
  4751. $$("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 }), {
  4752. "id": "evaluateSGM",
  4753. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _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); } }
  4759. break;
  4760. case "jupyter": //jupyter
  4761. _formdiv = new U.UF.UI.form(
  4762. "jupyter",
  4763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  4764. "id": "jupyter",
  4765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _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); } }
  4771. break;
  4772. case "number": //数字实验室
  4773. _formdiv = new U.UF.UI.form(
  4774. "数字实验室",
  4775. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  4776. "id": "number",
  4777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _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); } }
  4783. break;
  4784. case "studentCourse": //项目管理 学生
  4785. _formdiv = new U.UF.UI.form(
  4786. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4787. $$("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 }), {
  4788. "id": "studentCourse",
  4789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4795. break;
  4796. case "studentCourseS": //项目管理 老师
  4797. _formdiv = new U.UF.UI.form(
  4798. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  4799. $$("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 }), {
  4800. "id": "studentCourseS",
  4801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _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); } }
  4807. break;
  4808. case "studentIndex": //项目中心
  4809. _formdiv = new U.UF.UI.form(
  4810. "项目中心",
  4811. $$("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 }), {
  4812. "id": "studentIndex",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. case "CaseDesignS":
  4821. _formdiv = new U.UF.UI.form(
  4822. "项目进展",
  4823. $$("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 }), {
  4824. "id": "case",
  4825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _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); } }
  4831. break;
  4832. case "tcStudent": //腾讯学生管理
  4833. _formdiv = new U.UF.UI.form(
  4834. "学生管理",
  4835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4836. "id": "tcStudent",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. _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); } }
  4843. break;
  4844. case "tcSchool": //腾讯学校管理
  4845. _formdiv = new U.UF.UI.form(
  4846. "学校管理",
  4847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4848. "id": "tcSchool",
  4849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4855. break;
  4856. case "tcTeacher": //腾讯学校管理
  4857. _formdiv = new U.UF.UI.form(
  4858. "教师管理",
  4859. $$("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 }), {
  4860. "id": "tcTeacher",
  4861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4862. "onresize": function () { }
  4863. }, {
  4864. closecallback: function () { }
  4865. }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. _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); } }
  4867. break;
  4868. case "tcData": //腾讯我的资料
  4869. _formdiv = new U.UF.UI.form(
  4870. "我的资料",
  4871. $$("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 }), {
  4872. "id": "tcData",
  4873. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4874. "onresize": function () { }
  4875. }, {
  4876. closecallback: function () { }
  4877. }, { "style": { "height": "36px" } }).form; //创建窗体
  4878. _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); } }
  4879. break;
  4880. case "tcNotice": //腾讯消息通知
  4881. _formdiv = new U.UF.UI.form(
  4882. "消息通知",
  4883. $$("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 }), {
  4884. "id": "tcNotice",
  4885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { }
  4889. }, { "style": { "height": "36px" } }).form; //创建窗体
  4890. _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); } }
  4891. break;
  4892. case "myReport": //好友打开
  4893. _formdiv = new U.UF.UI.form(
  4894. "我的评价",
  4895. $$("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 }), {
  4896. "id": "myReport",
  4897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _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); } }
  4903. break;
  4904. case "learnAna": //好友打开
  4905. _formdiv = new U.UF.UI.form(
  4906. "学习分析",
  4907. $$("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 }), {
  4908. "id": "learnAna",
  4909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4910. "onresize": function () { }
  4911. }, {
  4912. closecallback: function () { }
  4913. }, { "style": { "height": "36px" } }).form; //创建窗体
  4914. _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); } }
  4915. break;
  4916. case "AIChat": //AI共创
  4917. _formdiv = new U.UF.UI.form(
  4918. "AI共创",
  4919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  4920. "id": "AIChat",
  4921. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  4922. "onresize": function () { }
  4923. }, {
  4924. istop: true,
  4925. closecallback: function () { $("#aichat_icon").remove(); },
  4926. narrowcallback: function () {
  4927. if (!$("#aichat_icon")[0]) {
  4928. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  4929. }
  4930. },
  4931. }, { "style": { "height": "36px" } }).form; //创建窗体
  4932. _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); } }
  4933. break;
  4934. case "ainew": //AI共创
  4935. _formdiv = new U.UF.UI.form(
  4936. "AI协同",
  4937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  4938. "id": "ainew",
  4939. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4940. "onresize": function () { }
  4941. }, {
  4942. closecallback: function () { }
  4943. }, { "style": { "height": "36px" } }).form; //创建窗体
  4944. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4945. break;
  4946. case "gpt4": //gpt4
  4947. _formdiv = new U.UF.UI.form(
  4948. "AI助手",
  4949. $$("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 }), {
  4950. "id": "gpt4",
  4951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4957. break;
  4958. case "aigpt": //gpt4
  4959. _formdiv = new U.UF.UI.form(
  4960. "AI助手+",
  4961. $$("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 }), {
  4962. "id": "aigpt",
  4963. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. closecallback: function () { }
  4967. }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4969. break;
  4970. case "futureClass": //AI共创
  4971. _formdiv = new U.UF.UI.form(
  4972. "协同建构",
  4973. $$("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
  4974. "id": "synergyCourse",
  4975. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4976. "onresize": function () { }
  4977. }, {
  4978. closecallback: function () {
  4979. $("iframe", _formdiv)[0].contentWindow.loginout();
  4980. }
  4981. }, { "style": { "height": "36px" } }).form; //创建窗体
  4982. _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); } }
  4983. break;
  4984. case "aiagent": //ai agent
  4985. _formdiv = new U.UF.UI.form(
  4986. "AI Agent",
  4987. $$("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" }), {
  4988. "id": "AIAgent",
  4989. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { }
  4993. }, { "style": { "height": "36px" } }).form; //创建窗体
  4994. _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); } }
  4995. break;
  4996. case "dataBoard": //数据看板
  4997. _formdiv = new U.UF.UI.form(
  4998. "数据看板",
  4999. $$("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 }), {
  5000. "id": "dataBoard",
  5001. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5002. "onresize": function () { }
  5003. }, {
  5004. closecallback: function () { }
  5005. }, { "style": { "height": "36px" } }).form; //创建窗体
  5006. _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); } }
  5007. break;
  5008. case "dataBoardSies": //数据融合
  5009. _formdiv = new U.UF.UI.form(
  5010. "数据融合",
  5011. $$("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 }), {
  5012. "id": "dataBoardSies",
  5013. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5014. "onresize": function () { }
  5015. }, {
  5016. closecallback: function () { }
  5017. }, { "style": { "height": "36px" } }).form; //创建窗体
  5018. _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); } }
  5019. break;
  5020. case "dataBoardNew": //数据看板
  5021. _formdiv = new U.UF.UI.form(
  5022. "综合看板",
  5023. $$("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 }), {
  5024. "id": "dataBoardNew",
  5025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. _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); } }
  5031. break;
  5032. case "dataBoardTest": //数据看板
  5033. _formdiv = new U.UF.UI.form(
  5034. "评测看板",
  5035. $$("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 }), {
  5036. "id": "dataBoardTest",
  5037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5038. "onresize": function () { }
  5039. }, {
  5040. closecallback: function () { }
  5041. }, { "style": { "height": "36px" } }).form; //创建窗体
  5042. _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); } }
  5043. break;
  5044. case "AIAnalyse": //AI共创
  5045. _formdiv = new U.UF.UI.form(
  5046. "AI分析",
  5047. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5048. "id": "AIAnalyse",
  5049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5050. "onresize": function () { }
  5051. }, {
  5052. closecallback: function () { }
  5053. }, { "style": { "height": "36px" } }).form; //创建窗体
  5054. _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); } }
  5055. break;
  5056. case "studioCourse": //AI共创
  5057. _formdiv = new U.UF.UI.form(
  5058. "工作管理",
  5059. $$("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 }), {
  5060. "id": "studioCourse",
  5061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. _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); } }
  5067. break;
  5068. case "studioIndex": //AI共创
  5069. _formdiv = new U.UF.UI.form(
  5070. "工作中心",
  5071. $$("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 }), {
  5072. "id": "studioIndex",
  5073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5074. "onresize": function () { }
  5075. }, {
  5076. closecallback: function () { }
  5077. }, { "style": { "height": "36px" } }).form; //创建窗体
  5078. _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); } }
  5079. break;
  5080. case "source":
  5081. _formdiv = new U.UF.UI.form(
  5082. "教学资源",
  5083. $$("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 }), {
  5084. "id": "source",
  5085. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. _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); } }
  5091. break;
  5092. case "testTeacher":
  5093. _formdiv = new U.UF.UI.form(
  5094. "教师管理",
  5095. $$("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 }), {
  5096. "id": "testTeacher",
  5097. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5098. "onresize": function () { }
  5099. }, {
  5100. closecallback: function () { }
  5101. }, { "style": { "height": "36px" } }).form; //创建窗体
  5102. _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); } }
  5103. break;
  5104. case "testStudent":
  5105. _formdiv = new U.UF.UI.form(
  5106. "教师中心",
  5107. $$("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 }), {
  5108. "id": "testStudent",
  5109. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5110. "onresize": function () { }
  5111. }, {
  5112. closecallback: function () { }
  5113. }, { "style": { "height": "36px" } }).form; //创建窗体
  5114. _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); } }
  5115. break;
  5116. case "testTeacherSies":
  5117. _formdiv = new U.UF.UI.form(
  5118. "教师管理",
  5119. $$("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 }), {
  5120. "id": "testTeacherSies",
  5121. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. case "testStudentSies":
  5129. _formdiv = new U.UF.UI.form(
  5130. "教师中心",
  5131. $$("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 }), {
  5132. "id": "testStudentSies",
  5133. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //创建窗体
  5138. _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); } }
  5139. break;
  5140. case "ytpbl": //消息通知
  5141. _formdiv = new U.UF.UI.form(
  5142. "案例征集",
  5143. $$("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 }), {
  5144. "id": "ytpbl",
  5145. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. _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); } }
  5151. // 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");
  5152. break;
  5153. case "aiCourseResource": //人工智能窗体
  5154. _formdiv = new U.UF.UI.form(
  5155. false,
  5156. $$("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 }), {
  5157. "id": "aiCourseResource",
  5158. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5159. "onresize": function () { },
  5160. "isdrag": false,
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _taskbar = ''
  5165. break;
  5166. case "szdjgCocooroboX": //图形化编程
  5167. _formdiv = new U.UF.UI.form(
  5168. "图形化编程",
  5169. $$("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" }), {
  5170. "id": "szdjgCocooroboX",
  5171. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5172. "onresize": function () { }
  5173. }, {
  5174. closecallback: function () { }
  5175. }, { "style": { "height": "36px" } }).form; //创建窗体
  5176. _taskbar = ''
  5177. break;
  5178. case "szdjgPython": //python编程
  5179. _formdiv = new U.UF.UI.form(
  5180. "Python编程",
  5181. $$("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" }), {
  5182. "id": "szdjgPython",
  5183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. _taskbar = ''
  5189. break;
  5190. case "Record":
  5191. _formdiv = new U.UF.UI.form(
  5192. "观察记录",
  5193. $$("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 }), {
  5194. "id": "Record",
  5195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _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); } }
  5201. break;
  5202. case "aigptCourse":
  5203. _formdiv = new U.UF.UI.form(
  5204. "AI智能体",
  5205. $$("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' }), {
  5206. "id": "aigptCourse",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. _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); } }
  5213. break;
  5214. case "classroomObservation":
  5215. _formdiv = new U.UF.UI.form(
  5216. "课堂观察",
  5217. $$("iframe", { "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 }), {
  5218. "id": "classroomObservation",
  5219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. _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); } }
  5225. break;
  5226. }
  5227. //U.MD.D.I.openClick(str);
  5228. //如果有任务栏信息
  5229. if (_taskbar) {
  5230. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5231. }
  5232. }
  5233. // U.MD.D.I.openClick = function(str){
  5234. // var click = '';
  5235. // switch(str){
  5236. // case 'friend':
  5237. // click = '我的好友';
  5238. // break;
  5239. // case 'domain':
  5240. // click = '域名管理';
  5241. // break;
  5242. // case 'disk':
  5243. // click = '我的云盘';
  5244. // break;
  5245. // case 'word':
  5246. // click = 'Word';
  5247. // break;
  5248. // case 'excel':
  5249. // click = 'Execl';
  5250. // break;
  5251. // case 'txt':
  5252. // click = '文本文件';
  5253. // break;
  5254. // case 'lookupFriend':
  5255. // click = '查找好友';
  5256. // break;
  5257. // case 'ftp':
  5258. // click = 'FTP';
  5259. // break;
  5260. // case 'group':
  5261. // click = '群组';
  5262. // break;
  5263. // case 'set':
  5264. // click = '我的设置';
  5265. // break;
  5266. // case 'systemSet':
  5267. // click = '系统设置';
  5268. // break;
  5269. // case 'boomYun':
  5270. // click = '互联办公';
  5271. // break;
  5272. // case 'xz':
  5273. // click = '云端下载';
  5274. // break;
  5275. // case 'client':
  5276. // click = '有思浏览器';
  5277. // break;
  5278. // case 'backEndProgramming':
  5279. // click = '在线后台编程';
  5280. // break;
  5281. // case 'frontEndProgramming':
  5282. // click = '在线前端编程';
  5283. // break;
  5284. // default: break;
  5285. // }
  5286. // if(U.MD.D.I.Ip && click){
  5287. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5288. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5289. // })
  5290. // }
  5291. // }
  5292. /**
  5293. *函数作用:ajax简易函数,使用post格式
  5294. *@param url {data} 后台地址
  5295. *@param data {data} 参数json
  5296. *@param fn {data} 回调函数
  5297. *
  5298. */
  5299. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5300. // var xhr = new XMLHttpRequest();
  5301. // xhr.open("GET",url,true);
  5302. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5303. // xhr.onreadystatechange = function(){
  5304. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5305. // fn.call(this,xhr.responseText);
  5306. // }
  5307. // };
  5308. // xhr.send();
  5309. // }
  5310. /*判断是否是内网IP*/
  5311. // U.MD.D.I.isInnerIPFn = function(str){
  5312. // var curPageUrl = str;
  5313. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5314. // curPageUrl =curPageUrl.replace(reg1,'');
  5315. // // console.log('curPageUrl-1 '+curPageUrl);
  5316. // var reg2 = /\:+/g;//替换冒号为一点
  5317. // curPageUrl =curPageUrl.replace(reg2,'.');
  5318. // // console.log('curPageUrl-2 '+curPageUrl);
  5319. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5320. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5321. // if(curPageUrl[2] != '16'){
  5322. // return ipAddress;
  5323. // }else{
  5324. // return false;
  5325. // }
  5326. // }
  5327. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5328. // //compatibility for firefox and chrome
  5329. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5330. // var pc = new myPeerConnection({
  5331. // iceServers: []
  5332. // }),
  5333. // noop = function() {},
  5334. // localIPs = {},
  5335. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5336. // key;
  5337. // function iterateIP(ip) {
  5338. // if (!localIPs[ip]) onNewIP(ip);
  5339. // localIPs[ip] = true;
  5340. // }
  5341. // //create a bogus data channel
  5342. // pc.createDataChannel("");
  5343. // // create offer and set local description
  5344. // pc.createOffer().then(function(sdp) {
  5345. // sdp.sdp.split('\n').forEach(function(line) {
  5346. // if (line.indexOf('candidate') < 0) return;
  5347. // line.match(ipRegex).forEach(iterateIP);
  5348. // });
  5349. // pc.setLocalDescription(sdp, noop, noop);
  5350. // }).catch(function(reason) {
  5351. // // An error occurred, so handle the failure to connect
  5352. // });
  5353. // //sten for candidate events
  5354. // pc.onicecandidate = function(ice) {
  5355. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5356. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5357. // };
  5358. // }
  5359. // U.MD.D.I.getUserIpBool = function(callback){
  5360. // U.MD.D.I.getUserIP(function(ip){
  5361. // alert("Got IP! :" + ip);
  5362. // });
  5363. //}
  5364. //#endregion
  5365. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5366. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5367. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5368. _userinfo = US.userInfo, //登录用户信息
  5369. _userid = US.userInfo.userid //登录用户id
  5370. let _iframe;
  5371. let _cid = cid,
  5372. _stage = stage,
  5373. _task = task,
  5374. _tool = tool;
  5375. var _jie = $$("div", {
  5376. "style": {
  5377. "position": "absolute",
  5378. "bottom": "50px",
  5379. "right": "50px",
  5380. "zIndex": "9999",
  5381. "backgroundColor": "#2268bc",
  5382. "color": "#fff",
  5383. "padding": "12px 20px",
  5384. "cursor": "pointer",
  5385. "borderRadius": "4px",
  5386. },
  5387. "innerHTML": "提交作业"
  5388. })
  5389. let aTool = ''
  5390. let _loading = document.createElement('div')
  5391. _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;"
  5392. // _loading.id = "";
  5393. let _lchild = document.createElement('div')
  5394. let _limg = document.createElement('img')
  5395. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5396. _limg.style = "width: 26px;margin-right: 10px;"
  5397. _lchild.appendChild(_limg)
  5398. let _lspan = document.createElement('span')
  5399. _lspan.innerHTML = "上传中..."
  5400. _lchild.appendChild(_lspan)
  5401. _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%);"
  5402. _loading.appendChild(_lchild)
  5403. var _box = $$('div', {
  5404. "style": {
  5405. "position": "relative",
  5406. "width": "100%",
  5407. "height": "100%",
  5408. },
  5409. })
  5410. _box.appendChild(_loading)
  5411. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5412. switch (str) {
  5413. case "whiteboard":
  5414. aTool = 1;
  5415. _iframe = $$("iframe", {
  5416. "frameborder": "no",
  5417. "border": "0",
  5418. "scrolling ": "no",
  5419. "style": {
  5420. "cssText": "border:0;width:100%;height:100%"
  5421. },
  5422. "src": "https://iwb.cocorobo.cn/"
  5423. })
  5424. _box.appendChild(_iframe);
  5425. _box.appendChild(_jie);
  5426. _formdiv = new U.UF.UI.form(
  5427. "电子白板",
  5428. _box, {
  5429. "id": "whiteboard" + cid + stage + task + tool,
  5430. "style": {
  5431. "width": "90%",
  5432. "height": "90%",
  5433. "overflow": 'hidden'
  5434. },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, {
  5439. "style": {
  5440. "height": "36px"
  5441. }
  5442. }).form; //创建窗体
  5443. _taskbar = {
  5444. "id": str + _formdiv.id,
  5445. "style": {
  5446. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5447. },
  5448. "name": "电子白板",
  5449. "forms": _formdiv,
  5450. "click": function () {
  5451. U.MD.D.I.openApplication(str, obj, info);
  5452. }
  5453. }
  5454. break;
  5455. case "mind":
  5456. aTool = 3;
  5457. _iframe = $$("iframe", {
  5458. "frameborder": "no",
  5459. "border": "0",
  5460. "scrolling ": "no",
  5461. "style": {
  5462. "cssText": "border:0;width:100%;height:100%"
  5463. },
  5464. "src": "/kityminder-editor/dist/index.html"
  5465. })
  5466. _box.appendChild(_iframe);
  5467. _box.appendChild(_jie);
  5468. _formdiv = new U.UF.UI.form(
  5469. "思维导图",
  5470. _box, { //"/jsmind/example/demo.html"
  5471. "id": "mind" + cid + stage + task + tool,
  5472. "style": {
  5473. "width": "90%",
  5474. "height": "90%",
  5475. "overflow": 'hidden'
  5476. },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, {
  5481. "style": {
  5482. "height": "36px"
  5483. }
  5484. }).form; //创建窗体
  5485. _taskbar = {
  5486. "id": str + _formdiv.id,
  5487. "style": {
  5488. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5489. },
  5490. "name": "思维导图",
  5491. "forms": _formdiv,
  5492. "click": function () {
  5493. U.MD.D.I.openApplication(str, obj, info);
  5494. }
  5495. }
  5496. break;
  5497. case "MindMap":
  5498. aTool = 3;
  5499. _iframe = $$("iframe", {
  5500. "frameborder": "no",
  5501. "border": "0",
  5502. "scrolling ": "no",
  5503. "style": {
  5504. "cssText": "border:0;width:100%;height:100%"
  5505. },
  5506. "src": "//cloud.cocorobo.cn/mind/"
  5507. })
  5508. _box.appendChild(_iframe);
  5509. _box.appendChild(_jie);
  5510. _formdiv = new U.UF.UI.form(
  5511. "思维导图",
  5512. _box, { //"/jsmind/example/demo.html"
  5513. "id": "mind" + cid + stage + task + tool,
  5514. "style": {
  5515. "width": "90%",
  5516. "height": "90%",
  5517. "overflow": 'hidden'
  5518. },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, {
  5523. "style": {
  5524. "height": "36px"
  5525. }
  5526. }).form; //创建窗体
  5527. _taskbar = {
  5528. "id": str + _formdiv.id,
  5529. "style": {
  5530. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5531. },
  5532. "name": "思维导图",
  5533. "forms": _formdiv,
  5534. "click": function () {
  5535. U.MD.D.I.openApplication(str, obj, info);
  5536. }
  5537. }
  5538. break;
  5539. case "doc":
  5540. aTool = 6;
  5541. _iframe = $$("iframe", {
  5542. "frameborder": "no",
  5543. "border": "0",
  5544. "scrolling ": "no",
  5545. "style": {
  5546. "cssText": "border:0;width:100%;height:100%"
  5547. },
  5548. "src": "/Office/Word/WordEditArea.htm"
  5549. })
  5550. _box.appendChild(_iframe);
  5551. _box.appendChild(_jie);
  5552. _formdiv = new U.UF.UI.form(
  5553. "协同文档",
  5554. _box, {
  5555. "id": "doc" + cid + stage + task + tool,
  5556. "style": {
  5557. "width": "90%",
  5558. "height": "90%",
  5559. "overflow": 'hidden'
  5560. },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, {
  5565. "style": {
  5566. "height": "36px"
  5567. }
  5568. }).form; //创建窗体
  5569. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5570. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5571. })
  5572. _taskbar = {
  5573. "id": str + _formdiv.id,
  5574. "style": {
  5575. "backgroundImage": "url(/img/icon/doc.png)"
  5576. },
  5577. "name": "协同文档",
  5578. "forms": _formdiv,
  5579. "click": function () {
  5580. U.MD.D.I.openApplication(str, obj, info);
  5581. }
  5582. }
  5583. break;
  5584. case "mindNetwork": //好友打开
  5585. aTool = 7;
  5586. _iframe = $$("iframe", {
  5587. "webkitallowfullscreen": "",
  5588. "mozallowfullscreen": "",
  5589. "allowfullscreen": "",
  5590. "frameborder": "no",
  5591. "border": "0",
  5592. "scrolling ": "no",
  5593. "style": {
  5594. "cssText": "border:0; width:100%; height:100%;"
  5595. },
  5596. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  5597. })
  5598. _box.appendChild(_iframe);
  5599. _box.appendChild(_jie);
  5600. _formdiv = new U.UF.UI.form(
  5601. "思维网格",
  5602. _box, {
  5603. "id": "mindNetwork" + cid + stage + task + tool,
  5604. "style": {
  5605. "width": "90%",
  5606. "height": "90%",
  5607. "overflow": 'hidden'
  5608. },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, {
  5613. "style": {
  5614. "height": "36px"
  5615. }
  5616. }).form; //创建窗体
  5617. _taskbar = {
  5618. "id": str + _formdiv.id,
  5619. "style": {
  5620. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  5621. },
  5622. "name": "思维网格",
  5623. "forms": _formdiv,
  5624. "click": function () {
  5625. U.MD.D.I.openApplication(str, obj, info);
  5626. }
  5627. }
  5628. break;
  5629. case "courseDesign":
  5630. _iframe = $$("iframe", {
  5631. "webkitallowfullscreen": "",
  5632. "mozallowfullscreen": "",
  5633. "allowfullscreen": "",
  5634. "frameborder": "no",
  5635. "border": "0",
  5636. "scrolling ": "no",
  5637. "style": {
  5638. "cssText": "border:0; width:100%; height:100%;"
  5639. },
  5640. "src": "/course-design-vue"
  5641. })
  5642. _box.appendChild(_iframe);
  5643. _box.appendChild(_jie);
  5644. _formdiv = new U.UF.UI.form(
  5645. "项目设计",
  5646. _box, {
  5647. "id": "courseDesign" + cid + stage + task + tool,
  5648. "style": {
  5649. "width": "90%",
  5650. "height": "90%",
  5651. "overflow": 'hidden'
  5652. },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, {
  5657. "style": {
  5658. "height": "36px"
  5659. }
  5660. }).form; //创建窗体
  5661. _taskbar = {
  5662. "id": str + _formdiv.id,
  5663. "style": {
  5664. "backgroundImage": "url(/img/icon/courseDesign.png)"
  5665. },
  5666. "name": "项目设计",
  5667. "forms": _formdiv,
  5668. "click": function () {
  5669. U.MD.D.I.openApplication(str, obj, info);
  5670. }
  5671. }
  5672. break;
  5673. }
  5674. const script1 = document.createElement("script");
  5675. script1.type = "text/javascript";
  5676. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  5677. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  5678. const script2 = document.createElement("script");
  5679. script2.type = "text/javascript";
  5680. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  5681. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  5682. const script3 = document.createElement("script");
  5683. script3.type = "text/javascript";
  5684. script3.charset = "UTF-8";
  5685. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  5686. const script4 = document.createElement("script");
  5687. script4.type = "text/javascript";
  5688. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  5689. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  5690. if (_iframe) {
  5691. if (str == 'doc') {
  5692. _iframe = _formdiv.querySelector('iframe')
  5693. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5694. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  5695. _iframe.contentWindow.document.body.appendChild(script1);
  5696. _iframe.contentWindow.document.body.appendChild(script2);
  5697. // _iframe.contentWindow.document.body.appendChild(script3);
  5698. _iframe.contentWindow.document.body.appendChild(script4);
  5699. })
  5700. if (onloadListener) {
  5701. _iframe.contentDocument.location.reload()
  5702. } else {
  5703. _iframe.contentDocument.location.reload()
  5704. }
  5705. } else if (str == 'courseDesign') {
  5706. U.UF.DL.iframeLoad(_iframe, function () {
  5707. // _iframe.contentWindow.U.MD.O.W.load();
  5708. // _iframe.contentWindow.document.body.appendChild(script1);
  5709. _iframe.contentWindow.document.body.appendChild(script2);
  5710. _iframe.contentWindow.document.body.appendChild(script4);
  5711. })
  5712. } else if (str == 'mind') {
  5713. _iframe = _formdiv.querySelector('iframe')
  5714. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  5715. //
  5716. _iframe.contentWindow.document.body.appendChild(script1);
  5717. _iframe.contentWindow.document.body.appendChild(script2);
  5718. _iframe.contentWindow.document.body.appendChild(script4);
  5719. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  5720. })
  5721. if (onloadListener) {
  5722. _iframe.contentDocument.location.reload()
  5723. } else {
  5724. _iframe.contentDocument.location.reload()
  5725. }
  5726. } else if (str == 'whiteboard') {
  5727. _iframe = _formdiv.querySelector('iframe')
  5728. let onloadListener = _iframe.onload = () => {
  5729. _iframe.contentWindow.document.body.appendChild(script1);
  5730. _iframe.contentWindow.document.body.appendChild(script2);
  5731. _iframe.contentWindow.document.body.appendChild(script4);
  5732. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  5733. };
  5734. if (onloadListener) {
  5735. _iframe.contentDocument.location.reload()
  5736. } else {
  5737. _iframe.contentDocument.location.reload()
  5738. }
  5739. } else {
  5740. _iframe.onload = () => {
  5741. _iframe.contentWindow.document.body.appendChild(script1);
  5742. _iframe.contentWindow.document.body.appendChild(script2);
  5743. // _iframe.contentWindow.document.body.appendChild(script3);
  5744. _iframe.contentWindow.document.body.appendChild(script4);
  5745. };
  5746. }
  5747. _jie.onclick = async () => {
  5748. let text = ''
  5749. if (aTool == 1) {
  5750. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  5751. } else if (aTool == 6) {
  5752. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  5753. } else if (aTool == 3) {
  5754. text = await U.MD.D.I.getEditorContent(_iframe);
  5755. }
  5756. _loading.style.display = 'flex'
  5757. console.log(_loading);
  5758. var _ajs = _iframe.contentWindow.document.createElement("script");
  5759. _ajs.type = "text/javascript";
  5760. _ajs.innerHTML =
  5761. // 'console.log(' + _loading + ');\n' +
  5762. 'var _js = document.createElement("script");\n' +
  5763. '_js.type="text/javascript";\n' +
  5764. '_js.charset="UTF-8";\n' +
  5765. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  5766. "_js.onload = function(){\n" +
  5767. ' var a = document.getElementsByTagName("img")\n' +
  5768. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  5769. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  5770. '  var base64Url = canvas.toDataURL("image/png");\n' +
  5771. 'var base64 = "<img src=" + base64Url + " />"\n' +
  5772. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  5773. "beforeUpload_shishi(file," +
  5774. "'" +
  5775. _userid +
  5776. "'" +
  5777. ", " +
  5778. "'" +
  5779. _cid +
  5780. "'" +
  5781. ", " +
  5782. "'" +
  5783. _stage +
  5784. "'" +
  5785. ", " +
  5786. "'" +
  5787. _task +
  5788. "'" +
  5789. ", " +
  5790. "'" +
  5791. _tool +
  5792. "'" +
  5793. ", " +
  5794. "'" +
  5795. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  5796. "'" +
  5797. ", " +
  5798. "'" +
  5799. aTool +
  5800. "'" +
  5801. ", " +
  5802. "`" +
  5803. text +
  5804. "`" +
  5805. ")\n" +
  5806. " });\n" +
  5807. "}\n" +
  5808. "document.head.appendChild(_js);\n";
  5809. _iframe.contentWindow.document.head.appendChild(_ajs);
  5810. }
  5811. }
  5812. //U.MD.D.I.openClick(str);
  5813. //如果有任务栏信息
  5814. // if (_taskbar) {
  5815. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5816. // }
  5817. }
  5818. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  5819. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5820. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5821. _userinfo = US.userInfo, //登录用户信息
  5822. _userid = US.userInfo.userid //登录用户id
  5823. let _iframe;
  5824. let _cid = cid,
  5825. _stage = stage,
  5826. _task = task,
  5827. _tool = tool;
  5828. var _jie = $$("div", {
  5829. "style": {
  5830. "position": "absolute",
  5831. "bottom": "50px",
  5832. "right": "50px",
  5833. "zIndex": "9999",
  5834. "backgroundColor": "#2268bc",
  5835. "color": "#fff",
  5836. "padding": "12px 20px",
  5837. "cursor": "pointer",
  5838. "borderRadius": "4px",
  5839. },
  5840. "innerHTML": "提交作业"
  5841. })
  5842. let aTool = ''
  5843. let _loading = document.createElement('div')
  5844. _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;"
  5845. // _loading.id = "";
  5846. let _lchild = document.createElement('div')
  5847. let _limg = document.createElement('img')
  5848. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5849. _limg.style = "width: 26px;margin-right: 10px;"
  5850. _lchild.appendChild(_limg)
  5851. let _lspan = document.createElement('span')
  5852. _lspan.innerHTML = "上传中..."
  5853. _lchild.appendChild(_lspan)
  5854. _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%);"
  5855. _loading.appendChild(_lchild)
  5856. var _box = $$('div', {
  5857. "style": {
  5858. "position": "relative",
  5859. "width": "100%",
  5860. "height": "100%",
  5861. },
  5862. })
  5863. _box.appendChild(_loading)
  5864. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  5865. switch (str) {
  5866. case "whiteboard":
  5867. aTool = 1;
  5868. _iframe = $$("iframe", {
  5869. "frameborder": "no",
  5870. "border": "0",
  5871. "scrolling ": "no",
  5872. "style": {
  5873. "cssText": "border:0;width:100%;height:100%"
  5874. },
  5875. "src": "https://iwb.cocorobo.cn/"
  5876. })
  5877. _box.appendChild(_iframe);
  5878. _box.appendChild(_jie);
  5879. _formdiv = new U.UF.UI.form(
  5880. "电子白板",
  5881. _box, {
  5882. "id": "whiteboard" + cid + stage + task + tool,
  5883. "style": {
  5884. "width": "90%",
  5885. "height": "90%",
  5886. "overflow": 'hidden'
  5887. },
  5888. "onresize": function () { }
  5889. }, {
  5890. closecallback: function () { }
  5891. }, {
  5892. "style": {
  5893. "height": "36px"
  5894. }
  5895. }).form; //创建窗体
  5896. _taskbar = {
  5897. "id": str + _formdiv.id,
  5898. "style": {
  5899. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  5900. },
  5901. "name": "电子白板",
  5902. "forms": _formdiv,
  5903. "click": function () {
  5904. U.MD.D.I.openApplication(str, obj, info);
  5905. }
  5906. }
  5907. break;
  5908. case "mind":
  5909. aTool = 3;
  5910. _iframe = $$("iframe", {
  5911. "frameborder": "no",
  5912. "border": "0",
  5913. "scrolling ": "no",
  5914. "style": {
  5915. "cssText": "border:0;width:100%;height:100%"
  5916. },
  5917. "src": "/kityminder-editor/dist/index.html"
  5918. })
  5919. _box.appendChild(_iframe);
  5920. _box.appendChild(_jie);
  5921. _formdiv = new U.UF.UI.form(
  5922. "思维导图",
  5923. _box, { //"/jsmind/example/demo.html"
  5924. "id": "mind" + cid + stage + task + tool,
  5925. "style": {
  5926. "width": "90%",
  5927. "height": "90%",
  5928. "overflow": 'hidden'
  5929. },
  5930. "onresize": function () { }
  5931. }, {
  5932. closecallback: function () { }
  5933. }, {
  5934. "style": {
  5935. "height": "36px"
  5936. }
  5937. }).form; //创建窗体
  5938. _taskbar = {
  5939. "id": str + _formdiv.id,
  5940. "style": {
  5941. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5942. },
  5943. "name": "思维导图",
  5944. "forms": _formdiv,
  5945. "click": function () {
  5946. U.MD.D.I.openApplication(str, obj, info);
  5947. }
  5948. }
  5949. break;
  5950. case "MindMap":
  5951. aTool = 3;
  5952. _iframe = $$("iframe", {
  5953. "frameborder": "no",
  5954. "border": "0",
  5955. "scrolling ": "no",
  5956. "style": {
  5957. "cssText": "border:0;width:100%;height:100%"
  5958. },
  5959. "src": "//cloud.cocorobo.cn/mind/"
  5960. })
  5961. _box.appendChild(_iframe);
  5962. _box.appendChild(_jie);
  5963. _formdiv = new U.UF.UI.form(
  5964. "思维导图",
  5965. _box, { //"/jsmind/example/demo.html"
  5966. "id": "mind" + cid + stage + task + tool,
  5967. "style": {
  5968. "width": "90%",
  5969. "height": "90%",
  5970. "overflow": 'hidden'
  5971. },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, {
  5976. "style": {
  5977. "height": "36px"
  5978. }
  5979. }).form; //创建窗体
  5980. _taskbar = {
  5981. "id": str + _formdiv.id,
  5982. "style": {
  5983. "backgroundImage": "url(/img/icon/mindMapping.png)"
  5984. },
  5985. "name": "思维导图",
  5986. "forms": _formdiv,
  5987. "click": function () {
  5988. U.MD.D.I.openApplication(str, obj, info);
  5989. }
  5990. }
  5991. break;
  5992. case "doc":
  5993. aTool = 6;
  5994. _iframe = $$("iframe", {
  5995. "frameborder": "no",
  5996. "border": "0",
  5997. "scrolling ": "no",
  5998. "style": {
  5999. "cssText": "border:0;width:100%;height:100%"
  6000. },
  6001. "src": "/Office/Word/WordEditArea.htm"
  6002. })
  6003. _box.appendChild(_iframe);
  6004. _box.appendChild(_jie);
  6005. _formdiv = new U.UF.UI.form(
  6006. "协同文档",
  6007. _box, {
  6008. "id": "doc" + cid + stage + task + tool,
  6009. "style": {
  6010. "width": "90%",
  6011. "height": "90%",
  6012. "overflow": 'hidden'
  6013. },
  6014. "onresize": function () { }
  6015. }, {
  6016. closecallback: function () { }
  6017. }, {
  6018. "style": {
  6019. "height": "36px"
  6020. }
  6021. }).form; //创建窗体
  6022. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6023. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6024. })
  6025. _taskbar = {
  6026. "id": str + _formdiv.id,
  6027. "style": {
  6028. "backgroundImage": "url(/img/icon/doc.png)"
  6029. },
  6030. "name": "协同文档",
  6031. "forms": _formdiv,
  6032. "click": function () {
  6033. U.MD.D.I.openApplication(str, obj, info);
  6034. }
  6035. }
  6036. break;
  6037. case "mindNetwork": //好友打开
  6038. aTool = 7;
  6039. _iframe = $$("iframe", {
  6040. "webkitallowfullscreen": "",
  6041. "mozallowfullscreen": "",
  6042. "allowfullscreen": "",
  6043. "frameborder": "no",
  6044. "border": "0",
  6045. "scrolling ": "no",
  6046. "style": {
  6047. "cssText": "border:0; width:100%; height:100%;"
  6048. },
  6049. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6050. })
  6051. _box.appendChild(_iframe);
  6052. _box.appendChild(_jie);
  6053. _formdiv = new U.UF.UI.form(
  6054. "思维网格",
  6055. _box, {
  6056. "id": "mindNetwork" + cid + stage + task + tool,
  6057. "style": {
  6058. "width": "90%",
  6059. "height": "90%",
  6060. "overflow": 'hidden'
  6061. },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, {
  6066. "style": {
  6067. "height": "36px"
  6068. }
  6069. }).form; //创建窗体
  6070. _taskbar = {
  6071. "id": str + _formdiv.id,
  6072. "style": {
  6073. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6074. },
  6075. "name": "思维网格",
  6076. "forms": _formdiv,
  6077. "click": function () {
  6078. U.MD.D.I.openApplication(str, obj, info);
  6079. }
  6080. }
  6081. break;
  6082. case "courseDesign":
  6083. _iframe = $$("iframe", {
  6084. "webkitallowfullscreen": "",
  6085. "mozallowfullscreen": "",
  6086. "allowfullscreen": "",
  6087. "frameborder": "no",
  6088. "border": "0",
  6089. "scrolling ": "no",
  6090. "style": {
  6091. "cssText": "border:0; width:100%; height:100%;"
  6092. },
  6093. "src": "/course-design-vue"
  6094. })
  6095. _box.appendChild(_iframe);
  6096. _box.appendChild(_jie);
  6097. _formdiv = new U.UF.UI.form(
  6098. "项目设计",
  6099. _box, {
  6100. "id": "courseDesign" + cid + stage + task + tool,
  6101. "style": {
  6102. "width": "90%",
  6103. "height": "90%",
  6104. "overflow": 'hidden'
  6105. },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, {
  6110. "style": {
  6111. "height": "36px"
  6112. }
  6113. }).form; //创建窗体
  6114. _taskbar = {
  6115. "id": str + _formdiv.id,
  6116. "style": {
  6117. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6118. },
  6119. "name": "项目设计",
  6120. "forms": _formdiv,
  6121. "click": function () {
  6122. U.MD.D.I.openApplication(str, obj, info);
  6123. }
  6124. }
  6125. break;
  6126. }
  6127. const script1 = document.createElement("script");
  6128. script1.type = "text/javascript";
  6129. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6130. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6131. const script2 = document.createElement("script");
  6132. script2.type = "text/javascript";
  6133. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6134. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6135. const script3 = document.createElement("script");
  6136. script3.type = "text/javascript";
  6137. script3.charset = "UTF-8";
  6138. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6139. const script4 = document.createElement("script");
  6140. script4.type = "text/javascript";
  6141. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6142. script4.src = window.origin + "/js/Common/jietu2E.js";
  6143. if (_iframe) {
  6144. if (str == 'doc') {
  6145. _iframe = _formdiv.querySelector('iframe')
  6146. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6147. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6148. _iframe.contentWindow.document.body.appendChild(script1);
  6149. _iframe.contentWindow.document.body.appendChild(script2);
  6150. // _iframe.contentWindow.document.body.appendChild(script3);
  6151. _iframe.contentWindow.document.body.appendChild(script4);
  6152. })
  6153. if (onloadListener) {
  6154. _iframe.contentDocument.location.reload()
  6155. } else {
  6156. _iframe.contentDocument.location.reload()
  6157. }
  6158. } else if (str == 'courseDesign') {
  6159. U.UF.DL.iframeLoad(_iframe, function () {
  6160. // _iframe.contentWindow.U.MD.O.W.load();
  6161. // _iframe.contentWindow.document.body.appendChild(script1);
  6162. _iframe.contentWindow.document.body.appendChild(script2);
  6163. _iframe.contentWindow.document.body.appendChild(script4);
  6164. })
  6165. } else if (str == 'mind') {
  6166. _iframe = _formdiv.querySelector('iframe')
  6167. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6168. //
  6169. _iframe.contentWindow.document.body.appendChild(script1);
  6170. _iframe.contentWindow.document.body.appendChild(script2);
  6171. _iframe.contentWindow.document.body.appendChild(script4);
  6172. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6173. })
  6174. if (onloadListener) {
  6175. _iframe.contentDocument.location.reload()
  6176. } else {
  6177. _iframe.contentDocument.location.reload()
  6178. }
  6179. } else if (str == 'whiteboard') {
  6180. _iframe = _formdiv.querySelector('iframe')
  6181. let onloadListener = _iframe.onload = () => {
  6182. _iframe.contentWindow.document.body.appendChild(script1);
  6183. _iframe.contentWindow.document.body.appendChild(script2);
  6184. _iframe.contentWindow.document.body.appendChild(script4);
  6185. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6186. };
  6187. if (onloadListener) {
  6188. _iframe.contentDocument.location.reload()
  6189. } else {
  6190. _iframe.contentDocument.location.reload()
  6191. }
  6192. } else {
  6193. _iframe.onload = () => {
  6194. _iframe.contentWindow.document.body.appendChild(script1);
  6195. _iframe.contentWindow.document.body.appendChild(script2);
  6196. // _iframe.contentWindow.document.body.appendChild(script3);
  6197. _iframe.contentWindow.document.body.appendChild(script4);
  6198. };
  6199. }
  6200. _jie.onclick = async () => {
  6201. let text = ''
  6202. if (aTool == 1) {
  6203. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6204. } else if (aTool == 6) {
  6205. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6206. } else if (aTool == 3) {
  6207. text = await U.MD.D.I.getEditorContent(_iframe);
  6208. }
  6209. _loading.style.display = 'flex'
  6210. console.log(_loading);
  6211. var _ajs = _iframe.contentWindow.document.createElement("script");
  6212. _ajs.type = "text/javascript";
  6213. _ajs.innerHTML =
  6214. // 'console.log(' + _loading + ');\n' +
  6215. 'var _js = document.createElement("script");\n' +
  6216. '_js.type="text/javascript";\n' +
  6217. '_js.charset="UTF-8";\n' +
  6218. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6219. "_js.onload = function(){\n" +
  6220. ' var a = document.getElementsByTagName("img")\n' +
  6221. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6222. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6223. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6224. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6225. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6226. "beforeUpload_shishi(file," +
  6227. "'" +
  6228. _userid +
  6229. "'" +
  6230. ", " +
  6231. "'" +
  6232. _cid +
  6233. "'" +
  6234. ", " +
  6235. "'" +
  6236. _stage +
  6237. "'" +
  6238. ", " +
  6239. "'" +
  6240. _task +
  6241. "'" +
  6242. ", " +
  6243. "'" +
  6244. _tool +
  6245. "'" +
  6246. ", " +
  6247. "'" +
  6248. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6249. "'" +
  6250. ", " +
  6251. "'" +
  6252. aTool +
  6253. "'" +
  6254. ", " +
  6255. "`" +
  6256. text +
  6257. "`" +
  6258. ")\n" +
  6259. " });\n" +
  6260. "}\n" +
  6261. "document.head.appendChild(_js);\n";
  6262. _iframe.contentWindow.document.head.appendChild(_ajs);
  6263. }
  6264. }
  6265. //U.MD.D.I.openClick(str);
  6266. //如果有任务栏信息
  6267. // if (_taskbar) {
  6268. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6269. // }
  6270. }
  6271. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6272. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6273. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6274. _userid = student.userid, //登录用户id
  6275. _username = student.student //用户名字
  6276. let _iframe;
  6277. let _cid = cid,
  6278. _stage = stage,
  6279. _task = task,
  6280. _tool = tool;
  6281. var _jie = $$("div", {
  6282. "style": {
  6283. "position": "absolute",
  6284. "bottom": "50px",
  6285. "right": "50px",
  6286. "zIndex": "9999",
  6287. "backgroundColor": "#2268bc",
  6288. "color": "#fff",
  6289. "padding": "12px 20px",
  6290. "cursor": "pointer",
  6291. "borderRadius": "4px",
  6292. },
  6293. "innerHTML": "提交作业"
  6294. })
  6295. let aTool = ''
  6296. let _loading = document.createElement('div')
  6297. _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;"
  6298. // _loading.id = "";
  6299. let _lchild = document.createElement('div')
  6300. let _limg = document.createElement('img')
  6301. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6302. _limg.style = "width: 26px;margin-right: 10px;"
  6303. _lchild.appendChild(_limg)
  6304. let _lspan = document.createElement('span')
  6305. _lspan.innerHTML = "上传中..."
  6306. _lchild.appendChild(_lspan)
  6307. _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%);"
  6308. _loading.appendChild(_lchild)
  6309. var _box = $$('div', {
  6310. "style": {
  6311. "position": "relative",
  6312. "width": "100%",
  6313. "height": "100%",
  6314. },
  6315. })
  6316. _box.appendChild(_loading)
  6317. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6318. switch (str) {
  6319. case "whiteboard":
  6320. aTool = 1;
  6321. _iframe = $$("iframe", {
  6322. "frameborder": "no",
  6323. "border": "0",
  6324. "scrolling ": "no",
  6325. "style": {
  6326. "cssText": "border:0;width:100%;height:100%"
  6327. },
  6328. "src": "https://iwb.cocorobo.cn/"
  6329. })
  6330. _box.appendChild(_iframe);
  6331. _box.appendChild(_jie);
  6332. _formdiv = new U.UF.UI.form(
  6333. "电子白板-" + _username,
  6334. _box, {
  6335. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6336. "style": {
  6337. "width": "90%",
  6338. "height": "90%",
  6339. "overflow": 'hidden'
  6340. },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, {
  6345. "style": {
  6346. "height": "36px"
  6347. }
  6348. }).form; //创建窗体
  6349. _taskbar = {
  6350. "id": str + _formdiv.id,
  6351. "style": {
  6352. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6353. },
  6354. "name": "电子白板",
  6355. "forms": _formdiv,
  6356. "click": function () {
  6357. U.MD.D.I.openApplication(str, obj, info);
  6358. }
  6359. }
  6360. break;
  6361. case "mind":
  6362. aTool = 3;
  6363. _iframe = $$("iframe", {
  6364. "frameborder": "no",
  6365. "border": "0",
  6366. "scrolling ": "no",
  6367. "style": {
  6368. "cssText": "border:0;width:100%;height:100%"
  6369. },
  6370. "src": "/kityminder-editor/dist/index.html"
  6371. })
  6372. _box.appendChild(_iframe);
  6373. _box.appendChild(_jie);
  6374. _formdiv = new U.UF.UI.form(
  6375. "思维导图-" + _username,
  6376. _box, { //"/jsmind/example/demo.html"
  6377. "id": "mind" + cid + stage + task + tool + _userid,
  6378. "style": {
  6379. "width": "90%",
  6380. "height": "90%",
  6381. "overflow": 'hidden'
  6382. },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, {
  6387. "style": {
  6388. "height": "36px"
  6389. }
  6390. }).form; //创建窗体
  6391. _taskbar = {
  6392. "id": str + _formdiv.id,
  6393. "style": {
  6394. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6395. },
  6396. "name": "思维导图",
  6397. "forms": _formdiv,
  6398. "click": function () {
  6399. U.MD.D.I.openApplication(str, obj, info);
  6400. }
  6401. }
  6402. break;
  6403. case "MindMap":
  6404. aTool = 3;
  6405. _iframe = $$("iframe", {
  6406. "frameborder": "no",
  6407. "border": "0",
  6408. "scrolling ": "no",
  6409. "style": {
  6410. "cssText": "border:0;width:100%;height:100%"
  6411. },
  6412. "src": "//cloud.cocorobo.cn/mind/"
  6413. })
  6414. _box.appendChild(_iframe);
  6415. _box.appendChild(_jie);
  6416. _formdiv = new U.UF.UI.form(
  6417. "思维导图-" + _username,
  6418. _box, { //"/jsmind/example/demo.html"
  6419. "id": "mind" + cid + stage + task + tool + _userid,
  6420. "style": {
  6421. "width": "90%",
  6422. "height": "90%",
  6423. "overflow": 'hidden'
  6424. },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, {
  6429. "style": {
  6430. "height": "36px"
  6431. }
  6432. }).form; //创建窗体
  6433. _taskbar = {
  6434. "id": str + _formdiv.id,
  6435. "style": {
  6436. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6437. },
  6438. "name": "思维导图",
  6439. "forms": _formdiv,
  6440. "click": function () {
  6441. U.MD.D.I.openApplication(str, obj, info);
  6442. }
  6443. }
  6444. break;
  6445. case "doc":
  6446. aTool = 6;
  6447. _iframe = $$("iframe", {
  6448. "frameborder": "no",
  6449. "border": "0",
  6450. "scrolling ": "no",
  6451. "style": {
  6452. "cssText": "border:0;width:100%;height:100%"
  6453. },
  6454. "src": "/Office/Word/WordEditArea.htm"
  6455. })
  6456. _box.appendChild(_iframe);
  6457. _box.appendChild(_jie);
  6458. _formdiv = new U.UF.UI.form(
  6459. "协同文档-" + _username,
  6460. _box, {
  6461. "id": "doc" + cid + stage + task + tool + _userid,
  6462. "style": {
  6463. "width": "90%",
  6464. "height": "90%",
  6465. "overflow": 'hidden'
  6466. },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, {
  6471. "style": {
  6472. "height": "36px"
  6473. }
  6474. }).form; //创建窗体
  6475. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6476. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6477. })
  6478. _taskbar = {
  6479. "id": str + _formdiv.id,
  6480. "style": {
  6481. "backgroundImage": "url(/img/icon/doc.png)"
  6482. },
  6483. "name": "协同文档",
  6484. "forms": _formdiv,
  6485. "click": function () {
  6486. U.MD.D.I.openApplication(str, obj, info);
  6487. }
  6488. }
  6489. break;
  6490. case "mindNetwork": //好友打开
  6491. aTool = 7;
  6492. _iframe = $$("iframe", {
  6493. "webkitallowfullscreen": "",
  6494. "mozallowfullscreen": "",
  6495. "allowfullscreen": "",
  6496. "frameborder": "no",
  6497. "border": "0",
  6498. "scrolling ": "no",
  6499. "style": {
  6500. "cssText": "border:0; width:100%; height:100%;"
  6501. },
  6502. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6503. })
  6504. _box.appendChild(_iframe);
  6505. _box.appendChild(_jie);
  6506. _formdiv = new U.UF.UI.form(
  6507. "思维网格-" + _username,
  6508. _box, {
  6509. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6510. "style": {
  6511. "width": "90%",
  6512. "height": "90%",
  6513. "overflow": 'hidden'
  6514. },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, {
  6519. "style": {
  6520. "height": "36px"
  6521. }
  6522. }).form; //创建窗体
  6523. _taskbar = {
  6524. "id": str + _formdiv.id,
  6525. "style": {
  6526. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6527. },
  6528. "name": "思维网格",
  6529. "forms": _formdiv,
  6530. "click": function () {
  6531. U.MD.D.I.openApplication(str, obj, info);
  6532. }
  6533. }
  6534. break;
  6535. case "courseDesign":
  6536. _iframe = $$("iframe", {
  6537. "webkitallowfullscreen": "",
  6538. "mozallowfullscreen": "",
  6539. "allowfullscreen": "",
  6540. "frameborder": "no",
  6541. "border": "0",
  6542. "scrolling ": "no",
  6543. "style": {
  6544. "cssText": "border:0; width:100%; height:100%;"
  6545. },
  6546. "src": "/course-design-vue"
  6547. })
  6548. _box.appendChild(_iframe);
  6549. _box.appendChild(_jie);
  6550. _formdiv = new U.UF.UI.form(
  6551. "项目设计-" + _username,
  6552. _box, {
  6553. "id": "courseDesign" + cid + stage + task + tool + _userid,
  6554. "style": {
  6555. "width": "90%",
  6556. "height": "90%",
  6557. "overflow": 'hidden'
  6558. },
  6559. "onresize": function () { }
  6560. }, {
  6561. closecallback: function () { }
  6562. }, {
  6563. "style": {
  6564. "height": "36px"
  6565. }
  6566. }).form; //创建窗体
  6567. _taskbar = {
  6568. "id": str + _formdiv.id,
  6569. "style": {
  6570. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6571. },
  6572. "name": "项目设计",
  6573. "forms": _formdiv,
  6574. "click": function () {
  6575. U.MD.D.I.openApplication(str, obj, info);
  6576. }
  6577. }
  6578. break;
  6579. }
  6580. const script1 = document.createElement("script");
  6581. script1.type = "text/javascript";
  6582. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6583. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6584. const script2 = document.createElement("script");
  6585. script2.type = "text/javascript";
  6586. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6587. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6588. const script3 = document.createElement("script");
  6589. script3.type = "text/javascript";
  6590. script3.charset = "UTF-8";
  6591. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6592. const script4 = document.createElement("script");
  6593. script4.type = "text/javascript";
  6594. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6595. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6596. if (_iframe) {
  6597. if (str == 'doc') {
  6598. _iframe = _formdiv.querySelector('iframe')
  6599. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6600. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6601. _iframe.contentWindow.document.body.appendChild(script1);
  6602. _iframe.contentWindow.document.body.appendChild(script2);
  6603. // _iframe.contentWindow.document.body.appendChild(script3);
  6604. _iframe.contentWindow.document.body.appendChild(script4);
  6605. })
  6606. if (onloadListener) {
  6607. _iframe.contentDocument.location.reload()
  6608. } else {
  6609. _iframe.contentDocument.location.reload()
  6610. }
  6611. } else if (str == 'courseDesign') {
  6612. U.UF.DL.iframeLoad(_iframe, function () {
  6613. // _iframe.contentWindow.U.MD.O.W.load();
  6614. // _iframe.contentWindow.document.body.appendChild(script1);
  6615. _iframe.contentWindow.document.body.appendChild(script2);
  6616. _iframe.contentWindow.document.body.appendChild(script4);
  6617. })
  6618. } else if (str == 'mind') {
  6619. _iframe = _formdiv.querySelector('iframe')
  6620. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6621. //
  6622. _iframe.contentWindow.document.body.appendChild(script1);
  6623. _iframe.contentWindow.document.body.appendChild(script2);
  6624. _iframe.contentWindow.document.body.appendChild(script4);
  6625. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6626. })
  6627. if (onloadListener) {
  6628. _iframe.contentDocument.location.reload()
  6629. } else {
  6630. _iframe.contentDocument.location.reload()
  6631. }
  6632. } else if (str == 'whiteboard') {
  6633. _iframe = _formdiv.querySelector('iframe')
  6634. let onloadListener = _iframe.onload = () => {
  6635. _iframe.contentWindow.document.body.appendChild(script1);
  6636. _iframe.contentWindow.document.body.appendChild(script2);
  6637. _iframe.contentWindow.document.body.appendChild(script4);
  6638. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6639. };
  6640. if (onloadListener) {
  6641. _iframe.contentDocument.location.reload()
  6642. } else {
  6643. _iframe.contentDocument.location.reload()
  6644. }
  6645. } else {
  6646. _iframe.onload = () => {
  6647. _iframe.contentWindow.document.body.appendChild(script1);
  6648. _iframe.contentWindow.document.body.appendChild(script2);
  6649. // _iframe.contentWindow.document.body.appendChild(script3);
  6650. _iframe.contentWindow.document.body.appendChild(script4);
  6651. };
  6652. }
  6653. _jie.onclick = async () => {
  6654. let text = ''
  6655. if (aTool == 1) {
  6656. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6657. } else if (aTool == 6) {
  6658. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6659. } else if (aTool == 3) {
  6660. text = await U.MD.D.I.getEditorContent(_iframe);
  6661. }
  6662. _loading.style.display = 'flex'
  6663. console.log(_loading);
  6664. var _ajs = _iframe.contentWindow.document.createElement("script");
  6665. _ajs.type = "text/javascript";
  6666. _ajs.innerHTML =
  6667. // 'console.log(' + _loading + ');\n' +
  6668. 'var _js = document.createElement("script");\n' +
  6669. '_js.type="text/javascript";\n' +
  6670. '_js.charset="UTF-8";\n' +
  6671. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6672. "_js.onload = function(){\n" +
  6673. ' var a = document.getElementsByTagName("img")\n' +
  6674. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6675. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6676. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6677. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6678. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6679. "beforeUpload_shishi(file," +
  6680. "'" +
  6681. _userid +
  6682. "'" +
  6683. ", " +
  6684. "'" +
  6685. _cid +
  6686. "'" +
  6687. ", " +
  6688. "'" +
  6689. _stage +
  6690. "'" +
  6691. ", " +
  6692. "'" +
  6693. _task +
  6694. "'" +
  6695. ", " +
  6696. "'" +
  6697. _tool +
  6698. "'" +
  6699. ", " +
  6700. "'" +
  6701. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  6702. "'" +
  6703. ", " +
  6704. "'" +
  6705. aTool +
  6706. "'" +
  6707. ", " +
  6708. "`" +
  6709. text +
  6710. "`" +
  6711. ")\n" +
  6712. " });\n" +
  6713. "}\n" +
  6714. "document.head.appendChild(_js);\n";
  6715. _iframe.contentWindow.document.head.appendChild(_ajs);
  6716. }
  6717. }
  6718. }
  6719. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  6720. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6721. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6722. _userid = student.userid, //登录用户id
  6723. _username = student.student //用户名字
  6724. let _iframe;
  6725. let _cid = cid,
  6726. _stage = stage,
  6727. _task = task,
  6728. _tool = tool;
  6729. var _jie = $$("div", {
  6730. "style": {
  6731. "position": "absolute",
  6732. "bottom": "50px",
  6733. "right": "50px",
  6734. "zIndex": "9999",
  6735. "backgroundColor": "#2268bc",
  6736. "color": "#fff",
  6737. "padding": "12px 20px",
  6738. "cursor": "pointer",
  6739. "borderRadius": "4px",
  6740. },
  6741. "innerHTML": "提交作业"
  6742. })
  6743. let aTool = ''
  6744. let _loading = document.createElement('div')
  6745. _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;"
  6746. // _loading.id = "";
  6747. let _lchild = document.createElement('div')
  6748. let _limg = document.createElement('img')
  6749. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6750. _limg.style = "width: 26px;margin-right: 10px;"
  6751. _lchild.appendChild(_limg)
  6752. let _lspan = document.createElement('span')
  6753. _lspan.innerHTML = "上传中..."
  6754. _lchild.appendChild(_lspan)
  6755. _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%);"
  6756. _loading.appendChild(_lchild)
  6757. var _box = $$('div', {
  6758. "style": {
  6759. "position": "relative",
  6760. "width": "100%",
  6761. "height": "100%",
  6762. },
  6763. })
  6764. _box.appendChild(_loading)
  6765. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  6766. switch (str) {
  6767. case "whiteboard":
  6768. aTool = 1;
  6769. _iframe = $$("iframe", {
  6770. "frameborder": "no",
  6771. "border": "0",
  6772. "scrolling ": "no",
  6773. "style": {
  6774. "cssText": "border:0;width:100%;height:100%"
  6775. },
  6776. "src": "https://iwb.cocorobo.cn/"
  6777. })
  6778. _box.appendChild(_iframe);
  6779. _box.appendChild(_jie);
  6780. _formdiv = new U.UF.UI.form(
  6781. "电子白板-" + _username,
  6782. _box, {
  6783. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6784. "style": {
  6785. "width": "90%",
  6786. "height": "90%",
  6787. "overflow": 'hidden'
  6788. },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, {
  6793. "style": {
  6794. "height": "36px"
  6795. }
  6796. }).form; //创建窗体
  6797. _taskbar = {
  6798. "id": str + _formdiv.id,
  6799. "style": {
  6800. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6801. },
  6802. "name": "电子白板",
  6803. "forms": _formdiv,
  6804. "click": function () {
  6805. U.MD.D.I.openApplication(str, obj, info);
  6806. }
  6807. }
  6808. break;
  6809. case "mind":
  6810. aTool = 3;
  6811. _iframe = $$("iframe", {
  6812. "frameborder": "no",
  6813. "border": "0",
  6814. "scrolling ": "no",
  6815. "style": {
  6816. "cssText": "border:0;width:100%;height:100%"
  6817. },
  6818. "src": "/kityminder-editor/dist/index.html"
  6819. })
  6820. _box.appendChild(_iframe);
  6821. _box.appendChild(_jie);
  6822. _formdiv = new U.UF.UI.form(
  6823. "思维导图-" + _username,
  6824. _box, { //"/jsmind/example/demo.html"
  6825. "id": "mind" + cid + stage + task + tool + _userid,
  6826. "style": {
  6827. "width": "90%",
  6828. "height": "90%",
  6829. "overflow": 'hidden'
  6830. },
  6831. "onresize": function () { }
  6832. }, {
  6833. closecallback: function () { }
  6834. }, {
  6835. "style": {
  6836. "height": "36px"
  6837. }
  6838. }).form; //创建窗体
  6839. _taskbar = {
  6840. "id": str + _formdiv.id,
  6841. "style": {
  6842. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6843. },
  6844. "name": "思维导图",
  6845. "forms": _formdiv,
  6846. "click": function () {
  6847. U.MD.D.I.openApplication(str, obj, info);
  6848. }
  6849. }
  6850. break;
  6851. case "MindMap":
  6852. aTool = 3;
  6853. _iframe = $$("iframe", {
  6854. "frameborder": "no",
  6855. "border": "0",
  6856. "scrolling ": "no",
  6857. "style": {
  6858. "cssText": "border:0;width:100%;height:100%"
  6859. },
  6860. "src": "//cloud.cocorobo.cn/mind/"
  6861. })
  6862. _box.appendChild(_iframe);
  6863. _box.appendChild(_jie);
  6864. _formdiv = new U.UF.UI.form(
  6865. "思维导图-" + _username,
  6866. _box, { //"/jsmind/example/demo.html"
  6867. "id": "mind" + cid + stage + task + tool + _userid,
  6868. "style": {
  6869. "width": "90%",
  6870. "height": "90%",
  6871. "overflow": 'hidden'
  6872. },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, {
  6877. "style": {
  6878. "height": "36px"
  6879. }
  6880. }).form; //创建窗体
  6881. _taskbar = {
  6882. "id": str + _formdiv.id,
  6883. "style": {
  6884. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6885. },
  6886. "name": "思维导图",
  6887. "forms": _formdiv,
  6888. "click": function () {
  6889. U.MD.D.I.openApplication(str, obj, info);
  6890. }
  6891. }
  6892. break;
  6893. case "doc":
  6894. aTool = 6;
  6895. _iframe = $$("iframe", {
  6896. "frameborder": "no",
  6897. "border": "0",
  6898. "scrolling ": "no",
  6899. "style": {
  6900. "cssText": "border:0;width:100%;height:100%"
  6901. },
  6902. "src": "/Office/Word/WordEditArea.htm"
  6903. })
  6904. _box.appendChild(_iframe);
  6905. _box.appendChild(_jie);
  6906. _formdiv = new U.UF.UI.form(
  6907. "协同文档-" + _username,
  6908. _box, {
  6909. "id": "doc" + cid + stage + task + tool + _userid,
  6910. "style": {
  6911. "width": "90%",
  6912. "height": "90%",
  6913. "overflow": 'hidden'
  6914. },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, {
  6919. "style": {
  6920. "height": "36px"
  6921. }
  6922. }).form; //创建窗体
  6923. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6924. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6925. })
  6926. _taskbar = {
  6927. "id": str + _formdiv.id,
  6928. "style": {
  6929. "backgroundImage": "url(/img/icon/doc.png)"
  6930. },
  6931. "name": "协同文档",
  6932. "forms": _formdiv,
  6933. "click": function () {
  6934. U.MD.D.I.openApplication(str, obj, info);
  6935. }
  6936. }
  6937. break;
  6938. case "mindNetwork": //好友打开
  6939. aTool = 7;
  6940. _iframe = $$("iframe", {
  6941. "webkitallowfullscreen": "",
  6942. "mozallowfullscreen": "",
  6943. "allowfullscreen": "",
  6944. "frameborder": "no",
  6945. "border": "0",
  6946. "scrolling ": "no",
  6947. "style": {
  6948. "cssText": "border:0; width:100%; height:100%;"
  6949. },
  6950. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6951. })
  6952. _box.appendChild(_iframe);
  6953. _box.appendChild(_jie);
  6954. _formdiv = new U.UF.UI.form(
  6955. "思维网格-" + _username,
  6956. _box, {
  6957. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  6958. "style": {
  6959. "width": "90%",
  6960. "height": "90%",
  6961. "overflow": 'hidden'
  6962. },
  6963. "onresize": function () { }
  6964. }, {
  6965. closecallback: function () { }
  6966. }, {
  6967. "style": {
  6968. "height": "36px"
  6969. }
  6970. }).form; //创建窗体
  6971. _taskbar = {
  6972. "id": str + _formdiv.id,
  6973. "style": {
  6974. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6975. },
  6976. "name": "思维网格",
  6977. "forms": _formdiv,
  6978. "click": function () {
  6979. U.MD.D.I.openApplication(str, obj, info);
  6980. }
  6981. }
  6982. break;
  6983. case "courseDesign":
  6984. _iframe = $$("iframe", {
  6985. "webkitallowfullscreen": "",
  6986. "mozallowfullscreen": "",
  6987. "allowfullscreen": "",
  6988. "frameborder": "no",
  6989. "border": "0",
  6990. "scrolling ": "no",
  6991. "style": {
  6992. "cssText": "border:0; width:100%; height:100%;"
  6993. },
  6994. "src": "/course-design-vue"
  6995. })
  6996. _box.appendChild(_iframe);
  6997. _box.appendChild(_jie);
  6998. _formdiv = new U.UF.UI.form(
  6999. "项目设计-" + _username,
  7000. _box, {
  7001. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7002. "style": {
  7003. "width": "90%",
  7004. "height": "90%",
  7005. "overflow": 'hidden'
  7006. },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, {
  7011. "style": {
  7012. "height": "36px"
  7013. }
  7014. }).form; //创建窗体
  7015. _taskbar = {
  7016. "id": str + _formdiv.id,
  7017. "style": {
  7018. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7019. },
  7020. "name": "项目设计",
  7021. "forms": _formdiv,
  7022. "click": function () {
  7023. U.MD.D.I.openApplication(str, obj, info);
  7024. }
  7025. }
  7026. break;
  7027. }
  7028. const script1 = document.createElement("script");
  7029. script1.type = "text/javascript";
  7030. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7031. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7032. const script2 = document.createElement("script");
  7033. script2.type = "text/javascript";
  7034. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7035. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7036. const script3 = document.createElement("script");
  7037. script3.type = "text/javascript";
  7038. script3.charset = "UTF-8";
  7039. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7040. const script4 = document.createElement("script");
  7041. script4.type = "text/javascript";
  7042. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7043. script4.src = window.origin + "/js/Common/jietu2E.js";
  7044. if (_iframe) {
  7045. if (str == 'doc') {
  7046. _iframe = _formdiv.querySelector('iframe')
  7047. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7048. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7049. _iframe.contentWindow.document.body.appendChild(script1);
  7050. _iframe.contentWindow.document.body.appendChild(script2);
  7051. // _iframe.contentWindow.document.body.appendChild(script3);
  7052. _iframe.contentWindow.document.body.appendChild(script4);
  7053. })
  7054. if (onloadListener) {
  7055. _iframe.contentDocument.location.reload()
  7056. } else {
  7057. _iframe.contentDocument.location.reload()
  7058. }
  7059. } else if (str == 'courseDesign') {
  7060. U.UF.DL.iframeLoad(_iframe, function () {
  7061. // _iframe.contentWindow.U.MD.O.W.load();
  7062. // _iframe.contentWindow.document.body.appendChild(script1);
  7063. _iframe.contentWindow.document.body.appendChild(script2);
  7064. _iframe.contentWindow.document.body.appendChild(script4);
  7065. })
  7066. } else if (str == 'mind') {
  7067. _iframe = _formdiv.querySelector('iframe')
  7068. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7069. //
  7070. _iframe.contentWindow.document.body.appendChild(script1);
  7071. _iframe.contentWindow.document.body.appendChild(script2);
  7072. _iframe.contentWindow.document.body.appendChild(script4);
  7073. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7074. })
  7075. if (onloadListener) {
  7076. _iframe.contentDocument.location.reload()
  7077. } else {
  7078. _iframe.contentDocument.location.reload()
  7079. }
  7080. } else if (str == 'whiteboard') {
  7081. _iframe = _formdiv.querySelector('iframe')
  7082. let onloadListener = _iframe.onload = () => {
  7083. _iframe.contentWindow.document.body.appendChild(script1);
  7084. _iframe.contentWindow.document.body.appendChild(script2);
  7085. _iframe.contentWindow.document.body.appendChild(script4);
  7086. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7087. };
  7088. if (onloadListener) {
  7089. _iframe.contentDocument.location.reload()
  7090. } else {
  7091. _iframe.contentDocument.location.reload()
  7092. }
  7093. } else {
  7094. _iframe.onload = () => {
  7095. _iframe.contentWindow.document.body.appendChild(script1);
  7096. _iframe.contentWindow.document.body.appendChild(script2);
  7097. // _iframe.contentWindow.document.body.appendChild(script3);
  7098. _iframe.contentWindow.document.body.appendChild(script4);
  7099. };
  7100. }
  7101. _jie.onclick = async () => {
  7102. let text = ''
  7103. if (aTool == 1) {
  7104. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7105. } else if (aTool == 6) {
  7106. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7107. } else if (aTool == 3) {
  7108. text = await U.MD.D.I.getEditorContent(_iframe);
  7109. }
  7110. _loading.style.display = 'flex'
  7111. console.log(_loading);
  7112. var _ajs = _iframe.contentWindow.document.createElement("script");
  7113. _ajs.type = "text/javascript";
  7114. _ajs.innerHTML =
  7115. // 'console.log(' + _loading + ');\n' +
  7116. 'var _js = document.createElement("script");\n' +
  7117. '_js.type="text/javascript";\n' +
  7118. '_js.charset="UTF-8";\n' +
  7119. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7120. "_js.onload = function(){\n" +
  7121. ' var a = document.getElementsByTagName("img")\n' +
  7122. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7123. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7124. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7125. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7126. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7127. "beforeUpload_shishi(file," +
  7128. "'" +
  7129. _userid +
  7130. "'" +
  7131. ", " +
  7132. "'" +
  7133. _cid +
  7134. "'" +
  7135. ", " +
  7136. "'" +
  7137. _stage +
  7138. "'" +
  7139. ", " +
  7140. "'" +
  7141. _task +
  7142. "'" +
  7143. ", " +
  7144. "'" +
  7145. _tool +
  7146. "'" +
  7147. ", " +
  7148. "'" +
  7149. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7150. "'" +
  7151. ", " +
  7152. "'" +
  7153. aTool +
  7154. "'" +
  7155. ", " +
  7156. "`" +
  7157. text +
  7158. "`" +
  7159. ")\n" +
  7160. " });\n" +
  7161. "}\n" +
  7162. "document.head.appendChild(_js);\n";
  7163. _iframe.contentWindow.document.head.appendChild(_ajs);
  7164. }
  7165. }
  7166. }
  7167. U.MD.D.I.getEditorContent = function (iframe) {
  7168. return new Promise((resolve, reject) => {
  7169. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7170. console.log(content);
  7171. resolve(content)
  7172. });
  7173. });
  7174. }
  7175. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7176. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7177. // if (res.value[0].length > 0) {
  7178. // // resolve(res.value[0][0].text);
  7179. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7180. // $(fileInput).val('');
  7181. // });
  7182. // }
  7183. // }, [], { "type": "GET", "withCredentials": true });
  7184. var xmlhttp;
  7185. var Mac, Sn, DeviceId
  7186. if (window.XMLHttpRequest) {
  7187. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7188. xmlhttp = new XMLHttpRequest();
  7189. } else {
  7190. // IE6, IE5 浏览器执行代码
  7191. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7192. }
  7193. xmlhttp.onreadystatechange = function () {
  7194. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7195. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7196. // resolve(res.value[0][0].text);
  7197. if (type == '2') {
  7198. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7199. } else if (type == '3') {
  7200. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7201. }
  7202. } else {
  7203. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7204. }
  7205. }
  7206. }
  7207. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7208. xmlhttp.send();
  7209. }
  7210. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7211. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7212. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7213. _userinfo = US.userInfo, //登录用户信息
  7214. _userid = US.userInfo.userid //登录用户id
  7215. let _iframe;
  7216. let _cid = cid,
  7217. _stage = stage,
  7218. _task = task,
  7219. _tool = tool;
  7220. var _jie = $$("div", {
  7221. "style": {
  7222. "position": "absolute",
  7223. "bottom": "50px",
  7224. "right": "50px",
  7225. "zIndex": "9999",
  7226. "backgroundColor": "#2268bc",
  7227. "color": "#fff",
  7228. "padding": "12px 20px",
  7229. "cursor": "pointer",
  7230. "borderRadius": "4px",
  7231. },
  7232. "innerHTML": "确认并提交"
  7233. })
  7234. let aTool = ''
  7235. let _loading = document.createElement('div')
  7236. _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;"
  7237. // _loading.id = "";
  7238. let _lchild = document.createElement('div')
  7239. let _limg = document.createElement('img')
  7240. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7241. _limg.style = "width: 26px;margin-right: 10px;"
  7242. _lchild.appendChild(_limg)
  7243. let _lspan = document.createElement('span')
  7244. _lspan.innerHTML = "上传中..."
  7245. _lchild.appendChild(_lspan)
  7246. _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%);"
  7247. _loading.appendChild(_lchild)
  7248. var _box = $$('div', {
  7249. "style": {
  7250. "position": "relative",
  7251. "width": "100%",
  7252. "height": "100%",
  7253. },
  7254. })
  7255. _box.appendChild(_loading)
  7256. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7257. switch (str) {
  7258. case "whiteboard":
  7259. aTool = 1;
  7260. _iframe = $$("iframe", {
  7261. "frameborder": "no",
  7262. "border": "0",
  7263. "scrolling ": "no",
  7264. "style": {
  7265. "cssText": "border:0;width:100%;height:100%"
  7266. },
  7267. "src": "https://iwb.cocorobo.cn/"
  7268. })
  7269. _box.appendChild(_iframe);
  7270. _box.appendChild(_jie);
  7271. _formdiv = new U.UF.UI.form(
  7272. "电子白板",
  7273. _box, {
  7274. "id": "whiteboards" + cid + stage + task + tool,
  7275. "style": {
  7276. "width": "90%",
  7277. "height": "90%",
  7278. "overflow": 'hidden'
  7279. },
  7280. "onresize": function () { }
  7281. }, {
  7282. closecallback: function () { }
  7283. }, {
  7284. "style": {
  7285. "height": "36px"
  7286. }
  7287. }).form; //创建窗体
  7288. _taskbar = {
  7289. "id": str + _formdiv.id,
  7290. "style": {
  7291. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7292. },
  7293. "name": "电子白板",
  7294. "forms": _formdiv,
  7295. "click": function () {
  7296. U.MD.D.I.openApplication(str, obj, info);
  7297. }
  7298. }
  7299. break;
  7300. case "mind":
  7301. aTool = 3;
  7302. _iframe = $$("iframe", {
  7303. "frameborder": "no",
  7304. "border": "0",
  7305. "scrolling ": "no",
  7306. "style": {
  7307. "cssText": "border:0;width:100%;height:100%"
  7308. },
  7309. "src": "/kityminder-editor/dist/index.html"
  7310. });
  7311. _box.appendChild(_iframe);
  7312. _box.appendChild(_jie);
  7313. _formdiv = new U.UF.UI.form(
  7314. "思维导图",
  7315. _box, { //"/jsmind/example/demo.html"
  7316. "id": "minds" + cid + stage + task + tool,
  7317. "style": {
  7318. "width": "90%",
  7319. "height": "90%",
  7320. "overflow": 'hidden'
  7321. },
  7322. "onresize": function () { }
  7323. }, {
  7324. closecallback: function () { }
  7325. }, {
  7326. "style": {
  7327. "height": "36px"
  7328. }
  7329. }).form; //创建窗体
  7330. _taskbar = {
  7331. "id": str + _formdiv.id,
  7332. "style": {
  7333. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7334. },
  7335. "name": "思维导图",
  7336. "forms": _formdiv,
  7337. "click": function () {
  7338. U.MD.D.I.openApplication(str, obj, info);
  7339. }
  7340. }
  7341. break;
  7342. case "doc":
  7343. aTool = 6;
  7344. _iframe = $$("iframe", {
  7345. "frameborder": "no",
  7346. "border": "0",
  7347. "scrolling ": "no",
  7348. "style": {
  7349. "cssText": "border:0;width:100%;height:100%"
  7350. },
  7351. "src": "/Office/Word/WordEditArea.htm"
  7352. })
  7353. _box.appendChild(_iframe);
  7354. _box.appendChild(_jie);
  7355. _formdiv = new U.UF.UI.form(
  7356. "协同文档",
  7357. _box, {
  7358. "id": "docs" + cid + stage + task + tool,
  7359. "style": {
  7360. "width": "90%",
  7361. "height": "90%",
  7362. "overflow": 'hidden'
  7363. },
  7364. "onresize": function () { }
  7365. }, {
  7366. closecallback: function () { }
  7367. }, {
  7368. "style": {
  7369. "height": "36px"
  7370. }
  7371. }).form; //创建窗体
  7372. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7373. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7374. })
  7375. _taskbar = {
  7376. "id": str + _formdiv.id,
  7377. "style": {
  7378. "backgroundImage": "url(/img/icon/doc.png)"
  7379. },
  7380. "name": "协同文档",
  7381. "forms": _formdiv,
  7382. "click": function () {
  7383. U.MD.D.I.openApplication(str, obj, info);
  7384. }
  7385. }
  7386. break;
  7387. }
  7388. const script1 = document.createElement("script");
  7389. script1.type = "text/javascript";
  7390. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7391. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7392. const script2 = document.createElement("script");
  7393. script2.type = "text/javascript";
  7394. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7395. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7396. const script3 = document.createElement("script");
  7397. script3.type = "text/javascript";
  7398. script3.charset = "UTF-8";
  7399. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7400. const script4 = document.createElement("script");
  7401. script4.type = "text/javascript";
  7402. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7403. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7404. if (_iframe) {
  7405. if (str == 'doc') {
  7406. _iframe = _formdiv.querySelector('iframe')
  7407. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7408. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7409. _iframe.contentWindow.document.body.appendChild(script1);
  7410. _iframe.contentWindow.document.body.appendChild(script2);
  7411. // _iframe.contentWindow.document.body.appendChild(script3);
  7412. _iframe.contentWindow.document.body.appendChild(script4);
  7413. })
  7414. if (onloadListener) {
  7415. _iframe.contentDocument.location.reload()
  7416. } else {
  7417. _iframe.contentDocument.location.reload()
  7418. }
  7419. } else if (str == 'mind') {
  7420. _iframe = _formdiv.querySelector('iframe')
  7421. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7422. _iframe.contentWindow.document.body.appendChild(script1);
  7423. _iframe.contentWindow.document.body.appendChild(script2);
  7424. _iframe.contentWindow.document.body.appendChild(script4);
  7425. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7426. })
  7427. if (onloadListener) {
  7428. _iframe.contentDocument.location.reload()
  7429. } else {
  7430. _iframe.contentDocument.location.reload()
  7431. }
  7432. } else {
  7433. _iframe.onload = () => {
  7434. _iframe.contentWindow.document.body.appendChild(script1);
  7435. _iframe.contentWindow.document.body.appendChild(script2);
  7436. // _iframe.contentWindow.document.body.appendChild(script3);
  7437. _iframe.contentWindow.document.body.appendChild(script4);
  7438. };
  7439. }
  7440. _jie.onclick = async () => {
  7441. let text = ''
  7442. if (aTool == 6) {
  7443. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7444. } else if (aTool == 3) {
  7445. text = await U.MD.D.I.getEditorContent(_iframe);
  7446. }
  7447. _loading.style.display = 'flex'
  7448. console.log(_loading);
  7449. var _ajs = _iframe.contentWindow.document.createElement("script");
  7450. _ajs.type = "text/javascript";
  7451. _ajs.innerHTML =
  7452. // 'console.log(' + _loading + ');\n' +
  7453. 'var _js = document.createElement("script");\n' +
  7454. '_js.type="text/javascript";\n' +
  7455. '_js.charset="UTF-8";\n' +
  7456. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7457. "_js.onload = function(){\n" +
  7458. ' var a = document.getElementsByTagName("img")\n' +
  7459. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7460. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7461. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7462. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7463. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7464. "beforeUpload_shishi(file," +
  7465. "'" +
  7466. _userid +
  7467. "'" +
  7468. ", " +
  7469. "'" +
  7470. _cid +
  7471. "'" +
  7472. ", " +
  7473. "'" +
  7474. _stage +
  7475. "'" +
  7476. ", " +
  7477. "'" +
  7478. _task +
  7479. "'" +
  7480. ", " +
  7481. "'" +
  7482. _tool +
  7483. "'" +
  7484. ", " +
  7485. "'" +
  7486. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  7487. "'" +
  7488. ", " +
  7489. "'" +
  7490. aTool +
  7491. "'" +
  7492. ", " +
  7493. "`" +
  7494. text +
  7495. "`" +
  7496. ")\n" +
  7497. " });\n" +
  7498. "}\n" +
  7499. "document.head.appendChild(_js);\n";
  7500. _iframe.contentWindow.document.head.appendChild(_ajs);
  7501. }
  7502. }
  7503. //U.MD.D.I.openClick(str);
  7504. //如果有任务栏信息
  7505. // if (_taskbar) {
  7506. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7507. // }
  7508. }
  7509. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  7510. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7511. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7512. _userinfo = US.userInfo, //登录用户信息
  7513. _userid = US.userInfo.userid //登录用户id
  7514. let _iframe;
  7515. let _cid = cid,
  7516. _stage = stage,
  7517. _task = task,
  7518. _tool = tool;
  7519. var _jie = $$("div", {
  7520. "style": {
  7521. "position": "absolute",
  7522. "bottom": "50px",
  7523. "right": "50px",
  7524. "zIndex": "9999",
  7525. "backgroundColor": "#2268bc",
  7526. "color": "#fff",
  7527. "padding": "12px 20px",
  7528. "cursor": "pointer",
  7529. "borderRadius": "4px",
  7530. },
  7531. "innerHTML": "确认并提交"
  7532. })
  7533. let aTool = ''
  7534. let _loading = document.createElement('div')
  7535. _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;"
  7536. // _loading.id = "";
  7537. let _lchild = document.createElement('div')
  7538. let _limg = document.createElement('img')
  7539. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7540. _limg.style = "width: 26px;margin-right: 10px;"
  7541. _lchild.appendChild(_limg)
  7542. let _lspan = document.createElement('span')
  7543. _lspan.innerHTML = "上传中..."
  7544. _lchild.appendChild(_lspan)
  7545. _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%);"
  7546. _loading.appendChild(_lchild)
  7547. var _box = $$('div', {
  7548. "style": {
  7549. "position": "relative",
  7550. "width": "100%",
  7551. "height": "100%",
  7552. },
  7553. })
  7554. _box.appendChild(_loading)
  7555. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  7556. switch (str) {
  7557. case "whiteboard":
  7558. aTool = 1;
  7559. _iframe = $$("iframe", {
  7560. "frameborder": "no",
  7561. "border": "0",
  7562. "scrolling ": "no",
  7563. "style": {
  7564. "cssText": "border:0;width:100%;height:100%"
  7565. },
  7566. "src": "https://iwb.cocorobo.cn/"
  7567. })
  7568. _box.appendChild(_iframe);
  7569. _box.appendChild(_jie);
  7570. _formdiv = new U.UF.UI.form(
  7571. "电子白板",
  7572. _box, {
  7573. "id": "whiteboards" + cid + stage + task + tool,
  7574. "style": {
  7575. "width": "90%",
  7576. "height": "90%",
  7577. "overflow": 'hidden'
  7578. },
  7579. "onresize": function () { }
  7580. }, {
  7581. closecallback: function () { }
  7582. }, {
  7583. "style": {
  7584. "height": "36px"
  7585. }
  7586. }).form; //创建窗体
  7587. _taskbar = {
  7588. "id": str + _formdiv.id,
  7589. "style": {
  7590. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7591. },
  7592. "name": "电子白板",
  7593. "forms": _formdiv,
  7594. "click": function () {
  7595. U.MD.D.I.openApplication(str, obj, info);
  7596. }
  7597. }
  7598. break;
  7599. case "mind":
  7600. aTool = 3;
  7601. _iframe = $$("iframe", {
  7602. "frameborder": "no",
  7603. "border": "0",
  7604. "scrolling ": "no",
  7605. "style": {
  7606. "cssText": "border:0;width:100%;height:100%"
  7607. },
  7608. "src": "/kityminder-editor/dist/index.html"
  7609. });
  7610. _box.appendChild(_iframe);
  7611. _box.appendChild(_jie);
  7612. _formdiv = new U.UF.UI.form(
  7613. "思维导图",
  7614. _box, { //"/jsmind/example/demo.html"
  7615. "id": "minds" + cid + stage + task + tool,
  7616. "style": {
  7617. "width": "90%",
  7618. "height": "90%",
  7619. "overflow": 'hidden'
  7620. },
  7621. "onresize": function () { }
  7622. }, {
  7623. closecallback: function () { }
  7624. }, {
  7625. "style": {
  7626. "height": "36px"
  7627. }
  7628. }).form; //创建窗体
  7629. _taskbar = {
  7630. "id": str + _formdiv.id,
  7631. "style": {
  7632. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7633. },
  7634. "name": "思维导图",
  7635. "forms": _formdiv,
  7636. "click": function () {
  7637. U.MD.D.I.openApplication(str, obj, info);
  7638. }
  7639. }
  7640. break;
  7641. case "doc":
  7642. aTool = 6;
  7643. _iframe = $$("iframe", {
  7644. "frameborder": "no",
  7645. "border": "0",
  7646. "scrolling ": "no",
  7647. "style": {
  7648. "cssText": "border:0;width:100%;height:100%"
  7649. },
  7650. "src": "/Office/Word/WordEditArea.htm"
  7651. })
  7652. _box.appendChild(_iframe);
  7653. _box.appendChild(_jie);
  7654. _formdiv = new U.UF.UI.form(
  7655. "协同文档",
  7656. _box, {
  7657. "id": "docs" + cid + stage + task + tool,
  7658. "style": {
  7659. "width": "90%",
  7660. "height": "90%",
  7661. "overflow": 'hidden'
  7662. },
  7663. "onresize": function () { }
  7664. }, {
  7665. closecallback: function () { }
  7666. }, {
  7667. "style": {
  7668. "height": "36px"
  7669. }
  7670. }).form; //创建窗体
  7671. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7672. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7673. })
  7674. _taskbar = {
  7675. "id": str + _formdiv.id,
  7676. "style": {
  7677. "backgroundImage": "url(/img/icon/doc.png)"
  7678. },
  7679. "name": "协同文档",
  7680. "forms": _formdiv,
  7681. "click": function () {
  7682. U.MD.D.I.openApplication(str, obj, info);
  7683. }
  7684. }
  7685. break;
  7686. }
  7687. const script1 = document.createElement("script");
  7688. script1.type = "text/javascript";
  7689. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7690. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7691. const script2 = document.createElement("script");
  7692. script2.type = "text/javascript";
  7693. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7694. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7695. const script3 = document.createElement("script");
  7696. script3.type = "text/javascript";
  7697. script3.charset = "UTF-8";
  7698. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7699. const script4 = document.createElement("script");
  7700. script4.type = "text/javascript";
  7701. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7702. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  7703. if (_iframe) {
  7704. if (str == 'doc') {
  7705. _iframe = _formdiv.querySelector('iframe')
  7706. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7707. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7708. _iframe.contentWindow.document.body.appendChild(script1);
  7709. _iframe.contentWindow.document.body.appendChild(script2);
  7710. // _iframe.contentWindow.document.body.appendChild(script3);
  7711. _iframe.contentWindow.document.body.appendChild(script4);
  7712. })
  7713. if (onloadListener) {
  7714. _iframe.contentDocument.location.reload()
  7715. } else {
  7716. _iframe.contentDocument.location.reload()
  7717. }
  7718. } else if (str == 'mind') {
  7719. _iframe = _formdiv.querySelector('iframe')
  7720. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7721. _iframe.contentWindow.document.body.appendChild(script1);
  7722. _iframe.contentWindow.document.body.appendChild(script2);
  7723. _iframe.contentWindow.document.body.appendChild(script4);
  7724. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7725. })
  7726. if (onloadListener) {
  7727. _iframe.contentDocument.location.reload()
  7728. } else {
  7729. _iframe.contentDocument.location.reload()
  7730. }
  7731. } else {
  7732. _iframe.onload = () => {
  7733. _iframe.contentWindow.document.body.appendChild(script1);
  7734. _iframe.contentWindow.document.body.appendChild(script2);
  7735. // _iframe.contentWindow.document.body.appendChild(script3);
  7736. _iframe.contentWindow.document.body.appendChild(script4);
  7737. };
  7738. }
  7739. _jie.onclick = async () => {
  7740. let text = ''
  7741. if (aTool == 6) {
  7742. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7743. } else if (aTool == 3) {
  7744. text = await U.MD.D.I.getEditorContent(_iframe);
  7745. }
  7746. _loading.style.display = 'flex'
  7747. console.log(_loading);
  7748. var _ajs = _iframe.contentWindow.document.createElement("script");
  7749. _ajs.type = "text/javascript";
  7750. _ajs.innerHTML =
  7751. // 'console.log(' + _loading + ');\n' +
  7752. 'var _js = document.createElement("script");\n' +
  7753. '_js.type="text/javascript";\n' +
  7754. '_js.charset="UTF-8";\n' +
  7755. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7756. "_js.onload = function(){\n" +
  7757. ' var a = document.getElementsByTagName("img")\n' +
  7758. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7759. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7760. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7761. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7762. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7763. "beforeUpload_shishi(file," +
  7764. "'" +
  7765. _userid +
  7766. "'" +
  7767. ", " +
  7768. "'" +
  7769. _cid +
  7770. "'" +
  7771. ", " +
  7772. "'" +
  7773. _stage +
  7774. "'" +
  7775. ", " +
  7776. "'" +
  7777. _task +
  7778. "'" +
  7779. ", " +
  7780. "'" +
  7781. _tool +
  7782. "'" +
  7783. ", " +
  7784. "'" +
  7785. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  7786. "'" +
  7787. ", " +
  7788. "'" +
  7789. aTool +
  7790. "'" +
  7791. ", " +
  7792. "`" +
  7793. text +
  7794. "`" +
  7795. ")\n" +
  7796. " });\n" +
  7797. "}\n" +
  7798. "document.head.appendChild(_js);\n";
  7799. _iframe.contentWindow.document.head.appendChild(_ajs);
  7800. }
  7801. }
  7802. //U.MD.D.I.openClick(str);
  7803. //如果有任务栏信息
  7804. // if (_taskbar) {
  7805. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7806. // }
  7807. }
  7808. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  7809. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7810. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7811. _userinfo = US.userInfo, //登录用户信息
  7812. _userid = US.userInfo.userid //登录用户id
  7813. let _iframe;
  7814. let _cid = cid,
  7815. _stage = stage,
  7816. _task = task,
  7817. _tool = tool;
  7818. var _jie = $$("div", {
  7819. "style": {
  7820. "position": "absolute",
  7821. "bottom": "50px",
  7822. "right": "50px",
  7823. "zIndex": "9999",
  7824. "backgroundColor": "#2268bc",
  7825. "color": "#fff",
  7826. "padding": "12px 20px",
  7827. "cursor": "pointer",
  7828. "borderRadius": "4px",
  7829. },
  7830. "innerHTML": "上传模板"
  7831. })
  7832. let aTool = ''
  7833. let _loading = document.createElement('div')
  7834. _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;"
  7835. // _loading.id = "";
  7836. let _lchild = document.createElement('div')
  7837. let _limg = document.createElement('img')
  7838. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7839. _limg.style = "width: 26px;margin-right: 10px;"
  7840. _lchild.appendChild(_limg)
  7841. let _lspan = document.createElement('span')
  7842. _lspan.innerHTML = "上传中..."
  7843. _lchild.appendChild(_lspan)
  7844. _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%);"
  7845. _loading.appendChild(_lchild)
  7846. var _box = $$('div', {
  7847. "style": {
  7848. "position": "relative",
  7849. "width": "100%",
  7850. "height": "100%",
  7851. },
  7852. })
  7853. _box.appendChild(_loading)
  7854. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  7855. switch (str) {
  7856. case "whiteboard":
  7857. aTool = 1;
  7858. _iframe = $$("iframe", {
  7859. "frameborder": "no",
  7860. "border": "0",
  7861. "scrolling ": "no",
  7862. "style": {
  7863. "cssText": "border:0;width:100%;height:100%"
  7864. },
  7865. "src": "https://iwb.cocorobo.cn/"
  7866. })
  7867. _box.appendChild(_iframe);
  7868. _box.appendChild(_jie);
  7869. _formdiv = new U.UF.UI.form(
  7870. "电子白板",
  7871. _box, {
  7872. "id": "whiteboards_Yu" + cid + stage + task + tool,
  7873. "style": {
  7874. "width": "90%",
  7875. "height": "90%",
  7876. "overflow": 'hidden'
  7877. },
  7878. "onresize": function () { }
  7879. }, {
  7880. closecallback: function () { }
  7881. }, {
  7882. "style": {
  7883. "height": "36px"
  7884. }
  7885. }).form; //创建窗体
  7886. _taskbar = {
  7887. "id": str + _formdiv.id,
  7888. "style": {
  7889. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7890. },
  7891. "name": "电子白板",
  7892. "forms": _formdiv,
  7893. "click": function () {
  7894. U.MD.D.I.openApplication(str, obj, info);
  7895. }
  7896. }
  7897. break;
  7898. case "mind":
  7899. aTool = 3;
  7900. _iframe = $$("iframe", {
  7901. "frameborder": "no",
  7902. "border": "0",
  7903. "scrolling ": "no",
  7904. "style": {
  7905. "cssText": "border:0;width:100%;height:100%"
  7906. },
  7907. "src": "/kityminder-editor/dist/index.html"
  7908. });
  7909. _box.appendChild(_iframe);
  7910. _box.appendChild(_jie);
  7911. _formdiv = new U.UF.UI.form(
  7912. "思维导图",
  7913. _box, { //"/jsmind/example/demo.html"
  7914. "id": "minds_Yu" + cid + stage + task + tool,
  7915. "style": {
  7916. "width": "90%",
  7917. "height": "90%",
  7918. "overflow": 'hidden'
  7919. },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, {
  7924. "style": {
  7925. "height": "36px"
  7926. }
  7927. }).form; //创建窗体
  7928. _taskbar = {
  7929. "id": str + _formdiv.id,
  7930. "style": {
  7931. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7932. },
  7933. "name": "思维导图",
  7934. "forms": _formdiv,
  7935. "click": function () {
  7936. U.MD.D.I.openApplication(str, obj, info);
  7937. }
  7938. }
  7939. break;
  7940. case "doc":
  7941. aTool = 6;
  7942. _iframe = $$("iframe", {
  7943. "frameborder": "no",
  7944. "border": "0",
  7945. "scrolling ": "no",
  7946. "style": {
  7947. "cssText": "border:0;width:100%;height:100%"
  7948. },
  7949. "src": "/Office/Word/WordEditArea.htm"
  7950. })
  7951. _box.appendChild(_iframe);
  7952. _box.appendChild(_jie);
  7953. _formdiv = new U.UF.UI.form(
  7954. "协同文档",
  7955. _box, {
  7956. "id": "docs_Yu" + cid + stage + task + tool,
  7957. "style": {
  7958. "width": "90%",
  7959. "height": "90%",
  7960. "overflow": 'hidden'
  7961. },
  7962. "onresize": function () { }
  7963. }, {
  7964. closecallback: function () { }
  7965. }, {
  7966. "style": {
  7967. "height": "36px"
  7968. }
  7969. }).form; //创建窗体
  7970. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7971. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7972. })
  7973. _taskbar = {
  7974. "id": str + _formdiv.id,
  7975. "style": {
  7976. "backgroundImage": "url(/img/icon/doc.png)"
  7977. },
  7978. "name": "协同文档",
  7979. "forms": _formdiv,
  7980. "click": function () {
  7981. U.MD.D.I.openApplication(str, obj, info);
  7982. }
  7983. }
  7984. break;
  7985. case "CocoPi":
  7986. aTool = 57;
  7987. _iframe = $$("iframe", {
  7988. "allowpaymentrequest": "allowpaymentrequest",
  7989. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  7990. "webkitallowfullscreen": "",
  7991. "mozallowfullscreen": "",
  7992. "frameborder": "no",
  7993. "border": "0",
  7994. "scrolling ": "no",
  7995. "style": {
  7996. "cssText": "border:0;width:100%;height:100%"
  7997. },
  7998. "src": "https://pi.cocorobo.cn/"
  7999. })
  8000. _box.appendChild(_iframe);
  8001. _box.appendChild(_jie);
  8002. _formdiv = new U.UF.UI.form(
  8003. "CocoPi",
  8004. _box, {
  8005. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8006. "style": {
  8007. "width": "90%",
  8008. "height": "90%",
  8009. "overflow": 'hidden'
  8010. },
  8011. "onresize": function () { }
  8012. }, {
  8013. closecallback: function () { }
  8014. }, {
  8015. "style": {
  8016. "height": "36px"
  8017. }
  8018. }).form; //创建窗体
  8019. _taskbar = {
  8020. "id": str + _formdiv.id,
  8021. "style": {
  8022. "backgroundImage": "url(/img/icon/cocopi.png)"
  8023. },
  8024. "name": "CocoPi",
  8025. "forms": _formdiv,
  8026. "click": function () {
  8027. U.MD.D.I.openApplication(str, obj, info);
  8028. }
  8029. }
  8030. break;
  8031. }
  8032. if (_iframe) {
  8033. if (str == 'doc') {
  8034. _iframe = _formdiv.querySelector('iframe')
  8035. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8036. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8037. })
  8038. if (onloadListener) {
  8039. _iframe.contentDocument.location.reload()
  8040. } else {
  8041. _iframe.contentDocument.location.reload()
  8042. }
  8043. } else if (str == 'mind') {
  8044. _iframe = _formdiv.querySelector('iframe')
  8045. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8046. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8047. })
  8048. if (onloadListener) {
  8049. _iframe.contentDocument.location.reload()
  8050. } else {
  8051. _iframe.contentDocument.location.reload()
  8052. }
  8053. } else if (str == 'whiteboard') {
  8054. _iframe = _formdiv.querySelector('iframe')
  8055. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8056. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8057. })
  8058. if (onloadListener) {
  8059. _iframe.contentDocument.location.reload()
  8060. } else {
  8061. _iframe.contentDocument.location.reload()
  8062. }
  8063. } else if (str == 'CocoPi') {
  8064. _iframe = _formdiv.querySelector('iframe')
  8065. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8066. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8067. })
  8068. if (onloadListener) {
  8069. _iframe.contentDocument.location.reload()
  8070. } else {
  8071. _iframe.contentDocument.location.reload()
  8072. }
  8073. } else {
  8074. _iframe.onload = () => { };
  8075. }
  8076. _jie.onclick = async () => {
  8077. let text = ''
  8078. let type = '2'
  8079. if (aTool == 1) {
  8080. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8081. type = '3'
  8082. } else if (aTool == 6) {
  8083. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8084. type = '1'
  8085. } else if (aTool == 3) {
  8086. text = await U.MD.D.I.getEditorContent(_iframe);
  8087. type = '2'
  8088. } else if (aTool == 57) {
  8089. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8090. type = '4'
  8091. }
  8092. _loading.style.display = 'flex'
  8093. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8094. }
  8095. }
  8096. //U.MD.D.I.openClick(str);
  8097. //如果有任务栏信息
  8098. // if (_taskbar) {
  8099. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8100. // }
  8101. }
  8102. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8103. var xmlhttp;
  8104. var Mac, Sn, DeviceId
  8105. if (window.XMLHttpRequest) {
  8106. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8107. xmlhttp = new XMLHttpRequest();
  8108. } else {
  8109. // IE6, IE5 浏览器执行代码
  8110. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8111. }
  8112. xmlhttp.onreadystatechange = function () {
  8113. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8114. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8115. // resolve(res.value[0][0].text);
  8116. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8117. }
  8118. }
  8119. }
  8120. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8121. xmlhttp.send();
  8122. }
  8123. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8124. var xmlhttp;
  8125. var Mac, Sn, DeviceId
  8126. if (window.XMLHttpRequest) {
  8127. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8128. xmlhttp = new XMLHttpRequest();
  8129. } else {
  8130. // IE6, IE5 浏览器执行代码
  8131. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8132. }
  8133. xmlhttp.onreadystatechange = function () {
  8134. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8135. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8136. // resolve(res.value[0][0].text);
  8137. if (type == '2') {
  8138. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8139. } else if (type == '3') {
  8140. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8141. } else if (type == '4') {
  8142. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8143. }
  8144. } else {
  8145. if (type == '2') {
  8146. iframe.contentWindow.editor.minder.importData('json', '')
  8147. } else if (type == '3') {
  8148. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8149. } else if (type == '4') {
  8150. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8151. }
  8152. }
  8153. }
  8154. }
  8155. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8156. xmlhttp.send();
  8157. }
  8158. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8159. var xmlhttp;
  8160. var Mac, Sn, DeviceId
  8161. if (window.XMLHttpRequest) {
  8162. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8163. xmlhttp = new XMLHttpRequest();
  8164. } else {
  8165. // IE6, IE5 浏览器执行代码
  8166. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8167. }
  8168. xmlhttp.onreadystatechange = function () {
  8169. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8170. if (xmlhttp.response) {
  8171. // resolve(res.value[0][0].text);
  8172. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8173. // $(fileInput).val('');
  8174. // });
  8175. span.innerHTML = '上传成功'
  8176. setTimeout(() => {
  8177. loading.style.display = 'none'
  8178. }, 1000);
  8179. }
  8180. }
  8181. }
  8182. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8183. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8184. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8185. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8186. // 设置请求头,表示请求体的编码格式
  8187. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8188. // 设置请求体,使用url-encoded格式的数据
  8189. }
  8190. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8191. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8192. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8193. _userinfo = US.userInfo, //登录用户信息
  8194. _userid = US.userInfo.userid //登录用户id
  8195. let _iframe;
  8196. let _cid = cid,
  8197. _stage = stage,
  8198. _task = task,
  8199. _tool = tool;
  8200. var _jie = $$("div", {
  8201. "style": {
  8202. "position": "absolute",
  8203. "bottom": "50px",
  8204. "right": "50px",
  8205. "zIndex": "9999",
  8206. "backgroundColor": "#2268bc",
  8207. "color": "#fff",
  8208. "padding": "12px 20px",
  8209. "cursor": "pointer",
  8210. "borderRadius": "4px",
  8211. },
  8212. "innerHTML": "提交作业"
  8213. })
  8214. let aTool = ''
  8215. let _loading = document.createElement('div')
  8216. _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;"
  8217. // _loading.id = "";
  8218. let _lchild = document.createElement('div')
  8219. let _limg = document.createElement('img')
  8220. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8221. _limg.style = "width: 26px;margin-right: 10px;"
  8222. _lchild.appendChild(_limg)
  8223. let _lspan = document.createElement('span')
  8224. _lspan.innerHTML = "上传中..."
  8225. _lchild.appendChild(_lspan)
  8226. _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%);"
  8227. _loading.appendChild(_lchild)
  8228. var _box = $$('div', {
  8229. "style": {
  8230. "position": "relative",
  8231. "width": "100%",
  8232. "height": "100%",
  8233. },
  8234. })
  8235. _box.appendChild(_loading)
  8236. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8237. switch (str) {
  8238. case "CocoPi":
  8239. aTool = 57;
  8240. _iframe = $$("iframe", {
  8241. "allowpaymentrequest": "allowpaymentrequest",
  8242. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8243. "webkitallowfullscreen": "",
  8244. "mozallowfullscreen": "",
  8245. "frameborder": "no",
  8246. "border": "0",
  8247. "scrolling ": "no",
  8248. "style": {
  8249. "cssText": "border:0;width:100%;height:100%"
  8250. },
  8251. "src": "https://pi.cocorobo.cn/"
  8252. })
  8253. _box.appendChild(_iframe);
  8254. _box.appendChild(_jie);
  8255. _formdiv = new U.UF.UI.form(
  8256. "CocoPi",
  8257. _box, {
  8258. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8259. "style": {
  8260. "width": "90%",
  8261. "height": "90%",
  8262. "overflow": 'hidden'
  8263. },
  8264. "onresize": function () { }
  8265. }, {
  8266. closecallback: function () { }
  8267. }, {
  8268. "style": {
  8269. "height": "36px"
  8270. }
  8271. }).form; //创建窗体
  8272. _taskbar = {
  8273. "id": str + _formdiv.id,
  8274. "style": {
  8275. "backgroundImage": "url(/img/icon/cocopi.png)"
  8276. },
  8277. "name": "CocoPi",
  8278. "forms": _formdiv,
  8279. "click": function () {
  8280. U.MD.D.I.openApplication(str, obj, info);
  8281. }
  8282. }
  8283. break;
  8284. }
  8285. if (_iframe) {
  8286. if (str == 'CocoPi') {
  8287. _iframe = _formdiv.querySelector('iframe')
  8288. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8289. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8290. })
  8291. if (onloadListener) {
  8292. _iframe.contentDocument.location.reload()
  8293. } else {
  8294. _iframe.contentDocument.location.reload()
  8295. }
  8296. }
  8297. _jie.onclick = async () => {
  8298. let text = ''
  8299. if (aTool == 57) {
  8300. text = _iframe.contentWindow.getLoadXmlStr()
  8301. }
  8302. _loading.style.display = 'flex'
  8303. console.log(_loading);
  8304. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8305. _loading.style.display = 'none'
  8306. let _div = document.createElement('div')
  8307. _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;"
  8308. let _inner = document.createElement('div')
  8309. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8310. _inner.innerHTML = "上传成功"
  8311. _div.appendChild(_inner)
  8312. _iframe.contentWindow.window.document.body.appendChild(_div)
  8313. _div.onclick = () => {
  8314. _iframe.contentWindow.window.document.body.removeChild(_div)
  8315. }
  8316. setTimeout(() => {
  8317. _iframe.contentWindow.window.document.body.removeChild(_div)
  8318. }, 1000);
  8319. }, [], { "type": "POST", "withCredentials": true });
  8320. }
  8321. }
  8322. }
  8323. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8324. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8325. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8326. _userid = student.userid, //登录用户id
  8327. _username = student.student //用户名字
  8328. let _iframe;
  8329. let _cid = cid,
  8330. _stage = stage,
  8331. _task = task,
  8332. _tool = tool;
  8333. var _jie = $$("div", {
  8334. "style": {
  8335. "position": "absolute",
  8336. "bottom": "50px",
  8337. "right": "50px",
  8338. "zIndex": "9999",
  8339. "backgroundColor": "#2268bc",
  8340. "color": "#fff",
  8341. "padding": "12px 20px",
  8342. "cursor": "pointer",
  8343. "borderRadius": "4px",
  8344. },
  8345. "innerHTML": "提交作业"
  8346. })
  8347. let aTool = ''
  8348. let _loading = document.createElement('div')
  8349. _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;"
  8350. // _loading.id = "";
  8351. let _lchild = document.createElement('div')
  8352. let _limg = document.createElement('img')
  8353. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8354. _limg.style = "width: 26px;margin-right: 10px;"
  8355. _lchild.appendChild(_limg)
  8356. let _lspan = document.createElement('span')
  8357. _lspan.innerHTML = "上传中..."
  8358. _lchild.appendChild(_lspan)
  8359. _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%);"
  8360. _loading.appendChild(_lchild)
  8361. var _box = $$('div', {
  8362. "style": {
  8363. "position": "relative",
  8364. "width": "100%",
  8365. "height": "100%",
  8366. },
  8367. })
  8368. _box.appendChild(_loading)
  8369. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8370. switch (str) {
  8371. case "CocoPi":
  8372. aTool = 57;
  8373. _iframe = $$("iframe", {
  8374. "allowpaymentrequest": "allowpaymentrequest",
  8375. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8376. "webkitallowfullscreen": "",
  8377. "mozallowfullscreen": "",
  8378. "frameborder": "no",
  8379. "border": "0",
  8380. "scrolling ": "no",
  8381. "style": {
  8382. "cssText": "border:0;width:100%;height:100%"
  8383. },
  8384. "src": "https://pi.cocorobo.cn/"
  8385. })
  8386. _box.appendChild(_iframe);
  8387. _box.appendChild(_jie);
  8388. _formdiv = new U.UF.UI.form(
  8389. "CocoPi-" + _username,
  8390. _box, {
  8391. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8392. "style": {
  8393. "width": "90%",
  8394. "height": "90%",
  8395. "overflow": 'hidden'
  8396. },
  8397. "onresize": function () { }
  8398. }, {
  8399. closecallback: function () { }
  8400. }, {
  8401. "style": {
  8402. "height": "36px"
  8403. }
  8404. }).form; //创建窗体
  8405. _taskbar = {
  8406. "id": str + _formdiv.id,
  8407. "style": {
  8408. "backgroundImage": "url(/img/icon/cocopi.png)"
  8409. },
  8410. "name": "CocoPi",
  8411. "forms": _formdiv,
  8412. "click": function () {
  8413. U.MD.D.I.openApplication(str, obj, info);
  8414. }
  8415. }
  8416. break;
  8417. }
  8418. if (_iframe) {
  8419. if (str == 'CocoPi') {
  8420. _iframe = _formdiv.querySelector('iframe')
  8421. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8422. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8423. })
  8424. if (onloadListener) {
  8425. _iframe.contentDocument.location.reload()
  8426. } else {
  8427. _iframe.contentDocument.location.reload()
  8428. }
  8429. }
  8430. _jie.onclick = async () => {
  8431. let text = ''
  8432. if (aTool == 57) {
  8433. text = _iframe.contentWindow.getLoadXmlStr()
  8434. }
  8435. _loading.style.display = 'flex'
  8436. console.log(_loading);
  8437. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8438. _loading.style.display = 'none'
  8439. let _div = document.createElement('div')
  8440. _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;"
  8441. let _inner = document.createElement('div')
  8442. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8443. _inner.innerHTML = "上传成功"
  8444. _div.appendChild(_inner)
  8445. _iframe.contentWindow.window.document.body.appendChild(_div)
  8446. _div.onclick = () => {
  8447. _iframe.contentWindow.window.document.body.removeChild(_div)
  8448. }
  8449. setTimeout(() => {
  8450. _iframe.contentWindow.window.document.body.removeChild(_div)
  8451. }, 1000);
  8452. }, [], { "type": "POST", "withCredentials": true });
  8453. }
  8454. }
  8455. }
  8456. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  8457. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  8458. if (res.value[0].length > 0) {
  8459. if (atool == 57) {
  8460. iframe.contentWindow.loadingXml(res.value[0][0].content)
  8461. }
  8462. } else {
  8463. if (atool == 57) {
  8464. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  8465. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8466. }
  8467. }
  8468. }, [], { "type": "POST", "withCredentials": true });
  8469. }