DeskTop.js 573 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //北师大
  268. U.MD.D.I.BSDNSteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "数字实验室", "Url": "number", "style": { "cssText": "background-image:url(/img/icon/number.png)" } },
  305. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. //松山湖
  310. U.MD.D.I.SONGteacherDeskIcon = [
  311. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  312. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  315. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  316. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  317. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  318. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  319. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  320. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  321. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  322. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  323. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  324. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  325. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  326. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  327. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  328. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  329. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  330. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  331. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  332. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  333. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  334. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  335. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  336. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  337. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  338. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  339. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  340. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  341. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  342. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  343. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  344. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  345. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  348. ];
  349. U.MD.D.I.tcStudentDeskIcon = [
  350. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  352. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  353. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  354. ];
  355. U.MD.D.I.tcTeacherDeskIcon = [
  356. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  358. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  359. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  360. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  361. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  362. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  363. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  364. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  365. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  366. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  367. ];
  368. U.MD.D.I.tcOrganizerDeskIcon = [
  369. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  370. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  371. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  372. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  374. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  375. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  376. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  377. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  378. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  379. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  381. ];
  382. U.MD.D.I.szscStudentDeskIcon = [
  383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  385. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  388. ];
  389. U.MD.D.I.szscTeacherDeskIcon = [
  390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  391. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  392. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  395. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  396. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  397. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  398. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  399. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  400. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  401. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  402. ];
  403. U.MD.D.I.szscOrganizerDeskIcon = [
  404. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  405. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  406. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  407. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  408. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  409. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  410. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  411. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  428. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  429. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  432. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  434. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  435. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  436. ];
  437. U.MD.D.I.wankeAdminDeskIcon = [
  438. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  439. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  440. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  441. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  442. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  444. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  445. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  446. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  447. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  448. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  449. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  450. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  451. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  454. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  456. ];
  457. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  462. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  464. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  465. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  466. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  470. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  472. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  473. ];
  474. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  482. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  483. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  484. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  485. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  487. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  490. ];
  491. //明德教师桌面图标的全局变量
  492. U.MD.D.I.MingdeTeacherDeskIcon = [
  493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  499. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  500. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  501. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  502. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  503. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  504. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  505. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  506. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  507. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  508. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  509. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  510. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  511. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  512. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  513. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  514. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  515. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  516. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  517. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  518. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  519. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  520. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  521. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  522. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  525. ];
  526. //97c4ee8b-d010-4042-986d-e9d3c217264f
  527. //教师桌面图标的全局变量
  528. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  529. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  531. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  532. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  535. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  536. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  537. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  538. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  540. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  541. ];
  542. //福田
  543. U.MD.D.I.futianTeacherDeskIcon = [
  544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  546. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  547. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  548. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  549. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  550. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  552. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  553. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  556. ];
  557. //福田
  558. U.MD.D.I.futianAdminDeskIcon = [
  559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  561. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  563. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  564. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  565. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  566. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  567. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  568. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  570. ];
  571. //lotech
  572. U.MD.D.I.lotechTeacherDeskIcon = [
  573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  582. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  583. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  584. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. ];
  590. //龙华中心小学教师桌面图标的全局变量
  591. U.MD.D.I.longhuateacherDeskIcon = [
  592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  599. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  600. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  601. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  602. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  603. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  606. ];
  607. //教科院实小教师桌面图标的全局变量
  608. U.MD.D.I.siesteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  615. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  616. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  617. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  618. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  619. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  621. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  622. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  623. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  625. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  626. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  628. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  630. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  631. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  635. ];
  636. //教科院实小教师桌面图标的全局变量
  637. U.MD.D.I.siesStudentDeskIcon = [
  638. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  642. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  643. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  644. ];
  645. //中山小学教师桌面图标的全局变量
  646. U.MD.D.I.guzmsteacherDeskIcon = [
  647. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  648. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  649. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  650. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  652. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  653. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  655. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  659. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  660. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  661. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  664. ];
  665. //中山小学学生桌面图标的全局变量
  666. U.MD.D.I.guzmsStudentDeskIcon = [
  667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  670. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  671. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  672. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  673. ];
  674. //福田
  675. U.MD.D.I.gdjgTeacherDeskIcon = [
  676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  680. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  681. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. ];
  691. //gdjg
  692. U.MD.D.I.gdjgAdminDeskIcon = [
  693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  698. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  700. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  701. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  702. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  703. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkteacherDeskIcon = [
  709. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  710. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  712. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  713. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  714. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  715. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  716. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  717. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  718. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  719. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  720. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  721. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  722. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  723. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  725. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  726. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  727. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  728. ];
  729. //hk
  730. U.MD.D.I.hkStudentDeskIcon = [
  731. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  737. ];
  738. //hk
  739. U.MD.D.I.hkaceteacherDeskIcon = [
  740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  746. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  747. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  748. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  749. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  750. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  751. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  752. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  753. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  754. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  755. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  756. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  757. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  758. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  759. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  760. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  761. ];
  762. //hk
  763. U.MD.D.I.hkaceStudentDeskIcon = [
  764. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  768. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  770. ];
  771. //香海正覺蓮社佛教正覺中學
  772. U.MD.D.I.hkZJLSteacherDeskIcon = [
  773. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  774. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  775. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  776. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  777. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  778. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  779. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  780. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  781. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  782. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  783. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  784. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  786. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  789. ];
  790. //香海正覺蓮社佛教正覺中學
  791. U.MD.D.I.hkZJLSStudentDeskIcon = [
  792. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. ];
  797. //云海
  798. U.MD.D.I.yunhaiTeacherDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  805. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  806. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  807. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  808. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  809. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  810. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  811. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  812. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  816. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  817. ];
  818. //福田
  819. U.MD.D.I.heyuanTeacherDeskIcon = [
  820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  825. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  826. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  827. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  829. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  830. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  831. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  832. ];
  833. //福田
  834. U.MD.D.I.heyuanAdminDeskIcon = [
  835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  837. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  839. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  840. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  841. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  842. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  843. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  848. U.MD.D.I.szherTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  857. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  858. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  859. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  860. ];
  861. //dsei
  862. U.MD.D.I.dseiTeacherDeskIcon = [
  863. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  864. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  865. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  866. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  872. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  873. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  874. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  875. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  876. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  877. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  878. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  879. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  880. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  881. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  882. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  883. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  884. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  885. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  886. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  887. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  888. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  889. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  890. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  891. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  892. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  893. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  894. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  895. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  896. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  897. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  898. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  899. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  900. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  901. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  902. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  903. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  904. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  905. ];
  906. //dsei
  907. U.MD.D.I.dseiAdminDeskIcon = [
  908. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  909. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  910. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  911. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  915. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  916. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  917. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  918. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  919. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  920. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  921. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  922. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  923. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  924. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  925. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  926. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  927. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  928. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  929. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  930. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  931. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  932. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  933. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  934. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  935. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  936. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  937. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  938. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  939. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  940. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  941. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  942. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  943. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  944. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  945. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  946. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  947. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  948. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  949. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  950. ];
  951. //dsei
  952. U.MD.D.I.dseiStudentDeskIcon = [
  953. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  954. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  955. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  956. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  959. ];
  960. //未来教育基地
  961. U.MD.D.I.szjkyTeacherDeskIcon = [
  962. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  963. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  964. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  965. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  966. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  967. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  968. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  969. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  970. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  971. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  972. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  975. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  977. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  978. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  979. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  980. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  981. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  982. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  983. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  984. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  985. ];
  986. //未来教育基地
  987. U.MD.D.I.szjkyAdminDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  995. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  996. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  997. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  998. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  999. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1000. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1006. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1007. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1009. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1010. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1011. ];
  1012. //未来教育基地
  1013. U.MD.D.I.szjkyStudentDeskIcon = [
  1014. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1015. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1016. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1017. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1018. ];
  1019. //成华教育局
  1020. U.MD.D.I.chjyjTeacherDeskIcon = [
  1021. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1022. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1023. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1024. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1025. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1026. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1027. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1028. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1029. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1030. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1031. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1032. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1035. ];
  1036. //成华教育局chjyj
  1037. U.MD.D.I.chjyjAdminDeskIcon = [
  1038. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1039. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1040. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1041. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1042. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1043. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1044. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1045. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1046. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1047. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1048. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1053. ];
  1054. //成华教育局chjyj
  1055. U.MD.D.I.chjyjStudentDeskIcon = [
  1056. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1058. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1059. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1060. ];
  1061. //tpc
  1062. U.MD.D.I.tpcStudentDeskIcon = [
  1063. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1067. ];
  1068. //tpc
  1069. U.MD.D.I.tpcTeacherDeskIcon = [
  1070. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1071. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1072. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1073. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1075. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1076. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1077. ];
  1078. //tpc
  1079. U.MD.D.I.tpcAdminDeskIcon = [
  1080. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1081. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1082. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1083. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1084. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1085. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1086. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1087. ];
  1088. //THU-IOE
  1089. U.MD.D.I.thuioeTeacherDeskIcon = [
  1090. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1091. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1092. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1093. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1094. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1095. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1096. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1097. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1098. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1099. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1100. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1101. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1102. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1103. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1104. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1105. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1106. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1107. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1108. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1109. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1110. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1111. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1112. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1113. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1114. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1115. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1116. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1117. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1118. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1119. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1120. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1121. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1122. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1123. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. ];
  1130. //THU-IOE
  1131. U.MD.D.I.thuioeStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //jccssyl
  1138. U.MD.D.I.jccssylTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //jccssyl
  1160. U.MD.D.I.jccssylStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //cale
  1167. U.MD.D.I.caleTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1175. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1180. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1181. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1182. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1183. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1184. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1186. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1187. ];
  1188. //cale
  1189. U.MD.D.I.caleStudentDeskIcon = [
  1190. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1191. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1192. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1197. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1198. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1204. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1205. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1206. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1207. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1208. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1209. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1210. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1211. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1212. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1213. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1214. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1215. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1216. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1217. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1218. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1219. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1220. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1221. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1222. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1223. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1224. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1225. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1226. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1227. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1228. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1229. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1230. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1233. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1234. ];
  1235. //lqwmsgzs
  1236. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1237. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1241. ];
  1242. //盐田区幼儿园
  1243. U.MD.D.I.ytyTeacherDeskIcon = [
  1244. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1245. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1246. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1248. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1250. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1251. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1256. ];
  1257. //盐田区幼儿园
  1258. U.MD.D.I.ytyStudentDeskIcon = [
  1259. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1261. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiAdminDeskIcon = [
  1291. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1292. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1309. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1310. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1312. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1313. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1314. ];
  1315. //scnuai
  1316. U.MD.D.I.scnuaiStudentDeskIcon = [
  1317. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. ];
  1322. //cocobiz
  1323. U.MD.D.I.cocobizteacherDeskIcon = [
  1324. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1325. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1326. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1327. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1328. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1329. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1330. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1331. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1332. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1333. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1334. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1335. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1336. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1337. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1340. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1341. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1342. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1343. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1344. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1345. ];
  1346. //cocobiz
  1347. U.MD.D.I.cocobizStudentDeskIcon = [
  1348. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1354. ];
  1355. //xxzjky
  1356. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1357. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1358. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1359. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1360. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1361. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1362. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1363. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1364. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1365. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1366. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1367. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1368. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1370. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1371. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1377. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1378. ];
  1379. //xxzjky
  1380. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1381. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1385. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //#region 桌面初始化a
  1389. /**
  1390. * 初始化桌面的起始函数
  1391. *
  1392. */
  1393. U.MD.D.I.init = function () {
  1394. if ($("#U_MD_D_K")[0]) {
  1395. //初始化桌面图标
  1396. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1397. // var clickUrl = ':12588/requestIp.php';
  1398. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1399. // U.MD.D.I.Ip = data;
  1400. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1401. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1402. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1403. // })
  1404. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1405. // })
  1406. }
  1407. }
  1408. /**
  1409. * 模式切换
  1410. *
  1411. */
  1412. U.MD.D.I.ModeCheck = function (type) {
  1413. if (US.Config.type == type) {
  1414. return
  1415. }
  1416. US.Config.type = type
  1417. $('.U_PBL_Check .active')[0].className = ''
  1418. if (type == 1) {
  1419. $('.U_PBL_Check div')[0].className = 'active'
  1420. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1421. } else {
  1422. $('.U_PBL_Check div')[1].className = 'active'
  1423. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1424. }
  1425. //初始化桌面图标
  1426. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1427. if (type == 2) {
  1428. U.MD.D.I.openApplication("project")
  1429. }
  1430. }
  1431. /**
  1432. * 隐藏任务栏
  1433. *
  1434. * @param {element} 桌面元素
  1435. */
  1436. U.MD.D.I.hiddenTaskbar = function (el) {
  1437. //任务栏位置变小
  1438. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1439. //桌面的位置变大
  1440. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1441. }
  1442. /**
  1443. * 隐藏任务栏
  1444. *
  1445. * @param {element} 桌面元素
  1446. */
  1447. U.MD.D.I.hiddenTaskbarout = function (el) {
  1448. //任务栏位置变小
  1449. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1450. //任务栏位置变化
  1451. U.selectEl(el).css({ "bottom": "-60px" });
  1452. //桌面的位置变大
  1453. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1454. }
  1455. }
  1456. /**
  1457. * 初始化打印桌面图标
  1458. *
  1459. * @param {element} 桌面元素
  1460. */
  1461. U.MD.D.I.initDesktopIcons = function (el, type) {
  1462. var i, //用于循环
  1463. _content, //桌面图标元素
  1464. _iconcontent, //桌面图标元素
  1465. _frag = $$("frag"), //定义一个碎片元素
  1466. _type = US.userInfo.type,
  1467. _org = US.userInfo.org,
  1468. _oid = US.userInfo.organizeid,
  1469. _role = US.userInfo.role,
  1470. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1471. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1472. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1473. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1474. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1475. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1476. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1477. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1478. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1479. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1480. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1481. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大
  1482. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1483. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1484. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1485. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1486. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1487. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1488. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1489. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1490. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1491. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1492. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1493. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1494. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1495. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1496. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1497. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1498. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1499. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1500. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1501. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1502. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1503. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1504. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1505. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1506. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1507. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1508. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1509. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1510. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1511. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1512. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1513. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1514. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1515. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1516. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1517. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1518. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1519. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1520. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1521. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1522. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1523. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1524. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1525. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1526. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1527. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1528. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1529. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1530. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1531. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1532. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1533. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1534. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1535. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1536. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1537. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1538. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1539. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1540. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1541. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1542. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1543. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1544. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1545. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1546. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263'];
  1547. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07'];
  1548. //清楚桌面图标
  1549. el.innerHTML = "";
  1550. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1551. _teacherDesktopIconInfo.push(
  1552. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1553. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1554. )
  1555. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1556. }
  1557. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1558. _teacherDesktopIconInfo.push(
  1559. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1560. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1561. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1562. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1563. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1564. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1565. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1566. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1567. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1568. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1569. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1570. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1571. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1572. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1573. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1574. )
  1575. }
  1576. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1577. _teacherDesktopIconInfo.push(
  1578. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1579. )
  1580. }
  1581. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1582. // _teacherDesktopIconInfo.push(
  1583. // )
  1584. // }
  1585. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1586. _teacherDesktopIconInfo.push(
  1587. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1588. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1589. )
  1590. }
  1591. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1592. _teacherDesktopIconInfo.push(
  1593. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1596. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1597. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. )
  1600. _studentDesktopIconInfo.push(
  1601. )
  1602. }
  1603. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1604. _teacherDesktopIconInfo.push(
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. )
  1607. _studentDesktopIconInfo.push(
  1608. )
  1609. }
  1610. //010606 组织
  1611. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1612. _teacherDesktopIconInfo.push(
  1613. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1614. )
  1615. _studentDesktopIconInfo.push(
  1616. )
  1617. }
  1618. //麒麟二中 和 民新小学
  1619. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1620. _teacherDesktopIconInfo.push(
  1621. )
  1622. }
  1623. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1624. _teacherDesktopIconInfo.push(
  1625. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1626. { "Name": "教师中心", "Url": "testStudent", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1627. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1628. )
  1629. }
  1630. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1631. _teacherDesktopIconInfo.push(
  1632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1633. )
  1634. }
  1635. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1636. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1637. _teacherDesktopIconInfo.push(
  1638. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1639. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1640. )
  1641. }
  1642. //麒麟二中
  1643. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1644. _studentDesktopIconInfo.push(
  1645. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1646. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1647. )
  1648. }
  1649. //万科双语
  1650. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1651. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1652. if (el.Name == '项目管理') {
  1653. el.Name = 'PBL项目'
  1654. }
  1655. return el
  1656. })
  1657. _studentDesktopIconInfo3.push(
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. )
  1660. }
  1661. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1662. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1663. return el.Name != '魔盒识字' && el.Name != '24点'
  1664. })
  1665. }
  1666. 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) {
  1667. _studentDesktopIconInfo.push(
  1668. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1669. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. )
  1671. }
  1672. //循环创建桌面图标
  1673. if (type == 1) {
  1674. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1675. for (i = 0; i < _studentDesktopIconInfo.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. }, [_studentDesktopIconInfo[i]]),
  1682. "onclick": U.UF.C.closure(function (obj) {
  1683. //防止拖动图标即打开了桌面应用
  1684. U.MD.D.click(this, obj);
  1685. }, [_studentDesktopIconInfo[i]])
  1686. }, _frag); //
  1687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1690. }
  1691. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1692. for (i = 0; i < _hkZJLSStudentDeskIconInfo.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. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1699. "onclick": U.UF.C.closure(function (obj) {
  1700. //防止拖动图标即打开了桌面应用
  1701. U.MD.D.click(this, obj);
  1702. }, [_hkZJLSStudentDeskIconInfo[i]])
  1703. }, _frag); //
  1704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1707. } //
  1708. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1709. for (i = 0; i < _ytyStudentDeskIconInfo.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. }, [_ytyStudentDeskIconInfo[i]]),
  1716. "onclick": U.UF.C.closure(function (obj) {
  1717. //防止拖动图标即打开了桌面应用
  1718. U.MD.D.click(this, obj);
  1719. }, [_ytyStudentDeskIconInfo[i]])
  1720. }, _frag); //
  1721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1724. } //
  1725. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1726. for (i = 0; i < _jccssylStudentDeskIconInfo.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. }, [_jccssylStudentDeskIconInfo[i]]),
  1733. "onclick": U.UF.C.closure(function (obj) {
  1734. //防止拖动图标即打开了桌面应用
  1735. U.MD.D.click(this, obj);
  1736. }, [_jccssylStudentDeskIconInfo[i]])
  1737. }, _frag); //
  1738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1741. }
  1742. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1743. for (i = 0; i < _scnuaiStudentDeskIconInfo.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. }, [_scnuaiStudentDeskIconInfo[i]]),
  1750. "onclick": U.UF.C.closure(function (obj) {
  1751. //防止拖动图标即打开了桌面应用
  1752. U.MD.D.click(this, obj);
  1753. }, [_scnuaiStudentDeskIconInfo[i]])
  1754. }, _frag); //
  1755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1758. }
  1759. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1760. for (i = 0; i < _caleStudentDeskIconInfo.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. }, [_caleStudentDeskIconInfo[i]]),
  1767. "onclick": U.UF.C.closure(function (obj) {
  1768. //防止拖动图标即打开了桌面应用
  1769. U.MD.D.click(this, obj);
  1770. }, [_caleStudentDeskIconInfo[i]])
  1771. }, _frag); //
  1772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1775. }
  1776. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1777. for (i = 0; i < _thuioeStudentDeskIconInfo.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. }, [_thuioeStudentDeskIconInfo[i]]),
  1784. "onclick": U.UF.C.closure(function (obj) {
  1785. //防止拖动图标即打开了桌面应用
  1786. U.MD.D.click(this, obj);
  1787. }, [_thuioeStudentDeskIconInfo[i]])
  1788. }, _frag); //
  1789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1792. }
  1793. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1794. for (i = 0; i < _tpcStudentDeskIconInfo.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. }, [_tpcStudentDeskIconInfo[i]]),
  1801. "onclick": U.UF.C.closure(function (obj) {
  1802. //防止拖动图标即打开了桌面应用
  1803. U.MD.D.click(this, obj);
  1804. }, [_tpcStudentDeskIconInfo[i]])
  1805. }, _frag); //
  1806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  1808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  1809. } //
  1810. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  1811. for (i = 0; i < _chjyjStudentDeskIconInfo.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. }, [_chjyjStudentDeskIconInfo[i]]),
  1818. "onclick": U.UF.C.closure(function (obj) {
  1819. //防止拖动图标即打开了桌面应用
  1820. U.MD.D.click(this, obj);
  1821. }, [_chjyjStudentDeskIconInfo[i]])
  1822. }, _frag); //
  1823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  1825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  1826. }
  1827. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  1828. for (i = 0; i < _szjkyStudentDeskIconInfo.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. }, [_szjkyStudentDeskIconInfo[i]]),
  1835. "onclick": U.UF.C.closure(function (obj) {
  1836. //防止拖动图标即打开了桌面应用
  1837. U.MD.D.click(this, obj);
  1838. }, [_szjkyStudentDeskIconInfo[i]])
  1839. }, _frag); //
  1840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1843. }
  1844. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  1845. for (i = 0; i < _dseiStudentDeskIconInfo.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. }, [_dseiStudentDeskIconInfo[i]]),
  1852. "onclick": U.UF.C.closure(function (obj) {
  1853. //防止拖动图标即打开了桌面应用
  1854. U.MD.D.click(this, obj);
  1855. }, [_dseiStudentDeskIconInfo[i]])
  1856. }, _frag); //
  1857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  1859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  1860. }
  1861. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  1862. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.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. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  1869. "onclick": U.UF.C.closure(function (obj) {
  1870. //防止拖动图标即打开了桌面应用
  1871. U.MD.D.click(this, obj);
  1872. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  1873. }, _frag); //
  1874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  1876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  1877. }
  1878. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  1879. for (i = 0; i < _siesStudentDeskIconInfo.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. }, [_siesStudentDeskIconInfo[i]]),
  1886. "onclick": U.UF.C.closure(function (obj) {
  1887. //防止拖动图标即打开了桌面应用
  1888. U.MD.D.click(this, obj);
  1889. }, [_siesStudentDeskIconInfo[i]])
  1890. }, _frag); //
  1891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  1893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  1894. }
  1895. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  1896. for (i = 0; i < _guzmsStudentDeskIconInfo.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. }, [_guzmsStudentDeskIconInfo[i]]),
  1903. "onclick": U.UF.C.closure(function (obj) {
  1904. //防止拖动图标即打开了桌面应用
  1905. U.MD.D.click(this, obj);
  1906. }, [_guzmsStudentDeskIconInfo[i]])
  1907. }, _frag); //
  1908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  1910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  1911. }
  1912. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  1913. for (i = 0; i < _hkStudentDeskIconInfo.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. }, [_hkStudentDeskIconInfo[i]]),
  1920. "onclick": U.UF.C.closure(function (obj) {
  1921. //防止拖动图标即打开了桌面应用
  1922. U.MD.D.click(this, obj);
  1923. }, [_hkStudentDeskIconInfo[i]])
  1924. }, _frag); //
  1925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  1927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  1928. }
  1929. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  1930. for (i = 0; i < _hkaceStudentDeskIconInfo.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. }, [_hkaceStudentDeskIconInfo[i]]),
  1937. "onclick": U.UF.C.closure(function (obj) {
  1938. //防止拖动图标即打开了桌面应用
  1939. U.MD.D.click(this, obj);
  1940. }, [_hkaceStudentDeskIconInfo[i]])
  1941. }, _frag); //
  1942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  1944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  1945. }
  1946. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  1947. for (i = 0; i < _cocobizStudentDeskIconInfo.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. }, [_cocobizStudentDeskIconInfo[i]]),
  1954. "onclick": U.UF.C.closure(function (obj) {
  1955. //防止拖动图标即打开了桌面应用
  1956. U.MD.D.click(this, obj);
  1957. }, [_cocobizStudentDeskIconInfo[i]])
  1958. }, _frag); //
  1959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  1961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  1962. }
  1963. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  1964. for (i = 0; i < _xxzjkyStudentDeskIconInfo.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. }, [_xxzjkyStudentDeskIconInfo[i]]),
  1971. "onclick": U.UF.C.closure(function (obj) {
  1972. //防止拖动图标即打开了桌面应用
  1973. U.MD.D.click(this, obj);
  1974. }, [_xxzjkyStudentDeskIconInfo[i]])
  1975. }, _frag); //
  1976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  1978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  1979. }
  1980. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  1981. for (i = 0; i < _studentDesktopIconInfo.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. }, [_studentDesktopIconInfo[i]]),
  1988. "onclick": U.UF.C.closure(function (obj) {
  1989. //防止拖动图标即打开了桌面应用
  1990. U.MD.D.click(this, obj);
  1991. }, [_studentDesktopIconInfo[i]])
  1992. }, _frag); //
  1993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1996. }
  1997. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  1998. for (i = 0; i < _tcStudentDeskIconInfo.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. }, [_tcStudentDeskIconInfo[i]]),
  2005. "onclick": U.UF.C.closure(function (obj) {
  2006. //防止拖动图标即打开了桌面应用
  2007. U.MD.D.click(this, obj);
  2008. }, [_tcStudentDeskIconInfo[i]])
  2009. }, _frag); //
  2010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2013. }
  2014. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2015. for (i = 0; i < _szscStudentDeskIconInfo.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. }, [_szscStudentDeskIconInfo[i]]),
  2022. "onclick": U.UF.C.closure(function (obj) {
  2023. //防止拖动图标即打开了桌面应用
  2024. U.MD.D.click(this, obj);
  2025. }, [_szscStudentDeskIconInfo[i]])
  2026. }, _frag); //
  2027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2030. }
  2031. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2032. for (i = 0; i < _studentDesktopIconInfo3.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. }, [_studentDesktopIconInfo3[i]]),
  2039. "onclick": U.UF.C.closure(function (obj) {
  2040. //防止拖动图标即打开了桌面应用
  2041. U.MD.D.click(this, obj);
  2042. }, [_studentDesktopIconInfo3[i]])
  2043. }, _frag); //
  2044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2047. }
  2048. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2049. for (i = 0; i < _studentDesktopIconInfo2.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. }, [_studentDesktopIconInfo2[i]]),
  2056. "onclick": U.UF.C.closure(function (obj) {
  2057. //防止拖动图标即打开了桌面应用
  2058. U.MD.D.click(this, obj);
  2059. }, [_studentDesktopIconInfo2[i]])
  2060. }, _frag); //
  2061. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2062. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2063. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2064. }
  2065. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2066. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2067. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2068. continue
  2069. }
  2070. _content = $$("div", {
  2071. className: "U_MD_D_KO",
  2072. "onmousedown": U.UF.C.closure(function (obj) {
  2073. //防止拖动图标即打开了桌面应用
  2074. U.MD.D.click(this, obj);
  2075. }, [_wanketeacherDesktopIconInfo[i]]),
  2076. "onclick": U.UF.C.closure(function (obj) {
  2077. //防止拖动图标即打开了桌面应用
  2078. U.MD.D.click(this, obj);
  2079. }, [_wanketeacherDesktopIconInfo[i]])
  2080. }, _frag); //
  2081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2084. }
  2085. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2086. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2087. _content = $$("div", {
  2088. className: "U_MD_D_KO",
  2089. "onmousedown": U.UF.C.closure(function (obj) {
  2090. //防止拖动图标即打开了桌面应用
  2091. U.MD.D.click(this, obj);
  2092. }, [_wankeAdminDesktopIconInfo[i]]),
  2093. "onclick": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_wankeAdminDesktopIconInfo[i]])
  2097. }, _frag); //
  2098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2101. }
  2102. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2103. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2104. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2105. continue
  2106. }
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_scnuaiTeacherDeskIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2121. }
  2122. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2123. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_scnuaiAdminDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_scnuaiAdminDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2138. }
  2139. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2140. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2141. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2142. continue
  2143. }
  2144. _content = $$("div", {
  2145. className: "U_MD_D_KO",
  2146. "onmousedown": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_jccssylTeacherDeskIconInfo[i]]),
  2150. "onclick": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_jccssylTeacherDeskIconInfo[i]])
  2154. }, _frag); //
  2155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2158. }
  2159. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2160. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2161. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2162. continue
  2163. }
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_caleTeacherDeskIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_caleTeacherDeskIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2180. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_tpcOrganizerDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_tpcOrganizerDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2195. }
  2196. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2197. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2198. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2199. continue
  2200. }
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_tpcTeacherDeskIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_tpcTeacherDeskIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2215. }
  2216. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2217. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2218. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2219. continue
  2220. }
  2221. _content = $$("div", {
  2222. className: "U_MD_D_KO",
  2223. "onmousedown": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_teacherDesktopIconInfo2[i]]),
  2227. "onclick": U.UF.C.closure(function (obj) {
  2228. //防止拖动图标即打开了桌面应用
  2229. U.MD.D.click(this, obj);
  2230. }, [_teacherDesktopIconInfo2[i]])
  2231. }, _frag); //
  2232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2235. }
  2236. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2237. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2238. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2239. continue
  2240. }
  2241. _content = $$("div", {
  2242. className: "U_MD_D_KO",
  2243. "onmousedown": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_thuioeTeacherDeskIconInfo[i]]),
  2247. "onclick": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_thuioeTeacherDeskIconInfo[i]])
  2251. }, _frag); //
  2252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2255. }
  2256. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2257. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2258. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2259. continue
  2260. }
  2261. _content = $$("div", {
  2262. className: "U_MD_D_KO",
  2263. "onmousedown": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_lotechTeacherDeskIconInfo[i]]),
  2267. "onclick": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_lotechTeacherDeskIconInfo[i]])
  2271. }, _frag); //
  2272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2275. }//
  2276. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2277. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2278. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2279. continue
  2280. }
  2281. _content = $$("div", {
  2282. className: "U_MD_D_KO",
  2283. "onmousedown": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2287. "onclick": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2291. }, _frag); //
  2292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2295. }
  2296. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2297. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2298. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2299. continue
  2300. }
  2301. _content = $$("div", {
  2302. className: "U_MD_D_KO",
  2303. "onmousedown": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_siesTeacherDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_siesTeacherDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2317. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2318. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2319. continue
  2320. }
  2321. _content = $$("div", {
  2322. className: "U_MD_D_KO",
  2323. "onmousedown": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_guzmsTeacherDeskIconInfo[i]]),
  2327. "onclick": U.UF.C.closure(function (obj) {
  2328. //防止拖动图标即打开了桌面应用
  2329. U.MD.D.click(this, obj);
  2330. }, [_guzmsTeacherDeskIconInfo[i]])
  2331. }, _frag); //
  2332. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2333. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2334. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2335. }
  2336. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2337. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2338. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2339. continue
  2340. }
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_longhuaTeacherDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_longhuaTeacherDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2357. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2358. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2359. continue
  2360. }
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_ytyTeacherDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_ytyTeacherDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2377. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2378. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2379. continue
  2380. }
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_yunhaiTeacherDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2395. } //_hkStudentDeskIconInfo
  2396. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2397. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2398. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2399. continue
  2400. }
  2401. _content = $$("div", {
  2402. className: "U_MD_D_KO",
  2403. "onmousedown": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2407. "onclick": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2411. }, _frag); //
  2412. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2413. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2414. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2415. }
  2416. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2417. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2418. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2419. continue
  2420. }
  2421. _content = $$("div", {
  2422. className: "U_MD_D_KO",
  2423. "onmousedown": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_hkTeacherDeskIconInfo[i]]),
  2427. "onclick": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_hkTeacherDeskIconInfo[i]])
  2431. }, _frag); //
  2432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2435. }
  2436. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2437. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2438. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2439. continue
  2440. }
  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. }, [_hkaceTeacherDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_hkaceTeacherDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2457. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2458. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2459. continue
  2460. }
  2461. _content = $$("div", {
  2462. className: "U_MD_D_KO",
  2463. "onmousedown": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_cocobizTeacherDeskIconInfo[i]]),
  2467. "onclick": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_cocobizTeacherDeskIconInfo[i]])
  2471. }, _frag); //
  2472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2475. }
  2476. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2477. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2478. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2479. continue
  2480. }
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2497. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_gdjgAdminDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_gdjgAdminDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2514. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2515. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2516. continue
  2517. }
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_gdjgTeacherDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_gdjgTeacherDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2534. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2535. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2536. continue
  2537. }
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_szherTeacherDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_szherTeacherDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2554. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_heyuannAdminDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_heyuannAdminDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2571. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2572. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2573. continue
  2574. }
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_heyuanTeacherDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_heyuanTeacherDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2589. } //
  2590. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2591. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_dseiAdminDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_dseiAdminDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2608. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2609. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2610. continue
  2611. }
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_dseiTeacherDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_dseiTeacherDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2626. } //
  2627. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  2628. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_chjyjAdminDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_chjyjAdminDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  2643. }//
  2644. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  2645. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  2646. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2647. continue
  2648. }
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_chjyjTeacherDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_chjyjTeacherDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  2665. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_szjkyAdminDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_szjkyAdminDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  2680. }//
  2681. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  2682. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  2683. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2684. continue
  2685. }
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_szjkyTeacherDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_szjkyTeacherDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  2702. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_futianAdminDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_futianAdminDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  2719. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  2720. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2721. continue
  2722. }
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_futianTeacherDeskIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_futianTeacherDeskIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  2737. }
  2738. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  2739. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  2740. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  2741. continue
  2742. }
  2743. _content = $$("div", {
  2744. className: "U_MD_D_KO",
  2745. "onmousedown": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_MingdeTeacherDeskIcon[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_MingdeTeacherDeskIcon[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  2757. }
  2758. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  2759. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_lhsAdminDesktopIconInfo[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_lhsAdminDesktopIconInfo[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  2774. }
  2775. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  2776. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  2777. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2778. continue
  2779. }
  2780. _content = $$("div", {
  2781. className: "U_MD_D_KO",
  2782. "onmousedown": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_lhsteacherDesktopIconInfo[i]]),
  2786. "onclick": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_lhsteacherDesktopIconInfo[i]])
  2790. }, _frag); //
  2791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  2793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  2794. }
  2795. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  2796. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  2797. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  2798. continue
  2799. }
  2800. _content = $$("div", {
  2801. className: "U_MD_D_KO",
  2802. "onmousedown": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_zhoujiateacherDesktopIconInfo[i]]),
  2806. "onclick": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_zhoujiateacherDesktopIconInfo[i]])
  2810. }, _frag); //
  2811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  2813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  2814. }
  2815. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  2816. for (i = 0; i < _hanDeskIcon.length; i++) {
  2817. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  2818. continue
  2819. }
  2820. _content = $$("div", {
  2821. className: "U_MD_D_KO",
  2822. "onmousedown": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_hanDeskIcon[i]]),
  2826. "onclick": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_hanDeskIcon[i]])
  2830. }, _frag); //
  2831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  2833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  2834. }
  2835. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  2836. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  2837. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  2838. continue
  2839. }
  2840. _content = $$("div", {
  2841. className: "U_MD_D_KO",
  2842. "onmousedown": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_orgStemDeskIcon[i]]),
  2846. "onclick": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_orgStemDeskIcon[i]])
  2850. }, _frag); //
  2851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  2853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  2854. }
  2855. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  2856. for (i = 0; i < _szulsDeskIcon.length; i++) {
  2857. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  2858. continue
  2859. }
  2860. _content = $$("div", {
  2861. className: "U_MD_D_KO",
  2862. "onmousedown": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_szulsDeskIcon[i]]),
  2866. "onclick": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_szulsDeskIcon[i]])
  2870. }, _frag); //
  2871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  2873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  2874. }
  2875. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  2876. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  2877. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  2878. continue
  2879. }
  2880. _content = $$("div", {
  2881. className: "U_MD_D_KO",
  2882. "onmousedown": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_orgDesktopIconInfo[i]]),
  2886. "onclick": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_orgDesktopIconInfo[i]])
  2890. }, _frag); //
  2891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  2893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  2894. }
  2895. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  2896. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  2897. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  2898. continue
  2899. }
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_schoolDesktopIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_schoolDesktopIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2916. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  2917. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2918. continue
  2919. }
  2920. _content = $$("div", {
  2921. className: "U_MD_D_KO",
  2922. "onmousedown": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_GMteacherDesktopIconInfo[i]]),
  2926. "onclick": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_GMteacherDesktopIconInfo[i]])
  2930. }, _frag); //
  2931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  2933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  2934. }
  2935. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  2936. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  2937. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2938. continue
  2939. }
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_SONGteacherDesktopIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_SONGteacherDesktopIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  2956. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  2957. _content = $$("div", {
  2958. className: "U_MD_D_KO",
  2959. "onmousedown": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_GMstudentDesktopIconInfo[i]]),
  2963. "onclick": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_GMstudentDesktopIconInfo[i]])
  2967. }, _frag); //
  2968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  2970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  2971. }
  2972. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  2973. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  2974. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2975. continue
  2976. }
  2977. _content = $$("div", {
  2978. className: "U_MD_D_KO",
  2979. "onmousedown": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_tcTeacherDeskIconInfo[i]]),
  2983. "onclick": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_tcTeacherDeskIconInfo[i]])
  2987. }, _frag); //
  2988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  2990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2991. }
  2992. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  2993. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  2994. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  2995. continue
  2996. }
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_tcOrganizerDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_tcOrganizerDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3013. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3014. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3015. continue
  3016. }
  3017. _content = $$("div", {
  3018. className: "U_MD_D_KO",
  3019. "onmousedown": U.UF.C.closure(function (obj) {
  3020. //防止拖动图标即打开了桌面应用
  3021. U.MD.D.click(this, obj);
  3022. }, [_szscTeacherDeskIconInfo[i]]),
  3023. "onclick": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_szscTeacherDeskIconInfo[i]])
  3027. }, _frag); //
  3028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3031. }
  3032. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3033. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3034. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3035. continue
  3036. }
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_szscOrganizerDeskIconInfo[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_szscOrganizerDeskIconInfo[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3051. }
  3052. } else {
  3053. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3054. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3055. continue
  3056. }
  3057. _content = $$("div", {
  3058. className: "U_MD_D_KO",
  3059. "onmousedown": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_teacherDesktopIconInfo[i]]),
  3063. "onclick": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_teacherDesktopIconInfo[i]])
  3067. }, _frag); //
  3068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3071. }
  3072. }
  3073. } else {
  3074. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. style: { 'width': '124px', 'height': '145px' },
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_easyDesktopIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_easyDesktopIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3090. }
  3091. }
  3092. if (type == 1) {
  3093. //加载好后给图标定位
  3094. U.MD.D.iconPostion($(_frag).Child());
  3095. } else {
  3096. //加载好后给图标定位
  3097. U.MD.D.iconPostion2($(_frag).Child());
  3098. }
  3099. //把图标加载到页面
  3100. el.appendChild(_frag);
  3101. }
  3102. /**
  3103. * 显示任务栏
  3104. *
  3105. * @param {element} 桌面元素
  3106. */
  3107. U.MD.D.I.displayTaskbar = function (el) {
  3108. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3109. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3110. //任务栏位置变化
  3111. U.selectEl(el).css({ "bottom": "0px" });
  3112. //桌面位置变话
  3113. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3114. }
  3115. }
  3116. //#region 桌面图标拖动逻辑
  3117. /**
  3118. * 桌面排列图标
  3119. *
  3120. * @param {element} 桌面元素
  3121. * @param {object} 上下相距的距离
  3122. * @param {object} 左右相距的距离
  3123. * @return {object} 命名空间
  3124. */
  3125. U.MD.D.iconPostion = function (childs, top, left) {
  3126. var i; //用于循环处理
  3127. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3128. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3129. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3130. for (i = 0; i < childs.length; i++) {
  3131. //如果竖排top超过了范围处理
  3132. if (top + 95 > US.height - 10) {
  3133. //left超过了页面范围处理,则向上重叠打印处理
  3134. if ((left + 180) > US.width) {
  3135. top -= 110;
  3136. left -= 90;
  3137. }
  3138. //没有超过范围,那么left+90添加到下一个竖排打印
  3139. else {
  3140. left += 90;
  3141. top = 15;
  3142. };
  3143. }
  3144. //给图标的位置赋值
  3145. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3146. if (i < childs.length - 1) {
  3147. //页面图标每次向下加95
  3148. top += 95;
  3149. }
  3150. }
  3151. //返回最后调用的图标的位置
  3152. return [top, left];
  3153. }
  3154. /**
  3155. * 桌面排列图标
  3156. *
  3157. * @param {element} 桌面元素
  3158. * @param {object} 上下相距的距离
  3159. * @param {object} 左右相距的距离
  3160. * @return {object} 命名空间
  3161. */
  3162. U.MD.D.iconPostion2 = function (childs, top, left) {
  3163. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3164. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3165. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3166. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3167. for (i = 0; i < childs.length; i++) {
  3168. //如果竖排top超过了范围处理
  3169. if (left + 150 > US.width - 10) {
  3170. //left超过了页面范围处理,则向上重叠打印处理
  3171. if ((top + 180) > US.Height) {
  3172. top -= 150;
  3173. left -= 150;
  3174. }
  3175. //没有超过范围,那么left+90添加到下一个竖排打印
  3176. else {
  3177. top += 150;
  3178. left = ol;
  3179. };
  3180. }
  3181. //给图标的位置赋值
  3182. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3183. if (i < childs.length - 1) {
  3184. //页面图标每次向下加95
  3185. left += 150;
  3186. }
  3187. }
  3188. //返回最后调用的图标的位置
  3189. return [top, left];
  3190. }
  3191. /**
  3192. * 桌面点击事件逻辑
  3193. *
  3194. * @param {element} 桌面元素
  3195. * @param {object} 上下相距的距离
  3196. * @param {object} 左右相距的距离
  3197. * @return {object} 命名空间
  3198. */
  3199. U.MD.D.click = function (el, obj) {
  3200. var _buttonnumber = event.button; //点击的按钮的事件值
  3201. var _userinfo = US.userInfo;
  3202. U.UF.EV.stopBubble(); //阻止向上冒泡
  3203. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3204. if (_buttonnumber < 2) {
  3205. //如果是click事件的处理
  3206. if (event.type == "click") {
  3207. //如果元素在mousemove事件中没有移动则出发click事件
  3208. if (!U.MD.D.I.IsDrag) {
  3209. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3210. U.alert("请先登录您的账号!");
  3211. setTimeout(() => {
  3212. U.MD.U.L.login();
  3213. }, 2000);
  3214. } else {
  3215. //打开应用处理
  3216. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3217. }
  3218. }
  3219. }
  3220. //如果是mouse事件的处理
  3221. else {
  3222. if (US.Config.type == '1') {
  3223. //拖动处理,添加拖动和拖动结束事件
  3224. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3225. }
  3226. }
  3227. U.MD.D.I.IsDrag = false;
  3228. }
  3229. }
  3230. /**
  3231. * 拖动的处理
  3232. *
  3233. */
  3234. U.MD.D.iconMove = function () {
  3235. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3236. U.MD.D.I.IsDrag = true;
  3237. }
  3238. /**
  3239. * 拖动结束后,这里是定位处理,以网状的形式定位
  3240. *
  3241. * @param {element} 拖动的元素
  3242. * @return {object} 命名空间
  3243. */
  3244. U.MD.D.iconUp = function (el) {
  3245. var _top = 15,
  3246. _left = 20,
  3247. _margin,
  3248. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3249. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3250. if (_positioninfo["OT"] > 15) {
  3251. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3252. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3253. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3254. }
  3255. if (_positioninfo["OL"] > 20) {
  3256. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3257. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3258. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3259. }
  3260. //while循环判断么一个重叠的元素
  3261. do {
  3262. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3263. _top = _positioninfo[0] + 95; //得到定位后的top
  3264. _left = _positioninfo[1]; //得到定位后的left
  3265. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3266. }
  3267. /**
  3268. * 判断拖动后图标是否重叠
  3269. *
  3270. * @param {element} 拖动的元素
  3271. * @param {element} 桌面所有的元素
  3272. * @param {array} 拖动元素的位置
  3273. ----------[0] 上 top
  3274. ----------[1] 左 left
  3275. * @return {object} 命名空间
  3276. */
  3277. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3278. //循环所有的图标
  3279. for (var i = 0; i < childs.length; i++) {
  3280. //判断有没有和该图标诶子重叠的元素
  3281. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3282. return childs[i]; //如果有返回
  3283. }
  3284. }
  3285. }
  3286. //#endregion
  3287. //#endregion
  3288. //#region 桌面应用
  3289. /**
  3290. * 打开应用
  3291. *
  3292. * @param {string} 类型
  3293. -----------------Disk 网盘系统
  3294. -----------------PDisk 学习系统网盘
  3295. -----------------Poto 图片
  3296. -----------------Video 视频
  3297. -----------------Music 音乐
  3298. -----------------Word word
  3299. -----------------Excel excel
  3300. -----------------Txt 记事本
  3301. -----------------PB 学习系统
  3302. -----------------Blog 朋友圈系统
  3303. -----------------FTP ftp系统
  3304. -----------------Group 好友群
  3305. -----------------SY 首页系统
  3306. -----------------Set 个人设置
  3307. -----------------XSet 系统设置
  3308. -----------------App 我们所有的app
  3309. -----------------BC c.1473.cn 平台
  3310. -----------------CWeb d.1473.cn 变成平台
  3311. -----------------其他的外联系统 我们统一用iframe打开
  3312. * @param {array} 类型
  3313. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3314. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3315. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3316. 如果第一个参数为其他,则无第二个参数
  3317. * @returns {array}
  3318. */
  3319. window.addEventListener('message', function (e) { // 监听 message 事件
  3320. // alert(e.data.type);
  3321. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3322. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3323. //3是展示全部阶段 2学生 1老师 4专家
  3324. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3325. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3326. //3是展示全部阶段 2学生 1老师 4专家
  3327. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3328. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3329. //3是展示全部阶段 2学生 1老师 4专家
  3330. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3331. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3332. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3333. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3334. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3335. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3336. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3337. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3338. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3339. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3340. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3341. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3342. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3343. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3344. //3是展示全部阶段 2学生 1老师 4专家
  3345. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3346. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3347. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3348. U.MD.D.I.selectUser();
  3349. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3350. var _formel = document.getElementById("study");
  3351. U.UF.F.windowZooming(_formel);
  3352. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3353. var _formel = document.getElementById("studyDetail");
  3354. U.UF.F.windowZooming(_formel);
  3355. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3356. var _formel = document.getElementById("studyDetail");
  3357. U.UF.F.windowZooming(_formel);
  3358. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3359. var _formel = document.getElementById("studentStudy");
  3360. U.UF.F.windowZooming(_formel);
  3361. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3362. // var _formel = document.getElementById("study");
  3363. //如果最大化了,那么就把他缩小
  3364. // if (_formel.ismaximize) {
  3365. // return;
  3366. // }
  3367. // U.UF.F.windowZooming(_formel);
  3368. // U.UF.F.topWindow(_formel);
  3369. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3370. // var _formel = document.getElementById("studyDetail");
  3371. //如果最大化了,那么就把他缩小
  3372. // if (_formel.ismaximize) {
  3373. // return;
  3374. // }
  3375. // U.UF.F.windowZooming(_formel);
  3376. // U.UF.F.topWindow(_formel);
  3377. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3378. // var _formel = document.getElementById("studentStudy");
  3379. // if (_formel.ismaximize) {
  3380. // return;
  3381. // }
  3382. // U.UF.F.windowZooming(_formel);
  3383. // U.UF.F.topWindow(_formel);
  3384. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3385. var _formel = document.getElementById("study");
  3386. // if (_formel.ismaximize) {
  3387. // return;
  3388. // }
  3389. // U.UF.F.windowZooming(_formel);
  3390. U.UF.F.topWindow(_formel);
  3391. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3392. var _formel = document.getElementById("studentIndex");
  3393. U.UF.F.windowZooming(_formel);
  3394. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3395. var _formel = document.getElementById("studyDetailS");
  3396. U.UF.F.windowZooming(_formel);
  3397. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3398. var _formel = document.getElementById("studioIndex");
  3399. U.UF.F.windowZooming(_formel);
  3400. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3401. var _formel = document.getElementById("studyDetailStudio");
  3402. U.UF.F.windowZooming(_formel);
  3403. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3404. var _formel = document.getElementById("studyDetailStudio");
  3405. U.UF.F.windowZooming(_formel);
  3406. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3407. var _formel = document.getElementById("studyDetailNT");
  3408. U.UF.F.windowZooming(_formel);
  3409. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3410. var _formel = document.getElementById("studyDetailS");
  3411. U.UF.F.windowZooming(_formel);
  3412. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3413. var _formel = document.getElementById("studyDetailS");
  3414. U.UF.F.topWindow(_formel);
  3415. } else if (e.data.tools && e.data.tools == "1") {
  3416. // U.MD.D.I.openApplication("whiteboard")
  3417. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3418. } else if (e.data.tools && e.data.tools == "2") {
  3419. U.MD.D.I.openApplication("note")
  3420. } else if (e.data.tools && e.data.tools == "3") {
  3421. // U.MD.D.I.openApplication("mind")
  3422. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3423. } else if (e.data.tools && e.data.tools == "4") {
  3424. U.MD.D.I.openApplication("investigation")
  3425. } else if (e.data.tools && e.data.tools == "6") {
  3426. // U.MD.D.I.openApplication("doc")
  3427. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3428. } else if (e.data.tools && e.data.tools == "7") {
  3429. // U.MD.D.I.openApplication("mindNetwork")
  3430. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3431. } else if (e.data.tools && e.data.tools == "8") {
  3432. U.MD.D.I.openApplication("library")
  3433. } else if (e.data.tools && e.data.tools == "17") {
  3434. U.MD.D.I.openApplication("stuLibrary")
  3435. } else if (e.data.tools && e.data.tools == "18") {
  3436. U.MD.D.I.openApplication("train")
  3437. } else if (e.data.tools && e.data.tools == "21") {
  3438. U.MD.D.I.openApplication("program")
  3439. } else if (e.data.tools && e.data.tools == "22") {
  3440. U.MD.D.I.openApplication("AIprogram2")
  3441. } else if (e.data.tools && e.data.tools == "23") {
  3442. U.MD.D.I.openApplication("Pythonprogram")
  3443. } else if (e.data.tools && e.data.tools == "24") {
  3444. U.MD.D.I.openApplication("AIprogram")
  3445. } else if (e.data.tools && e.data.tools == "25") {
  3446. U.MD.D.I.openApplication("sys")
  3447. } else if (e.data.tools && e.data.tools == "26") {
  3448. // U.MD.D.I.openApplication("courseDesign")
  3449. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3450. } else if (e.data.tools && e.data.tools == "31") {
  3451. U.MD.D.I.openApplication("netWorkPanel")
  3452. } else if (e.data.tools && e.data.tools == "32") {
  3453. U.MD.D.I.openApplication("codeEdit")
  3454. } else if (e.data.tools && e.data.tools == "57") {
  3455. U.MD.D.I.openApplication("CocoPi")
  3456. } else if (e.data.tools && e.data.tools == "63") {
  3457. U.MD.D.I.openApplication("Wood")
  3458. } else if (e.data.tools && e.data.tools == "58") {
  3459. U.MD.D.I.openApplication("car")
  3460. } else if (e.data.tools && e.data.tools == "59") {
  3461. U.MD.D.I.openApplication("lineSearch")
  3462. } else if (e.data.tools && e.data.tools == "60") {
  3463. U.MD.D.I.openApplication("deepLearning")
  3464. } else if (e.data.tools && e.data.tools == "61") {
  3465. U.MD.D.I.openApplication("allHistory")
  3466. } else if (e.data.tools && e.data.tools == "28") {
  3467. U.MD.D.I.openApplication("translation")
  3468. } else if (e.data.tools && e.data.tools == "37") {
  3469. U.MD.D.I.openApplication("mohe")
  3470. } else if (e.data.tools && e.data.tools == "38") {
  3471. U.MD.D.I.openApplication("24game")
  3472. } else if (e.data.tools && e.data.tools == "39") {
  3473. U.MD.D.I.openApplication("GeoGebra")
  3474. } else if (e.data.tools && e.data.tools == "43") {
  3475. U.MD.D.I.openApplication("studentEvaluate")
  3476. } else if (e.data.tools && e.data.tools == "44") {
  3477. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  3478. } else if (e.data.tools && e.data.tools == "46") {
  3479. U.MD.D.I.openApplication("project")
  3480. } else if (e.data.tools && e.data.tools == "71") {
  3481. U.MD.D.I.openApplication("aigptCourse")
  3482. } else if (e.data.tools && e.data.tools == "1s") {
  3483. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3484. } else if (e.data.tools && e.data.tools == "3s") {
  3485. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3486. } else if (e.data.tools && e.data.tools == "6s") {
  3487. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3488. } else if (e.data.tools && e.data.tools == "1studio") {
  3489. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3490. } else if (e.data.tools && e.data.tools == "3studio") {
  3491. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3492. } else if (e.data.tools && e.data.tools == "6studio") {
  3493. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3494. } else if (e.data.tools && e.data.tools == "3y") {
  3495. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3496. } else if (e.data.tools && e.data.tools == "1y") {
  3497. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3498. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  3499. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  3500. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  3501. U.MD.D.I.openApplication("AIAnalyse")
  3502. } else if (e.data.tools && e.data.tools == "1teacher") {
  3503. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3504. } else if (e.data.tools && e.data.tools == "3teacher") {
  3505. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3506. } else if (e.data.tools && e.data.tools == "7teacher") {
  3507. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3508. } else if (e.data.tools && e.data.tools == "1teacherE") {
  3509. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3510. } else if (e.data.tools && e.data.tools == "3teacherE") {
  3511. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3512. } else if (e.data.tools && e.data.tools == "1E") {
  3513. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3514. } else if (e.data.tools && e.data.tools == "3E") {
  3515. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3516. } else if (e.data.tools && e.data.tools == "57y") {
  3517. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3518. } else if (e.data.tools && e.data.tools == "57u") {
  3519. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3520. } else if (e.data.tools && e.data.tools == "57teacher") {
  3521. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  3522. } else if (e.data.tools && e.data.tools == "64") {
  3523. U.MD.D.I.openApplication("AIChat")
  3524. } else if (e.data.tools && e.data.tools == "66") {
  3525. U.MD.D.I.openApplication("formulaEdi")
  3526. } else if (e.data.tools && e.data.tools == "67") {
  3527. U.MD.D.I.openApplication("molStr")
  3528. } else if (e.data.tools && e.data.tools == "68") {
  3529. U.MD.D.I.openApplication("timeAxis")
  3530. } else if (e.data.tools && e.data.tools == "openCourse") {
  3531. let _data = {
  3532. typea: e.data.typea || '',
  3533. typeb: e.data.typeb || '',
  3534. typed: e.data.typed || '',
  3535. }
  3536. U.MD.D.I.openInApplication("index", _data)
  3537. } else if (e.data.tools && e.data.tools == "openDataClass") {
  3538. let _data = {
  3539. classid: e.data.classid || '',
  3540. }
  3541. U.MD.D.I.openInApplication("dataClass", _data)
  3542. } else if (e.data.tools && e.data.tools == "opencCscl") {
  3543. let _data = {
  3544. cid: e.data.cid || '',
  3545. gid: e.data.gid || '',
  3546. }
  3547. U.MD.D.I.openInApplication("opencCscl", _data)
  3548. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  3549. U.MD.D.I.openApplication("dataBoardTest")
  3550. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  3551. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  3552. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  3553. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  3554. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  3555. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  3556. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  3557. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  3558. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  3559. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  3560. }else if (e.data.tools && e.data.tools == "loginSz") {
  3561. U.MD.D.I.openInApplication("loginSz")
  3562. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  3563. if($('#classroom_observation_board')[0]){
  3564. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  3565. }
  3566. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  3567. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  3568. if($('#classroom_observation_ob_comment')[0]){
  3569. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  3570. }
  3571. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  3572. }
  3573. });
  3574. U.MD.D.I.selectUser = function () {
  3575. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  3576. if (res.value[0].length > 0) {
  3577. US.userInfo = res.value[0][0];
  3578. $(".userName")[0].innerHTML = US.userInfo.username;
  3579. }
  3580. }, [], { "type": "GET", "withCredentials": true });
  3581. }
  3582. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  3583. var _userinfo = US.userInfo, //登录用户信息
  3584. _userid = US.userInfo.userid, //登录用户id
  3585. _oid = _userinfo.organizeid,
  3586. _type = US.userInfo.type,
  3587. _org = US.userInfo.org,
  3588. _role = US.userInfo.role,
  3589. _classId = US.userInfo.classid;
  3590. if (_type == 4) {
  3591. tType = 4
  3592. }
  3593. switch (str) {
  3594. case "studyDetailNT": //无终端模式
  3595. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3596. setTimeout(() => {
  3597. U.MD.U.L.login();
  3598. }, 2000);
  3599. } else {
  3600. _formdiv = new U.UF.UI.form(
  3601. "课程详情",
  3602. $$("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 }), {
  3603. "id": "studyDetailNT",
  3604. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3605. "onresize": function () { }
  3606. }, {
  3607. closecallback: function () { }
  3608. }, { "style": { "height": "36px" } }).form; //创建窗体
  3609. _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); } }
  3610. break;
  3611. }
  3612. case "studyDetail":
  3613. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3614. setTimeout(() => {
  3615. U.MD.U.L.login();
  3616. }, 2000);
  3617. } else {
  3618. _formdiv = new U.UF.UI.form(
  3619. "课程详情",
  3620. $$("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 }), {
  3621. "id": "studyDetail",
  3622. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3623. "onresize": function () { }
  3624. }, {
  3625. closecallback: function () { }
  3626. }, { "style": { "height": "36px" } }).form; //创建窗体
  3627. _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); } }
  3628. break;
  3629. }
  3630. case "studyDetailTrain":
  3631. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3632. setTimeout(() => {
  3633. U.MD.U.L.login();
  3634. }, 2000);
  3635. } else {
  3636. _formdiv = new U.UF.UI.form(
  3637. "培训详情",
  3638. $$("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 }), {
  3639. "id": "studyDetailTrain",
  3640. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3641. "onresize": function () { }
  3642. }, {
  3643. closecallback: function () { }
  3644. }, { "style": { "height": "36px" } }).form; //创建窗体
  3645. _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); } }
  3646. break;
  3647. }
  3648. case "studyDetailS":
  3649. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3650. setTimeout(() => {
  3651. U.MD.U.L.login();
  3652. }, 2000);
  3653. } else {
  3654. _formdiv = new U.UF.UI.form(
  3655. "项目详情",
  3656. $$("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 }), {
  3657. "id": "studyDetailS",
  3658. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3659. "onresize": function () { }
  3660. }, {
  3661. closecallback: function () { }
  3662. }, { "style": { "height": "36px" } }).form; //创建窗体
  3663. _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); } }
  3664. break;
  3665. }
  3666. case "studyDetailStudio":
  3667. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3668. setTimeout(() => {
  3669. U.MD.U.L.login();
  3670. }, 2000);
  3671. } else {
  3672. _formdiv = new U.UF.UI.form(
  3673. "工作详情",
  3674. $$("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 }), {
  3675. "id": "studyDetailStudio",
  3676. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3677. "onresize": function () { }
  3678. }, {
  3679. closecallback: function () { }
  3680. }, { "style": { "height": "36px" } }).form; //创建窗体
  3681. _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); } }
  3682. break;
  3683. }
  3684. case "studyDetailS5":
  3685. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3686. setTimeout(() => {
  3687. U.MD.U.L.login();
  3688. }, 2000);
  3689. } else {
  3690. _formdiv = new U.UF.UI.form(
  3691. "项目详情",
  3692. $$("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 }), {
  3693. "id": "studyDetailS",
  3694. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  3695. "onresize": function () { }
  3696. }, {
  3697. closecallback: function () { }
  3698. }, { "style": { "height": "36px" } }).form; //创建窗体
  3699. _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); } }
  3700. break;
  3701. }
  3702. case "studyDetailGM":
  3703. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3704. setTimeout(() => {
  3705. U.MD.U.L.login();
  3706. }, 2000);
  3707. } else {
  3708. _formdiv = new U.UF.UI.form(
  3709. "课程详情",
  3710. $$("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 }), {
  3711. "id": "studyDetail",
  3712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3713. "onresize": function () { }
  3714. }, {
  3715. closecallback: function () { }
  3716. }, { "style": { "height": "36px" } }).form; //创建窗体
  3717. _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); } }
  3718. break;
  3719. }
  3720. case "hanUrl":
  3721. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3722. setTimeout(() => {
  3723. U.MD.U.L.login();
  3724. }, 2000);
  3725. } else {
  3726. _formdiv = new U.UF.UI.form(
  3727. "汉字宫",
  3728. $$("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" }), {
  3729. "id": "hanUrl",
  3730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3731. "onresize": function () { }
  3732. }, {
  3733. closecallback: function () { }
  3734. }, { "style": { "height": "36px" } }).form; //创建窗体
  3735. _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); } }
  3736. break;
  3737. }
  3738. case "index":
  3739. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3740. setTimeout(() => {
  3741. U.MD.U.L.login();
  3742. }, 2000);
  3743. } else {
  3744. _formdiv = new U.UF.UI.form(
  3745. "课程中心",
  3746. $$("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 }), {
  3747. "id": "study",
  3748. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3749. "onresize": function () { }
  3750. }, {
  3751. closecallback: function () { }
  3752. }, { "style": { "height": "36px" } }).form; //创建窗体
  3753. _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); } }
  3754. break;
  3755. }
  3756. case "dataClass":
  3757. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3758. setTimeout(() => {
  3759. U.MD.U.L.login();
  3760. }, 2000);
  3761. } else {
  3762. _formdiv = new U.UF.UI.form(
  3763. "数据报告",
  3764. $$("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 }), {
  3765. "id": "dataClass",
  3766. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3767. "onresize": function () { }
  3768. }, {
  3769. closecallback: function () { }
  3770. }, { "style": { "height": "36px" } }).form; //创建窗体
  3771. _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); } }
  3772. break;
  3773. }
  3774. case "opencCscl":
  3775. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3776. setTimeout(() => {
  3777. U.MD.U.L.login();
  3778. }, 2000);
  3779. } else {
  3780. _formdiv = new U.UF.UI.form(
  3781. "协同建构",
  3782. $$("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://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  3783. "id": "futureClass",
  3784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3785. "onresize": function () { }
  3786. }, {
  3787. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  3788. }, { "style": { "height": "36px" } }).form; //创建窗体
  3789. _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); } }
  3790. break;
  3791. }
  3792. case "openCourseUpdate":
  3793. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3794. setTimeout(() => {
  3795. U.MD.U.L.login();
  3796. }, 2000);
  3797. } else {
  3798. _formdiv = new U.UF.UI.form(
  3799. "课程管理",
  3800. $$("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 }), {
  3801. "id": "openCourseUpdate",
  3802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3803. "onresize": function () { }
  3804. }, {
  3805. closecallback: function () { }
  3806. }, { "style": { "height": "36px" } }).form; //创建窗体
  3807. break;
  3808. }
  3809. case "openNewCourseUpdate":
  3810. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3811. setTimeout(() => {
  3812. U.MD.U.L.login();
  3813. }, 2000);
  3814. } else {
  3815. _formdiv = new U.UF.UI.form(
  3816. "课程管理",
  3817. $$("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 }), {
  3818. "id": "openCourseUpdate",
  3819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3820. "onresize": function () { }
  3821. }, {
  3822. closecallback: function () { }
  3823. }, { "style": { "height": "36px" } }).form; //创建窗体
  3824. break;
  3825. }
  3826. case "openCourseEUpdate":
  3827. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3828. setTimeout(() => {
  3829. U.MD.U.L.login();
  3830. }, 2000);
  3831. } else {
  3832. _formdiv = new U.UF.UI.form(
  3833. "课程管理",
  3834. $$("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 }), {
  3835. "id": "openCourseUpdate",
  3836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3837. "onresize": function () { }
  3838. }, {
  3839. closecallback: function () { }
  3840. }, { "style": { "height": "36px" } }).form; //创建窗体
  3841. break;
  3842. }
  3843. case "openCourseAiUpdate":
  3844. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3845. setTimeout(() => {
  3846. U.MD.U.L.login();
  3847. }, 2000);
  3848. } else {
  3849. _formdiv = new U.UF.UI.form(
  3850. "课程管理",
  3851. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  3852. "id": "openCourseUpdate",
  3853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3854. "onresize": function () { }
  3855. }, {
  3856. closecallback: function () { }
  3857. }, { "style": { "height": "36px" } }).form; //创建窗体
  3858. break;
  3859. }
  3860. case "openCourseNewUpdate":
  3861. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3862. setTimeout(() => {
  3863. U.MD.U.L.login();
  3864. }, 2000);
  3865. } else {
  3866. _formdiv = new U.UF.UI.form(
  3867. "课程管理",
  3868. $$("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 }), {
  3869. "id": "openCourseUpdate",
  3870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3871. "onresize": function () { }
  3872. }, {
  3873. closecallback: function () { }
  3874. }, { "style": { "height": "36px" } }).form; //创建窗体
  3875. break;
  3876. }
  3877. case "inviteLoginSz":
  3878. _formdiv = new U.UF.UI.form(
  3879. "随机码登录",
  3880. $$("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 }), {
  3881. "id": "loginSz",
  3882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3883. "onresize": function () { }
  3884. }, {
  3885. closecallback: function () { }
  3886. }, { "style": { "height": "36px" } }).form; //创建窗体
  3887. break;
  3888. case "loginSz":
  3889. _formdiv = new U.UF.UI.form(
  3890. "教师登录",
  3891. $$("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" }), {
  3892. "id": "loginSz",
  3893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3894. "onresize": function () { }
  3895. }, {
  3896. closecallback: function () { }
  3897. }, { "style": { "height": "36px" } }).form; //创建窗体
  3898. break;
  3899. case "teacher":
  3900. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3901. setTimeout(() => {
  3902. U.MD.U.L.login();
  3903. }, 2000);
  3904. } else {
  3905. _formdiv = new U.UF.UI.form(
  3906. "教师管理",
  3907. $$("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 }), {
  3908. "id": "teacher",
  3909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  3910. "onresize": function () { }
  3911. }, {
  3912. closecallback: function () { }
  3913. }, { "style": { "height": "36px" } }).form; //创建窗体
  3914. break;
  3915. }
  3916. case "dataBoardSZArea":
  3917. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3918. setTimeout(() => {
  3919. U.MD.U.L.login();
  3920. }, 2000);
  3921. } else {
  3922. _formdiv = new U.UF.UI.form(
  3923. "综合数据看板",
  3924. $$("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 }), {
  3925. "id": "dataBoardSZArea",
  3926. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3927. "onresize": function () { }
  3928. }, {
  3929. closecallback: function () { }
  3930. }, { "style": { "height": "36px" } }).form; //创建窗体
  3931. break;
  3932. }
  3933. case "dataBoardSZCity":
  3934. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3935. setTimeout(() => {
  3936. U.MD.U.L.login();
  3937. }, 2000);
  3938. } else {
  3939. _formdiv = new U.UF.UI.form(
  3940. "综合数据看板",
  3941. $$("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 }), {
  3942. "id": "dataBoardSZCity",
  3943. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3944. "onresize": function () { }
  3945. }, {
  3946. closecallback: function () { }
  3947. }, { "style": { "height": "36px" } }).form; //创建窗体
  3948. break;
  3949. }
  3950. case "classroom_observation_board":
  3951. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3952. setTimeout(() => {
  3953. U.MD.U.L.login();
  3954. }, 2000);
  3955. } else {
  3956. _formdiv = new U.UF.UI.form(
  3957. "课堂观察",
  3958. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  3959. "id": "classroom_observation_board",
  3960. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3961. "onresize": function () { }
  3962. }, {
  3963. closecallback: function () { }
  3964. }, { "style": { "height": "36px" } }).form; //创建窗体
  3965. break;
  3966. }
  3967. case "classroom_observation_ob_comment":
  3968. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3969. setTimeout(() => {
  3970. U.MD.U.L.login();
  3971. }, 2000);
  3972. } else {
  3973. _formdiv = new U.UF.UI.form(
  3974. "课堂审核",
  3975. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  3976. "id": "classroom_observation_ob_comment",
  3977. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  3978. "onresize": function () { }
  3979. }, {
  3980. closecallback: function () { }
  3981. }, { "style": { "height": "36px" } }).form; //创建窗体
  3982. break;
  3983. }
  3984. }
  3985. }
  3986. U.MD.D.I.openApplication = function (str, obj, info) {
  3987. obj = obj || {};
  3988. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  3989. _formdiv, //创建任务栏时同时弹出的窗体元素。
  3990. _userinfo = US.userInfo, //登录用户信息
  3991. _userid = obj.userid || US.userInfo.userid, //登录用户id
  3992. _oid = obj.organizeid || _userinfo.organizeid,
  3993. _type = US.userInfo.type,
  3994. _org = US.userInfo.org,
  3995. _role = US.userInfo.role,
  3996. _classId = US.userInfo.classid,
  3997. _TscreenType = 1
  3998. _screenType = 2,
  3999. _SscreenType = 3;
  4000. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4001. return;
  4002. }
  4003. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4004. switch (str) {
  4005. case "studnetProject": //好友打开
  4006. _formdiv = new U.UF.UI.form(
  4007. "我的项目",
  4008. $$("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 }), {
  4009. "id": "studnetProject",
  4010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4011. "onresize": function () { }
  4012. }, {
  4013. closecallback: function () { }
  4014. }, { "style": { "height": "36px" } }).form; //创建窗体
  4015. _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); } }
  4016. break;
  4017. case "studentEvaluate": //好友打开
  4018. _formdiv = new U.UF.UI.form(
  4019. "我的评价",
  4020. $$("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 }), {
  4021. "id": "studentEvaluate",
  4022. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4023. "onresize": function () { }
  4024. }, {
  4025. closecallback: function () { }
  4026. }, { "style": { "height": "36px" } }).form; //创建窗体
  4027. _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); } }
  4028. break;
  4029. case "my":
  4030. _formdiv = new U.UF.UI.form(
  4031. "我的资料",
  4032. $$("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 }), {
  4033. "id": "my",
  4034. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4035. "onresize": function () { }
  4036. }, {
  4037. closecallback: function () { }
  4038. }, { "style": { "height": "36px" } }).form; //创建窗体
  4039. _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); } }
  4040. break;
  4041. case "program":
  4042. _formdiv = new U.UF.UI.form(
  4043. "编程平台",
  4044. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4045. "id": "program",
  4046. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4047. "onresize": function () { }
  4048. }, {
  4049. closecallback: function () { }
  4050. }, { "style": { "height": "36px" } }).form; //创建窗体
  4051. _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); } }
  4052. break;
  4053. case "library":
  4054. _formdiv = new U.UF.UI.form(
  4055. "素材库",
  4056. $$("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 }), {
  4057. "id": "library",
  4058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4059. "onresize": function () { }
  4060. }, {
  4061. closecallback: function () { }
  4062. }, { "style": { "height": "36px" } }).form; //创建窗体
  4063. _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); } }
  4064. break;
  4065. case "whiteboard":
  4066. _formdiv = new U.UF.UI.form(
  4067. "电子白板",
  4068. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4069. "id": "whiteboard",
  4070. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4071. "onresize": function () { }
  4072. }, {
  4073. closecallback: function () { }
  4074. }, { "style": { "height": "36px" } }).form; //创建窗体
  4075. _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); } }
  4076. break;
  4077. case "investigation":
  4078. _formdiv = new U.UF.UI.form(
  4079. "问卷调查",
  4080. $$("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 }), {
  4081. "id": "investigation",
  4082. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4083. "onresize": function () { }
  4084. }, {
  4085. closecallback: function () { }
  4086. }, { "style": { "height": "36px" } }).form; //创建窗体
  4087. _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); } }
  4088. break;
  4089. case "note":
  4090. _formdiv = new U.UF.UI.form(
  4091. "便签分类",
  4092. $$("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 }), {
  4093. "id": "note",
  4094. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4095. "onresize": function () { }
  4096. }, {
  4097. closecallback: function () { }
  4098. }, { "style": { "height": "36px" } }).form; //创建窗体
  4099. _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); } }
  4100. break;
  4101. // case "score":
  4102. // _formdiv = new U.UF.UI.form(
  4103. // "量规评分",
  4104. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4105. // "id": "score",
  4106. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4107. // "onresize": function() {}
  4108. // }, {
  4109. // closecallback: function() {}
  4110. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4111. // _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); } }
  4112. // break;
  4113. case "mind":
  4114. _formdiv = new U.UF.UI.form(
  4115. "思维导图",
  4116. $$("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"
  4117. "id": "mind",
  4118. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4119. "onresize": function () { }
  4120. }, {
  4121. closecallback: function () { }
  4122. }, { "style": { "height": "36px" } }).form; //创建窗体
  4123. _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); } }
  4124. break;
  4125. case "doc":
  4126. // U.MD.D.I.isRoom();
  4127. _formdiv = new U.UF.UI.form(
  4128. "协同文档",
  4129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4130. "id": "doc",
  4131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4132. "onresize": function () { }
  4133. }, {
  4134. closecallback: function () { }
  4135. }, { "style": { "height": "36px" } }).form; //创建窗体
  4136. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4137. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4138. // })
  4139. _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); } }
  4140. break;
  4141. case "studentStudy":
  4142. _formdiv = new U.UF.UI.form(
  4143. "课程中心",
  4144. $$("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
  4145. "id": "studentStudy",
  4146. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4152. break;
  4153. case "train": //好友打开
  4154. _formdiv = new U.UF.UI.form(
  4155. "训练平台",
  4156. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4157. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4164. break;
  4165. case "mindNetwork": //好友打开
  4166. _formdiv = new U.UF.UI.form(
  4167. "思维网格",
  4168. $$("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 }), {
  4169. "id": "mindNetwork",
  4170. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4176. break;
  4177. case "studentClassRoom": //好友打开
  4178. _formdiv = new U.UF.UI.form(
  4179. "实时课堂",
  4180. $$("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 }), {
  4181. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4188. setTimeout(() => {
  4189. U.UF.F.windowZooming(_formdiv)
  4190. }, 0);
  4191. break;
  4192. }
  4193. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4194. switch (str) {
  4195. case "studnetProject": //好友打开
  4196. _formdiv = new U.UF.UI.form(
  4197. "我的项目",
  4198. $$("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 }), {
  4199. "id": "studnetProject",
  4200. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4201. "onresize": function () { }
  4202. }, {
  4203. closecallback: function () { }
  4204. }, { "style": { "height": "36px" } }).form; //创建窗体
  4205. _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); } }
  4206. break;
  4207. case "studentEvaluate": //好友打开
  4208. _formdiv = new U.UF.UI.form(
  4209. "我的评价",
  4210. $$("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 }), {
  4211. "id": "studentEvaluate",
  4212. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4213. "onresize": function () { }
  4214. }, {
  4215. closecallback: function () { }
  4216. }, { "style": { "height": "36px" } }).form; //创建窗体
  4217. _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); } }
  4218. break;
  4219. case "my":
  4220. _formdiv = new U.UF.UI.form(
  4221. "我的资料",
  4222. $$("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 }), {
  4223. "id": "my",
  4224. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4225. "onresize": function () { }
  4226. }, {
  4227. closecallback: function () { }
  4228. }, { "style": { "height": "36px" } }).form; //创建窗体
  4229. _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); } }
  4230. break;
  4231. case "program":
  4232. _formdiv = new U.UF.UI.form(
  4233. "编程平台",
  4234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4235. "id": "program",
  4236. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4237. "onresize": function () { }
  4238. }, {
  4239. closecallback: function () { }
  4240. }, { "style": { "height": "36px" } }).form; //创建窗体
  4241. _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); } }
  4242. break;
  4243. case "library":
  4244. _formdiv = new U.UF.UI.form(
  4245. "素材库",
  4246. $$("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 }), {
  4247. "id": "library",
  4248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4249. "onresize": function () { }
  4250. }, {
  4251. closecallback: function () { }
  4252. }, { "style": { "height": "36px" } }).form; //创建窗体
  4253. _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); } }
  4254. break;
  4255. case "whiteboard":
  4256. _formdiv = new U.UF.UI.form(
  4257. "电子白板",
  4258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4259. "id": "whiteboard",
  4260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4261. "onresize": function () { }
  4262. }, {
  4263. closecallback: function () { }
  4264. }, { "style": { "height": "36px" } }).form; //创建窗体
  4265. _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); } }
  4266. break;
  4267. case "investigation":
  4268. _formdiv = new U.UF.UI.form(
  4269. "问卷调查",
  4270. $$("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 }), {
  4271. "id": "investigation",
  4272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4273. "onresize": function () { }
  4274. }, {
  4275. closecallback: function () { }
  4276. }, { "style": { "height": "36px" } }).form; //创建窗体
  4277. _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); } }
  4278. break;
  4279. case "note":
  4280. _formdiv = new U.UF.UI.form(
  4281. "便签分类",
  4282. $$("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 }), {
  4283. "id": "note",
  4284. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4285. "onresize": function () { }
  4286. }, {
  4287. closecallback: function () { }
  4288. }, { "style": { "height": "36px" } }).form; //创建窗体
  4289. _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); } }
  4290. break;
  4291. // case "score":
  4292. // _formdiv = new U.UF.UI.form(
  4293. // "量规评分",
  4294. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4295. // "id": "score",
  4296. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4297. // "onresize": function() {}
  4298. // }, {
  4299. // closecallback: function() {}
  4300. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4301. // _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); } }
  4302. // break;
  4303. case "mind":
  4304. _formdiv = new U.UF.UI.form(
  4305. "思维导图",
  4306. $$("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"
  4307. "id": "mind",
  4308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4309. "onresize": function () { }
  4310. }, {
  4311. closecallback: function () { }
  4312. }, { "style": { "height": "36px" } }).form; //创建窗体
  4313. _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); } }
  4314. break;
  4315. case "doc":
  4316. // U.MD.D.I.isRoom();
  4317. _formdiv = new U.UF.UI.form(
  4318. "协同文档",
  4319. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4320. "id": "doc",
  4321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4322. "onresize": function () { }
  4323. }, {
  4324. closecallback: function () { }
  4325. }, { "style": { "height": "36px" } }).form; //创建窗体
  4326. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4327. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4328. })
  4329. _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); } }
  4330. break;
  4331. case "train": //好友打开
  4332. _formdiv = new U.UF.UI.form(
  4333. "训练平台",
  4334. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4335. "id": "train",
  4336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4337. "onresize": function () { }
  4338. }, {
  4339. closecallback: function () { }
  4340. }, { "style": { "height": "36px" } }).form; //创建窗体
  4341. _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); } }
  4342. break;
  4343. case "studentStudy":
  4344. _formdiv = new U.UF.UI.form(
  4345. "课程中心",
  4346. $$("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
  4347. "id": "studentStudy",
  4348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4349. "onresize": function () { }
  4350. }, {
  4351. closecallback: function () { }
  4352. }, { "style": { "height": "36px" } }).form; //创建窗体
  4353. _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); } }
  4354. break;
  4355. case "mindNetwork": //好友打开
  4356. _formdiv = new U.UF.UI.form(
  4357. "思维网格",
  4358. $$("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 }), {
  4359. "id": "mindNetwork",
  4360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4361. "onresize": function () { }
  4362. }, {
  4363. closecallback: function () { }
  4364. }, { "style": { "height": "36px" } }).form; //创建窗体
  4365. _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); } }
  4366. break;
  4367. case "studentClassRoom": //好友打开
  4368. _formdiv = new U.UF.UI.form(
  4369. "实时课堂",
  4370. $$("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 }), {
  4371. "id": "studentClassRoom",
  4372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4373. "onresize": function () { }
  4374. }, {
  4375. closecallback: function () { }
  4376. }, { "style": { "height": "36px" } }).form; //创建窗体
  4377. _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); } }
  4378. setTimeout(() => {
  4379. U.UF.F.windowZooming(_formdiv)
  4380. }, 0);
  4381. break;
  4382. }
  4383. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4384. //选择应用处理
  4385. switch (str) {
  4386. case "project": //好友打开
  4387. _formdiv = new U.UF.UI.form(
  4388. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4389. $$("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 }), {
  4390. "id": "project",
  4391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4392. "onresize": function () { }
  4393. }, {
  4394. closecallback: function () { }
  4395. }, { "style": { "height": "36px" } }).form; //创建窗体
  4396. _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); } }
  4397. break;
  4398. case "student":
  4399. _formdiv = new U.UF.UI.form(
  4400. "学生管理",
  4401. $$("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 }), {
  4402. "id": "student",
  4403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4404. "onresize": function () { }
  4405. }, {
  4406. closecallback: function () { }
  4407. }, { "style": { "height": "36px" } }).form; //创建窗体
  4408. _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); } }
  4409. break;
  4410. case "evaluate":
  4411. _formdiv = new U.UF.UI.form(
  4412. "学生评价",
  4413. $$("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 }), {
  4414. "id": "evaluate",
  4415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4416. "onresize": function () { }
  4417. }, {
  4418. closecallback: function () { }
  4419. }, { "style": { "height": "36px" } }).form; //创建窗体
  4420. _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); } }
  4421. break;
  4422. case "sys":
  4423. _formdiv = new U.UF.UI.form(
  4424. "目标管理",
  4425. $$("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 }), {
  4426. "id": "sys",
  4427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4428. "onresize": function () { }
  4429. }, {
  4430. closecallback: function () { }
  4431. }, { "style": { "height": "36px" } }).form; //创建窗体
  4432. _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); } }
  4433. break;
  4434. case "courseDesign":
  4435. _formdiv = new U.UF.UI.form(
  4436. "项目设计",
  4437. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  4438. "id": "courseDesign",
  4439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4440. "onresize": function () { }
  4441. }, {
  4442. closecallback: function () { }
  4443. }, { "style": { "height": "36px" } }).form; //创建窗体
  4444. _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); } }
  4445. break;
  4446. case "program":
  4447. _formdiv = new U.UF.UI.form(
  4448. "编程平台",
  4449. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4450. "id": "program",
  4451. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4452. "onresize": function () { }
  4453. }, {
  4454. closecallback: function () { }
  4455. }, { "style": { "height": "36px" } }).form; //创建窗体
  4456. _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); } }
  4457. break;
  4458. case "class":
  4459. _formdiv = new U.UF.UI.form(
  4460. "班级管理",
  4461. $$("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 }), {
  4462. "id": "class",
  4463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4464. "onresize": function () { }
  4465. }, {
  4466. closecallback: function () { }
  4467. }, { "style": { "height": "36px" } }).form; //创建窗体
  4468. _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); } }
  4469. break;
  4470. case "Grade":
  4471. _formdiv = new U.UF.UI.form(
  4472. "年级管理",
  4473. $$("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 }), {
  4474. "id": "Grade",
  4475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4476. "onresize": function () { }
  4477. }, {
  4478. closecallback: function () { }
  4479. }, { "style": { "height": "36px" } }).form; //创建窗体
  4480. _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); } }
  4481. break;
  4482. case "teacherOffice":
  4483. _formdiv = new U.UF.UI.form(
  4484. "教研室",
  4485. $$("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 }), {
  4486. "id": "teacherOffice",
  4487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4488. "onresize": function () { }
  4489. }, {
  4490. closecallback: function () { }
  4491. }, { "style": { "height": "36px" } }).form; //创建窗体
  4492. _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); } }
  4493. break;
  4494. case "my":
  4495. _formdiv = new U.UF.UI.form(
  4496. "我的资料",
  4497. $$("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 }), {
  4498. "id": "my",
  4499. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4500. "onresize": function () { }
  4501. }, {
  4502. closecallback: function () { }
  4503. }, { "style": { "height": "36px" } }).form; //创建窗体
  4504. _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); } }
  4505. break;
  4506. case "notice":
  4507. _formdiv = new U.UF.UI.form(
  4508. "通知公告",
  4509. $$("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 }), {
  4510. "id": "notice",
  4511. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4512. "onresize": function () { }
  4513. }, {
  4514. closecallback: function () { }
  4515. }, { "style": { "height": "36px" } }).form; //创建窗体
  4516. _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); } }
  4517. break;
  4518. case "library":
  4519. _formdiv = new U.UF.UI.form(
  4520. "素材库",
  4521. $$("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 }), {
  4522. "id": "library",
  4523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4524. "onresize": function () { }
  4525. }, {
  4526. closecallback: function () { }
  4527. }, { "style": { "height": "36px" } }).form; //创建窗体
  4528. _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); } }
  4529. break;
  4530. case "whiteboard":
  4531. _formdiv = new U.UF.UI.form(
  4532. "电子白板",
  4533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4534. "id": "whiteboard",
  4535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4536. "onresize": function () { }
  4537. }, {
  4538. closecallback: function () { }
  4539. }, { "style": { "height": "36px" } }).form; //创建窗体
  4540. _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); } }
  4541. break;
  4542. case "investigation":
  4543. _formdiv = new U.UF.UI.form(
  4544. "问卷调查",
  4545. $$("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 }), {
  4546. "id": "investigation",
  4547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4548. "onresize": function () { }
  4549. }, {
  4550. closecallback: function () { }
  4551. }, { "style": { "height": "36px" } }).form; //创建窗体
  4552. _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); } }
  4553. break;
  4554. case "note":
  4555. _formdiv = new U.UF.UI.form(
  4556. "便签分类",
  4557. $$("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 }), {
  4558. "id": "note",
  4559. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4560. "onresize": function () { }
  4561. }, {
  4562. closecallback: function () { }
  4563. }, { "style": { "height": "36px" } }).form; //创建窗体
  4564. _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); } }
  4565. break;
  4566. // case "score":
  4567. // _formdiv = new U.UF.UI.form(
  4568. // "量规评分",
  4569. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4570. // "id": "score",
  4571. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4572. // "onresize": function() {}
  4573. // }, {
  4574. // closecallback: function() {}
  4575. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4576. // _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); } }
  4577. // break;
  4578. case "mind":
  4579. _formdiv = new U.UF.UI.form(
  4580. "思维导图",
  4581. $$("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"
  4582. "id": "mind",
  4583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4584. "onresize": function () { }
  4585. }, {
  4586. closecallback: function () { }
  4587. }, { "style": { "height": "36px" } }).form; //创建窗体
  4588. _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); } }
  4589. break;
  4590. case "doc":
  4591. // U.MD.D.I.isRoom();
  4592. _formdiv = new U.UF.UI.form(
  4593. "协同文档",
  4594. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4595. "id": "doc",
  4596. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4597. "onresize": function () { }
  4598. }, {
  4599. closecallback: function () { }
  4600. }, { "style": { "height": "36px" } }).form; //创建窗体
  4601. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4602. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4603. })
  4604. _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); } }
  4605. break;
  4606. case "study":
  4607. _formdiv = new U.UF.UI.form(
  4608. "课程中心",
  4609. $$("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
  4610. "id": "study",
  4611. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4612. "onresize": function () { }
  4613. }, {
  4614. closecallback: function () { }
  4615. }, { "style": { "height": "36px" } }).form; //创建窗体
  4616. _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); } }
  4617. break;
  4618. case "mindNetwork": //好友打开
  4619. _formdiv = new U.UF.UI.form(
  4620. "思维网格",
  4621. $$("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 }), {
  4622. "id": "mindNetwork",
  4623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4624. "onresize": function () { }
  4625. }, {
  4626. closecallback: function () { }
  4627. }, { "style": { "height": "36px" } }).form; //创建窗体
  4628. _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); } }
  4629. break;
  4630. case "train": //好友打开
  4631. _formdiv = new U.UF.UI.form(
  4632. "训练平台",
  4633. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4634. "id": "mindNetwork",
  4635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4636. "onresize": function () { }
  4637. }, {
  4638. closecallback: function () { }
  4639. }, { "style": { "height": "36px" } }).form; //创建窗体
  4640. _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); } }
  4641. break;
  4642. case "teacherClassRoom": //好友打开
  4643. _formdiv = new U.UF.UI.form(
  4644. "实时课堂",
  4645. $$("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 }), {
  4646. "id": "teacherClassRoom",
  4647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4648. "onresize": function () { }
  4649. }, {
  4650. closecallback: function () { }
  4651. }, { "style": { "height": "36px" } }).form; //创建窗体
  4652. _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); } }
  4653. setTimeout(() => {
  4654. U.UF.F.windowZooming(_formdiv)
  4655. }, 0);
  4656. break;
  4657. }
  4658. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4659. switch (str) {
  4660. case "project": //好友打开
  4661. _formdiv = new U.UF.UI.form(
  4662. "课程管理",
  4663. $$("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 }), {
  4664. "id": "project",
  4665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4666. "onresize": function () { }
  4667. }, {
  4668. closecallback: function () { }
  4669. }, { "style": { "height": "36px" } }).form; //创建窗体
  4670. _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); } }
  4671. break;
  4672. case "evaluate":
  4673. _formdiv = new U.UF.UI.form(
  4674. "学生评价",
  4675. $$("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 }), {
  4676. "id": "evaluate",
  4677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. _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); } }
  4683. break;
  4684. case "notice":
  4685. _formdiv = new U.UF.UI.form(
  4686. "通知公告",
  4687. $$("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 }), {
  4688. "id": "notice",
  4689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4690. "onresize": function () { }
  4691. }, {
  4692. closecallback: function () { }
  4693. }, { "style": { "height": "36px" } }).form; //创建窗体
  4694. _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); } }
  4695. break;
  4696. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  4700. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4707. break;
  4708. case "program":
  4709. _formdiv = new U.UF.UI.form(
  4710. "编程平台",
  4711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4712. "id": "program",
  4713. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. case "whiteboard":
  4721. _formdiv = new U.UF.UI.form(
  4722. "电子白板",
  4723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4724. "id": "whiteboard",
  4725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4726. "onresize": function () { }
  4727. }, {
  4728. closecallback: function () { }
  4729. }, { "style": { "height": "36px" } }).form; //创建窗体
  4730. _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); } }
  4731. break;
  4732. case "investigation":
  4733. _formdiv = new U.UF.UI.form(
  4734. "问卷调查",
  4735. $$("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 }), {
  4736. "id": "investigation",
  4737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4738. "onresize": function () { }
  4739. }, {
  4740. closecallback: function () { }
  4741. }, { "style": { "height": "36px" } }).form; //创建窗体
  4742. _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); } }
  4743. break;
  4744. case "mind":
  4745. _formdiv = new U.UF.UI.form(
  4746. "思维导图",
  4747. $$("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"
  4748. "id": "mind",
  4749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. case "doc":
  4757. // U.MD.D.I.isRoom();
  4758. _formdiv = new U.UF.UI.form(
  4759. "协同文档",
  4760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4761. "id": "doc",
  4762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4763. "onresize": function () { }
  4764. }, {
  4765. closecallback: function () { }
  4766. }, { "style": { "height": "36px" } }).form; //创建窗体
  4767. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4768. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4769. })
  4770. _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); } }
  4771. break;
  4772. case "study":
  4773. _formdiv = new U.UF.UI.form(
  4774. "课程中心",
  4775. $$("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
  4776. "id": "study",
  4777. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4783. break;
  4784. case "mindNetwork": //好友打开
  4785. _formdiv = new U.UF.UI.form(
  4786. "思维网格",
  4787. $$("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 }), {
  4788. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4795. break;
  4796. case "train": //好友打开
  4797. _formdiv = new U.UF.UI.form(
  4798. "训练平台",
  4799. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4800. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4807. break;
  4808. case "sys":
  4809. _formdiv = new U.UF.UI.form(
  4810. "目标管理",
  4811. $$("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 }), {
  4812. "id": "sys",
  4813. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4819. break;
  4820. case "courseDesign":
  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": "/course-design-vue" }), {
  4824. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4831. break;
  4832. }
  4833. } else if (!_type) {
  4834. switch (str) {
  4835. case "my":
  4836. _formdiv = new U.UF.UI.form(
  4837. "我的资料",
  4838. $$("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 }), {
  4839. "id": "my",
  4840. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. }
  4848. }
  4849. switch (str) {
  4850. // AIprogram2 AI体验 aihub.cocorobo.cn
  4851. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  4852. // AIprogram AI编程 ai-blockly.cocorobo.cn
  4853. case "formulaEdi": //公式编辑
  4854. _formdiv = new U.UF.UI.form(
  4855. "公式编辑",
  4856. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  4857. "id": "formulaEdi",
  4858. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. case "molStr": //分子结构
  4866. _formdiv = new U.UF.UI.form(
  4867. "分子结构",
  4868. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  4869. "id": "molStr",
  4870. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4871. "onresize": function () { }
  4872. }, {
  4873. closecallback: function () { }
  4874. }, { "style": { "height": "36px" } }).form; //创建窗体
  4875. _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); } }
  4876. break;
  4877. case "timeAxis": //时间轴
  4878. _formdiv = new U.UF.UI.form(
  4879. "时间轴",
  4880. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  4881. "id": "timeAxis",
  4882. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4883. "onresize": function () { }
  4884. }, {
  4885. closecallback: function () { }
  4886. }, { "style": { "height": "36px" } }).form; //创建窗体
  4887. _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); } }
  4888. break;
  4889. case "AIprogram2": //AI体验
  4890. _formdiv = new U.UF.UI.form(
  4891. "AI体验",
  4892. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  4893. "id": "AIprogram2",
  4894. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. case "Pythonprogram": //python编程
  4902. _formdiv = new U.UF.UI.form(
  4903. "Python编程",
  4904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  4905. "id": "Pythonprogram",
  4906. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4907. "onresize": function () { }
  4908. }, {
  4909. closecallback: function () { }
  4910. }, { "style": { "height": "36px" } }).form; //创建窗体
  4911. _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); } }
  4912. break;
  4913. case "AIprogram": //ai编程
  4914. _formdiv = new U.UF.UI.form(
  4915. "AI编程平台",
  4916. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  4917. "id": "AIprogram",
  4918. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. _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); } }
  4924. break;
  4925. case "CocoPi": //CocoPi
  4926. _formdiv = new U.UF.UI.form(
  4927. "CocoPi",
  4928. $$("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" }), {
  4929. "id": "CocoPi",
  4930. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. _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); } }
  4936. break;
  4937. case "Wood": //Wood
  4938. _formdiv = new U.UF.UI.form(
  4939. "海龟编程",
  4940. $$("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/" }), {
  4941. "id": "Wood",
  4942. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4943. "onresize": function () { }
  4944. }, {
  4945. closecallback: function () { }
  4946. }, { "style": { "height": "36px" } }).form; //创建窗体
  4947. _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); } }
  4948. break;
  4949. case "car": //模拟驾驶
  4950. _formdiv = new U.UF.UI.form(
  4951. "模拟驾驶",
  4952. $$("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/" }), {
  4953. "id": "car",
  4954. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. _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); } }
  4960. break;
  4961. case "lineSearch": //路径搜索
  4962. _formdiv = new U.UF.UI.form(
  4963. "路径搜索",
  4964. $$("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/" }), {
  4965. "id": "lineSearch",
  4966. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. _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); } }
  4972. break;
  4973. case "deepLearning": //深度学习
  4974. _formdiv = new U.UF.UI.form(
  4975. "深度学习",
  4976. $$("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/#" }), {
  4977. "id": "deepLearning",
  4978. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4979. "onresize": function () { }
  4980. }, {
  4981. closecallback: function () { }
  4982. }, { "style": { "height": "36px" } }).form; //创建窗体
  4983. _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); } }
  4984. break;
  4985. case "allHistory": //深度学习
  4986. _formdiv = new U.UF.UI.form(
  4987. "全历史",
  4988. $$("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/" }), {
  4989. "id": "allHistory",
  4990. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. _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); } }
  4996. break;
  4997. case "chatPDF": //ai编程
  4998. _formdiv = new U.UF.UI.form(
  4999. "chatPDF",
  5000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5001. "id": "chatPDF",
  5002. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5003. "onresize": function () { }
  5004. }, {
  5005. closecallback: function () { }
  5006. }, { "style": { "height": "36px" } }).form; //创建窗体
  5007. _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); } }
  5008. break;
  5009. case "resources": //国家教育
  5010. _formdiv = new U.UF.UI.form(
  5011. "国家教育",
  5012. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5013. "id": "resources",
  5014. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5015. "onresize": function () { }
  5016. }, {
  5017. closecallback: function () { }
  5018. }, { "style": { "height": "36px" } }).form; //创建窗体
  5019. _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); } }
  5020. break;
  5021. case "codeEdit": //源码编辑
  5022. _formdiv = new U.UF.UI.form(
  5023. "源码编辑",
  5024. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5025. "id": "codeEdit",
  5026. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5027. "onresize": function () { }
  5028. }, {
  5029. closecallback: function () { }
  5030. }, { "style": { "height": "36px" } }).form; //创建窗体
  5031. _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); } }
  5032. break; //
  5033. case "MindMap": //MindMap
  5034. _formdiv = new U.UF.UI.form(
  5035. "MindMap",
  5036. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5037. "id": "MindMap",
  5038. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. _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); } }
  5044. break;
  5045. case "netWorkPanel": //netWorkPanel
  5046. _formdiv = new U.UF.UI.form(
  5047. "netWorkPanel",
  5048. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5049. "id": "netWorkPanel",
  5050. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5051. "onresize": function () { }
  5052. }, {
  5053. closecallback: function () { }
  5054. }, { "style": { "height": "36px" } }).form; //创建窗体
  5055. _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); } }
  5056. break;
  5057. case "GeoGebra": //GeoGebra
  5058. _formdiv = new U.UF.UI.form(
  5059. "GeoGebra",
  5060. $$("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" }), {
  5061. "id": "GeoGebra",
  5062. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5063. "onresize": function () { }
  5064. }, {
  5065. closecallback: function () { }
  5066. }, { "style": { "height": "36px" } }).form; //创建窗体
  5067. _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); } }
  5068. break;
  5069. case "translation": //翻译
  5070. _formdiv = new U.UF.UI.form(
  5071. "翻译",
  5072. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5073. "id": "translation",
  5074. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5075. "onresize": function () { }
  5076. }, {
  5077. closecallback: function () { }
  5078. }, { "style": { "height": "36px" } }).form; //创建窗体
  5079. _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); } }
  5080. break;
  5081. case "mohe": //魔盒
  5082. _formdiv = new U.UF.UI.form(
  5083. "魔盒识字",
  5084. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5085. "id": "mohe",
  5086. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5087. "onresize": function () { }
  5088. }, {
  5089. closecallback: function () { }
  5090. }, { "style": { "height": "36px" } }).form; //创建窗体
  5091. _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); } }
  5092. break;
  5093. case "24game": //24点
  5094. _formdiv = new U.UF.UI.form(
  5095. "24点",
  5096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5097. "id": "24game",
  5098. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5099. "onresize": function () { }
  5100. }, {
  5101. closecallback: function () { }
  5102. }, { "style": { "height": "36px" } }).form; //创建窗体
  5103. _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); } }
  5104. break;
  5105. case "case":
  5106. _formdiv = new U.UF.UI.form(
  5107. "课程进展",
  5108. $$("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 }), {
  5109. "id": "case",
  5110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5111. "onresize": function () { }
  5112. }, {
  5113. closecallback: function () { }
  5114. }, { "style": { "height": "36px" } }).form; //创建窗体
  5115. _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); } }
  5116. break;
  5117. case "snf":
  5118. _formdiv = new U.UF.UI.form(
  5119. "赛诺梵",
  5120. $$("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" }), {
  5121. "id": "snf",
  5122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5123. "onresize": function () { }
  5124. }, {
  5125. closecallback: function () { }
  5126. }, { "style": { "height": "36px" } }).form; //创建窗体
  5127. _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); } }
  5128. break;
  5129. case "hanFamily":
  5130. _formdiv = new U.UF.UI.form(
  5131. "汉字家族",
  5132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5133. "id": "hanFamily",
  5134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5135. "onresize": function () { }
  5136. }, {
  5137. closecallback: function () { }
  5138. }, { "style": { "height": "36px" } }).form; //创建窗体
  5139. _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); } }
  5140. break;
  5141. case "hanClassics":
  5142. _formdiv = new U.UF.UI.form(
  5143. "国学经典",
  5144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5145. "id": "hanClassics",
  5146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. _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); } }
  5152. break;
  5153. case "hanTraining":
  5154. _formdiv = new U.UF.UI.form(
  5155. "笔画训练",
  5156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5157. "id": "hanTraining",
  5158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _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); } }
  5164. break;
  5165. case "hanClass":
  5166. _formdiv = new U.UF.UI.form(
  5167. "书法课堂",
  5168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5169. "id": "hanClass",
  5170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _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); } }
  5176. break;
  5177. case "han":
  5178. _formdiv = new U.UF.UI.form(
  5179. "汉字宫",
  5180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5181. "id": "han",
  5182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _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); } }
  5188. break;
  5189. case "projectGM": //课程管理
  5190. _formdiv = new U.UF.UI.form(
  5191. "课程管理",
  5192. $$("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 }), {
  5193. "id": "projectGM",
  5194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _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); } }
  5200. break;
  5201. case "studyGM": //课程中心
  5202. _formdiv = new U.UF.UI.form(
  5203. "课程中心",
  5204. $$("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
  5205. "id": "study",
  5206. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5207. "onresize": function () { }
  5208. }, {
  5209. closecallback: function () { }
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _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); } }
  5212. break;
  5213. // studentGM
  5214. case "studentGM": //学生管理
  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/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  5218. "id": "studentGM",
  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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5225. break;
  5226. case "evaluateGM": //学生评价
  5227. _formdiv = new U.UF.UI.form(
  5228. "学生评价",
  5229. $$("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 }), {
  5230. "id": "evaluateGM",
  5231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5232. "onresize": function () { }
  5233. }, {
  5234. closecallback: function () { }
  5235. }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. _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); } }
  5237. break;
  5238. // classGM
  5239. case "classGM": //班级管理
  5240. _formdiv = new U.UF.UI.form(
  5241. "班级管理",
  5242. $$("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 }), {
  5243. "id": "classGM",
  5244. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _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); } }
  5250. break;
  5251. // dataGM
  5252. case "dataGM":
  5253. _formdiv = new U.UF.UI.form(
  5254. "我的资料",
  5255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  5256. "id": "dataGM",
  5257. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5263. break;
  5264. // caseGM
  5265. case "caseGM": //课程进展
  5266. _formdiv = new U.UF.UI.form(
  5267. "课程进展",
  5268. $$("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 }), {
  5269. "id": "caseGM",
  5270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _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); } }
  5276. break;
  5277. // meterialGM
  5278. case "meterialGM": //素材库
  5279. _formdiv = new U.UF.UI.form(
  5280. "素材库",
  5281. $$("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 }), {
  5282. "id": "meterialGM",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. // evaluateSGM
  5291. case "evaluateSGM": //我的评价
  5292. _formdiv = new U.UF.UI.form(
  5293. "我的评价",
  5294. $$("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 }), {
  5295. "id": "evaluateSGM",
  5296. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //创建窗体
  5301. _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); } }
  5302. break;
  5303. case "jupyter": //jupyter
  5304. _formdiv = new U.UF.UI.form(
  5305. "jupyter",
  5306. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5307. "id": "jupyter",
  5308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. _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); } }
  5314. break;
  5315. case "number": //数字实验室
  5316. _formdiv = new U.UF.UI.form(
  5317. "数字实验室",
  5318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5319. "id": "number",
  5320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "studentCourse": //项目管理 学生
  5328. _formdiv = new U.UF.UI.form(
  5329. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5330. $$("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 }), {
  5331. "id": "studentCourse",
  5332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5338. break;
  5339. case "studentCourseS": //项目管理 老师
  5340. _formdiv = new U.UF.UI.form(
  5341. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5342. $$("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 }), {
  5343. "id": "studentCourseS",
  5344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. case "studentIndex": //项目中心
  5352. _formdiv = new U.UF.UI.form(
  5353. "项目中心",
  5354. $$("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 }), {
  5355. "id": "studentIndex",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _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); } }
  5362. break;
  5363. case "CaseDesignS":
  5364. _formdiv = new U.UF.UI.form(
  5365. "项目进展",
  5366. $$("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 }), {
  5367. "id": "case",
  5368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _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); } }
  5374. break;
  5375. case "tcStudent": //腾讯学生管理
  5376. _formdiv = new U.UF.UI.form(
  5377. "学生管理",
  5378. $$("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 }), {
  5379. "id": "tcStudent",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _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); } }
  5386. break;
  5387. case "tcSchool": //腾讯学校管理
  5388. _formdiv = new U.UF.UI.form(
  5389. "学校管理",
  5390. $$("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 }), {
  5391. "id": "tcSchool",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _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); } }
  5398. break;
  5399. case "tcTeacher": //腾讯学校管理
  5400. _formdiv = new U.UF.UI.form(
  5401. "教师管理",
  5402. $$("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 }), {
  5403. "id": "tcTeacher",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _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); } }
  5410. break;
  5411. case "tcData": //腾讯我的资料
  5412. _formdiv = new U.UF.UI.form(
  5413. "我的资料",
  5414. $$("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 }), {
  5415. "id": "tcData",
  5416. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _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); } }
  5422. break;
  5423. case "tcNotice": //腾讯消息通知
  5424. _formdiv = new U.UF.UI.form(
  5425. "消息通知",
  5426. $$("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 }), {
  5427. "id": "tcNotice",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _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); } }
  5434. break;
  5435. case "myReport": //好友打开
  5436. _formdiv = new U.UF.UI.form(
  5437. "我的评价",
  5438. $$("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 }), {
  5439. "id": "myReport",
  5440. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5441. "onresize": function () { }
  5442. }, {
  5443. closecallback: function () { }
  5444. }, { "style": { "height": "36px" } }).form; //创建窗体
  5445. _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); } }
  5446. break;
  5447. case "learnAna": //好友打开
  5448. _formdiv = new U.UF.UI.form(
  5449. "学习分析",
  5450. $$("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 }), {
  5451. "id": "learnAna",
  5452. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //创建窗体
  5457. _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); } }
  5458. break;
  5459. case "AIChat": //AI共创
  5460. _formdiv = new U.UF.UI.form(
  5461. "AI共创",
  5462. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  5463. "id": "AIChat",
  5464. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  5465. "onresize": function () { }
  5466. }, {
  5467. istop: true,
  5468. closecallback: function () { $("#aichat_icon").remove(); },
  5469. narrowcallback: function () {
  5470. if (!$("#aichat_icon")[0]) {
  5471. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  5472. }
  5473. },
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _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); } }
  5476. break;
  5477. case "ainew": //AI共创
  5478. _formdiv = new U.UF.UI.form(
  5479. "AI协同",
  5480. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  5481. "id": "ainew",
  5482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _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); } }
  5488. break;
  5489. case "gpt4": //gpt4
  5490. _formdiv = new U.UF.UI.form(
  5491. "AI助手",
  5492. $$("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 }), {
  5493. "id": "gpt4",
  5494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //创建窗体
  5499. _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); } }
  5500. break;
  5501. case "aigpt": //gpt4
  5502. _formdiv = new U.UF.UI.form(
  5503. "AI助手+",
  5504. $$("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/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5505. "id": "aigpt",
  5506. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _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); } }
  5512. break;
  5513. case "futureClass": //AI共创
  5514. _formdiv = new U.UF.UI.form(
  5515. "协同建构",
  5516. $$("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://cscl.cocorobo.cn
  5517. "id": "synergyCourse",
  5518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () {
  5522. $("iframe", _formdiv)[0].contentWindow.loginout();
  5523. }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "aiagent": //ai agent
  5528. _formdiv = new U.UF.UI.form(
  5529. "AI Agent",
  5530. $$("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" }), {
  5531. "id": "AIAgent",
  5532. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "dataBoard": //数据看板
  5540. _formdiv = new U.UF.UI.form(
  5541. "数据看板",
  5542. $$("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 }), {
  5543. "id": "dataBoard",
  5544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "dataBoardSies": //数据融合
  5552. _formdiv = new U.UF.UI.form(
  5553. "数据融合",
  5554. $$("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 }), {
  5555. "id": "dataBoardSies",
  5556. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "dataBoardNew": //数据看板
  5564. _formdiv = new U.UF.UI.form(
  5565. "综合看板",
  5566. $$("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 }), {
  5567. "id": "dataBoardNew",
  5568. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "dataBoardTest": //数据看板
  5576. _formdiv = new U.UF.UI.form(
  5577. "评测看板",
  5578. $$("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 }), {
  5579. "id": "dataBoardTest",
  5580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "AIAnalyse": //AI共创
  5588. _formdiv = new U.UF.UI.form(
  5589. "AI分析",
  5590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  5591. "id": "AIAnalyse",
  5592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "studioCourse": //AI共创
  5600. _formdiv = new U.UF.UI.form(
  5601. "工作管理",
  5602. $$("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 }), {
  5603. "id": "studioCourse",
  5604. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "studioIndex": //AI共创
  5612. _formdiv = new U.UF.UI.form(
  5613. "工作中心",
  5614. $$("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 }), {
  5615. "id": "studioIndex",
  5616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. case "source":
  5624. _formdiv = new U.UF.UI.form(
  5625. "教学资源",
  5626. $$("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 }), {
  5627. "id": "source",
  5628. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. case "testTeacher":
  5636. _formdiv = new U.UF.UI.form(
  5637. "教师管理",
  5638. $$("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 }), {
  5639. "id": "testTeacher",
  5640. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _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); } }
  5646. break;
  5647. case "testStudent":
  5648. _formdiv = new U.UF.UI.form(
  5649. "教师中心",
  5650. $$("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 }), {
  5651. "id": "testStudent",
  5652. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "testTeacherSies":
  5660. _formdiv = new U.UF.UI.form(
  5661. "教师管理",
  5662. $$("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 }), {
  5663. "id": "testTeacherSies",
  5664. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. break;
  5671. case "testStudentSies":
  5672. _formdiv = new U.UF.UI.form(
  5673. "教师中心",
  5674. $$("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 }), {
  5675. "id": "testStudentSies",
  5676. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  5677. "onresize": function () { }
  5678. }, {
  5679. closecallback: function () { }
  5680. }, { "style": { "height": "36px" } }).form; //创建窗体
  5681. _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); } }
  5682. break;
  5683. case "ytpbl": //消息通知
  5684. _formdiv = new U.UF.UI.form(
  5685. "案例征集",
  5686. $$("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 }), {
  5687. "id": "ytpbl",
  5688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. // 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");
  5695. break;
  5696. case "aiCourseResource": //人工智能窗体
  5697. _formdiv = new U.UF.UI.form(
  5698. false,
  5699. $$("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 }), {
  5700. "id": "aiCourseResource",
  5701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5702. "onresize": function () { },
  5703. "isdrag": false,
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _taskbar = ''
  5708. break;
  5709. case "szdjgCocooroboX": //图形化编程
  5710. _formdiv = new U.UF.UI.form(
  5711. "图形化编程",
  5712. $$("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" }), {
  5713. "id": "szdjgCocooroboX",
  5714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _taskbar = ''
  5720. break;
  5721. case "szdjgPython": //python编程
  5722. _formdiv = new U.UF.UI.form(
  5723. "Python编程",
  5724. $$("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" }), {
  5725. "id": "szdjgPython",
  5726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _taskbar = ''
  5732. break;
  5733. case "Record":
  5734. _formdiv = new U.UF.UI.form(
  5735. "观察记录",
  5736. $$("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 }), {
  5737. "id": "Record",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _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); } }
  5744. break;
  5745. case "aigptCourse":
  5746. _formdiv = new U.UF.UI.form(
  5747. "AI智能体",
  5748. $$("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' }), {
  5749. "id": "aigptCourse",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "classroomObservation":
  5758. _formdiv = new U.UF.UI.form(
  5759. "课堂观察",
  5760. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5761. "id": "classroomObservation",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5768. break;
  5769. case "pblCourse":
  5770. _formdiv = new U.UF.UI.form(
  5771. "学生PBL",
  5772. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5773. "id": "pblCourse",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5780. break;
  5781. }
  5782. //U.MD.D.I.openClick(str);
  5783. //如果有任务栏信息
  5784. if (_taskbar) {
  5785. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  5786. }
  5787. }
  5788. // U.MD.D.I.openClick = function(str){
  5789. // var click = '';
  5790. // switch(str){
  5791. // case 'friend':
  5792. // click = '我的好友';
  5793. // break;
  5794. // case 'domain':
  5795. // click = '域名管理';
  5796. // break;
  5797. // case 'disk':
  5798. // click = '我的云盘';
  5799. // break;
  5800. // case 'word':
  5801. // click = 'Word';
  5802. // break;
  5803. // case 'excel':
  5804. // click = 'Execl';
  5805. // break;
  5806. // case 'txt':
  5807. // click = '文本文件';
  5808. // break;
  5809. // case 'lookupFriend':
  5810. // click = '查找好友';
  5811. // break;
  5812. // case 'ftp':
  5813. // click = 'FTP';
  5814. // break;
  5815. // case 'group':
  5816. // click = '群组';
  5817. // break;
  5818. // case 'set':
  5819. // click = '我的设置';
  5820. // break;
  5821. // case 'systemSet':
  5822. // click = '系统设置';
  5823. // break;
  5824. // case 'boomYun':
  5825. // click = '互联办公';
  5826. // break;
  5827. // case 'xz':
  5828. // click = '云端下载';
  5829. // break;
  5830. // case 'client':
  5831. // click = '有思浏览器';
  5832. // break;
  5833. // case 'backEndProgramming':
  5834. // click = '在线后台编程';
  5835. // break;
  5836. // case 'frontEndProgramming':
  5837. // click = '在线前端编程';
  5838. // break;
  5839. // default: break;
  5840. // }
  5841. // if(U.MD.D.I.Ip && click){
  5842. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  5843. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  5844. // })
  5845. // }
  5846. // }
  5847. /**
  5848. *函数作用:ajax简易函数,使用post格式
  5849. *@param url {data} 后台地址
  5850. *@param data {data} 参数json
  5851. *@param fn {data} 回调函数
  5852. *
  5853. */
  5854. // U.MD.D.I.Mysqlrequest = function(url,fn){
  5855. // var xhr = new XMLHttpRequest();
  5856. // xhr.open("GET",url,true);
  5857. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  5858. // xhr.onreadystatechange = function(){
  5859. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  5860. // fn.call(this,xhr.responseText);
  5861. // }
  5862. // };
  5863. // xhr.send();
  5864. // }
  5865. /*判断是否是内网IP*/
  5866. // U.MD.D.I.isInnerIPFn = function(str){
  5867. // var curPageUrl = str;
  5868. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  5869. // curPageUrl =curPageUrl.replace(reg1,'');
  5870. // // console.log('curPageUrl-1 '+curPageUrl);
  5871. // var reg2 = /\:+/g;//替换冒号为一点
  5872. // curPageUrl =curPageUrl.replace(reg2,'.');
  5873. // // console.log('curPageUrl-2 '+curPageUrl);
  5874. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  5875. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  5876. // if(curPageUrl[2] != '16'){
  5877. // return ipAddress;
  5878. // }else{
  5879. // return false;
  5880. // }
  5881. // }
  5882. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  5883. // //compatibility for firefox and chrome
  5884. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  5885. // var pc = new myPeerConnection({
  5886. // iceServers: []
  5887. // }),
  5888. // noop = function() {},
  5889. // localIPs = {},
  5890. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  5891. // key;
  5892. // function iterateIP(ip) {
  5893. // if (!localIPs[ip]) onNewIP(ip);
  5894. // localIPs[ip] = true;
  5895. // }
  5896. // //create a bogus data channel
  5897. // pc.createDataChannel("");
  5898. // // create offer and set local description
  5899. // pc.createOffer().then(function(sdp) {
  5900. // sdp.sdp.split('\n').forEach(function(line) {
  5901. // if (line.indexOf('candidate') < 0) return;
  5902. // line.match(ipRegex).forEach(iterateIP);
  5903. // });
  5904. // pc.setLocalDescription(sdp, noop, noop);
  5905. // }).catch(function(reason) {
  5906. // // An error occurred, so handle the failure to connect
  5907. // });
  5908. // //sten for candidate events
  5909. // pc.onicecandidate = function(ice) {
  5910. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  5911. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  5912. // };
  5913. // }
  5914. // U.MD.D.I.getUserIpBool = function(callback){
  5915. // U.MD.D.I.getUserIP(function(ip){
  5916. // alert("Got IP! :" + ip);
  5917. // });
  5918. //}
  5919. //#endregion
  5920. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  5921. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5922. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5923. _userinfo = US.userInfo, //登录用户信息
  5924. _userid = US.userInfo.userid //登录用户id
  5925. let _iframe;
  5926. let _cid = cid,
  5927. _stage = stage,
  5928. _task = task,
  5929. _tool = tool;
  5930. var _jie = $$("div", {
  5931. "style": {
  5932. "position": "absolute",
  5933. "bottom": "50px",
  5934. "right": "50px",
  5935. "zIndex": "9999",
  5936. "backgroundColor": "#2268bc",
  5937. "color": "#fff",
  5938. "padding": "12px 20px",
  5939. "cursor": "pointer",
  5940. "borderRadius": "4px",
  5941. },
  5942. "innerHTML": "提交作业"
  5943. })
  5944. let aTool = ''
  5945. let _loading = document.createElement('div')
  5946. _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;"
  5947. // _loading.id = "";
  5948. let _lchild = document.createElement('div')
  5949. let _limg = document.createElement('img')
  5950. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  5951. _limg.style = "width: 26px;margin-right: 10px;"
  5952. _lchild.appendChild(_limg)
  5953. let _lspan = document.createElement('span')
  5954. _lspan.innerHTML = "上传中..."
  5955. _lchild.appendChild(_lspan)
  5956. _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%);"
  5957. _loading.appendChild(_lchild)
  5958. var _box = $$('div', {
  5959. "style": {
  5960. "position": "relative",
  5961. "width": "100%",
  5962. "height": "100%",
  5963. },
  5964. })
  5965. _box.appendChild(_loading)
  5966. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  5967. switch (str) {
  5968. case "whiteboard":
  5969. aTool = 1;
  5970. _iframe = $$("iframe", {
  5971. "frameborder": "no",
  5972. "border": "0",
  5973. "scrolling ": "no",
  5974. "style": {
  5975. "cssText": "border:0;width:100%;height:100%"
  5976. },
  5977. "src": "https://beta.iwb.cocorobo.cn/"
  5978. })
  5979. _box.appendChild(_iframe);
  5980. _box.appendChild(_jie);
  5981. _formdiv = new U.UF.UI.form(
  5982. "电子白板",
  5983. _box, {
  5984. "id": "whiteboard" + cid + stage + task + tool,
  5985. "style": {
  5986. "width": "90%",
  5987. "height": "90%",
  5988. "overflow": 'hidden'
  5989. },
  5990. "onresize": function () { }
  5991. }, {
  5992. closecallback: function () { }
  5993. }, {
  5994. "style": {
  5995. "height": "36px"
  5996. }
  5997. }).form; //创建窗体
  5998. _taskbar = {
  5999. "id": str + _formdiv.id,
  6000. "style": {
  6001. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6002. },
  6003. "name": "电子白板",
  6004. "forms": _formdiv,
  6005. "click": function () {
  6006. U.MD.D.I.openApplication(str, obj, info);
  6007. }
  6008. }
  6009. break;
  6010. case "mind":
  6011. aTool = 3;
  6012. _iframe = $$("iframe", {
  6013. "frameborder": "no",
  6014. "border": "0",
  6015. "scrolling ": "no",
  6016. "style": {
  6017. "cssText": "border:0;width:100%;height:100%"
  6018. },
  6019. "src": "/kityminder-editor/dist/index.html"
  6020. })
  6021. _box.appendChild(_iframe);
  6022. _box.appendChild(_jie);
  6023. _formdiv = new U.UF.UI.form(
  6024. "思维导图",
  6025. _box, { //"/jsmind/example/demo.html"
  6026. "id": "mind" + cid + stage + task + tool,
  6027. "style": {
  6028. "width": "90%",
  6029. "height": "90%",
  6030. "overflow": 'hidden'
  6031. },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, {
  6036. "style": {
  6037. "height": "36px"
  6038. }
  6039. }).form; //创建窗体
  6040. _taskbar = {
  6041. "id": str + _formdiv.id,
  6042. "style": {
  6043. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6044. },
  6045. "name": "思维导图",
  6046. "forms": _formdiv,
  6047. "click": function () {
  6048. U.MD.D.I.openApplication(str, obj, info);
  6049. }
  6050. }
  6051. break;
  6052. case "MindMap":
  6053. aTool = 3;
  6054. _iframe = $$("iframe", {
  6055. "frameborder": "no",
  6056. "border": "0",
  6057. "scrolling ": "no",
  6058. "style": {
  6059. "cssText": "border:0;width:100%;height:100%"
  6060. },
  6061. "src": "//cloud.cocorobo.cn/mind/"
  6062. })
  6063. _box.appendChild(_iframe);
  6064. _box.appendChild(_jie);
  6065. _formdiv = new U.UF.UI.form(
  6066. "思维导图",
  6067. _box, { //"/jsmind/example/demo.html"
  6068. "id": "mind" + cid + stage + task + tool,
  6069. "style": {
  6070. "width": "90%",
  6071. "height": "90%",
  6072. "overflow": 'hidden'
  6073. },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, {
  6078. "style": {
  6079. "height": "36px"
  6080. }
  6081. }).form; //创建窗体
  6082. _taskbar = {
  6083. "id": str + _formdiv.id,
  6084. "style": {
  6085. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6086. },
  6087. "name": "思维导图",
  6088. "forms": _formdiv,
  6089. "click": function () {
  6090. U.MD.D.I.openApplication(str, obj, info);
  6091. }
  6092. }
  6093. break;
  6094. case "doc":
  6095. aTool = 6;
  6096. _iframe = $$("iframe", {
  6097. "frameborder": "no",
  6098. "border": "0",
  6099. "scrolling ": "no",
  6100. "style": {
  6101. "cssText": "border:0;width:100%;height:100%"
  6102. },
  6103. "src": "/Office/Word/WordEditArea.htm"
  6104. })
  6105. _box.appendChild(_iframe);
  6106. _box.appendChild(_jie);
  6107. _formdiv = new U.UF.UI.form(
  6108. "协同文档",
  6109. _box, {
  6110. "id": "doc" + cid + stage + task + tool,
  6111. "style": {
  6112. "width": "90%",
  6113. "height": "90%",
  6114. "overflow": 'hidden'
  6115. },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, {
  6120. "style": {
  6121. "height": "36px"
  6122. }
  6123. }).form; //创建窗体
  6124. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6125. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6126. })
  6127. _taskbar = {
  6128. "id": str + _formdiv.id,
  6129. "style": {
  6130. "backgroundImage": "url(/img/icon/doc.png)"
  6131. },
  6132. "name": "协同文档",
  6133. "forms": _formdiv,
  6134. "click": function () {
  6135. U.MD.D.I.openApplication(str, obj, info);
  6136. }
  6137. }
  6138. break;
  6139. case "mindNetwork": //好友打开
  6140. aTool = 7;
  6141. _iframe = $$("iframe", {
  6142. "webkitallowfullscreen": "",
  6143. "mozallowfullscreen": "",
  6144. "allowfullscreen": "",
  6145. "frameborder": "no",
  6146. "border": "0",
  6147. "scrolling ": "no",
  6148. "style": {
  6149. "cssText": "border:0; width:100%; height:100%;"
  6150. },
  6151. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6152. })
  6153. _box.appendChild(_iframe);
  6154. _box.appendChild(_jie);
  6155. _formdiv = new U.UF.UI.form(
  6156. "思维网格",
  6157. _box, {
  6158. "id": "mindNetwork" + cid + stage + task + tool,
  6159. "style": {
  6160. "width": "90%",
  6161. "height": "90%",
  6162. "overflow": 'hidden'
  6163. },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, {
  6168. "style": {
  6169. "height": "36px"
  6170. }
  6171. }).form; //创建窗体
  6172. _taskbar = {
  6173. "id": str + _formdiv.id,
  6174. "style": {
  6175. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6176. },
  6177. "name": "思维网格",
  6178. "forms": _formdiv,
  6179. "click": function () {
  6180. U.MD.D.I.openApplication(str, obj, info);
  6181. }
  6182. }
  6183. break;
  6184. case "courseDesign":
  6185. _iframe = $$("iframe", {
  6186. "webkitallowfullscreen": "",
  6187. "mozallowfullscreen": "",
  6188. "allowfullscreen": "",
  6189. "frameborder": "no",
  6190. "border": "0",
  6191. "scrolling ": "no",
  6192. "style": {
  6193. "cssText": "border:0; width:100%; height:100%;"
  6194. },
  6195. "src": "/course-design-vue"
  6196. })
  6197. _box.appendChild(_iframe);
  6198. _box.appendChild(_jie);
  6199. _formdiv = new U.UF.UI.form(
  6200. "项目设计",
  6201. _box, {
  6202. "id": "courseDesign" + cid + stage + task + tool,
  6203. "style": {
  6204. "width": "90%",
  6205. "height": "90%",
  6206. "overflow": 'hidden'
  6207. },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, {
  6212. "style": {
  6213. "height": "36px"
  6214. }
  6215. }).form; //创建窗体
  6216. _taskbar = {
  6217. "id": str + _formdiv.id,
  6218. "style": {
  6219. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6220. },
  6221. "name": "项目设计",
  6222. "forms": _formdiv,
  6223. "click": function () {
  6224. U.MD.D.I.openApplication(str, obj, info);
  6225. }
  6226. }
  6227. break;
  6228. }
  6229. const script1 = document.createElement("script");
  6230. script1.type = "text/javascript";
  6231. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6232. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6233. const script2 = document.createElement("script");
  6234. script2.type = "text/javascript";
  6235. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6236. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6237. const script3 = document.createElement("script");
  6238. script3.type = "text/javascript";
  6239. script3.charset = "UTF-8";
  6240. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6241. const script4 = document.createElement("script");
  6242. script4.type = "text/javascript";
  6243. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6244. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6245. if (_iframe) {
  6246. if (str == 'doc') {
  6247. _iframe = _formdiv.querySelector('iframe')
  6248. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6249. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6250. _iframe.contentWindow.document.body.appendChild(script1);
  6251. _iframe.contentWindow.document.body.appendChild(script2);
  6252. // _iframe.contentWindow.document.body.appendChild(script3);
  6253. _iframe.contentWindow.document.body.appendChild(script4);
  6254. })
  6255. if (onloadListener) {
  6256. _iframe.contentDocument.location.reload()
  6257. } else {
  6258. _iframe.contentDocument.location.reload()
  6259. }
  6260. } else if (str == 'courseDesign') {
  6261. U.UF.DL.iframeLoad(_iframe, function () {
  6262. // _iframe.contentWindow.U.MD.O.W.load();
  6263. // _iframe.contentWindow.document.body.appendChild(script1);
  6264. _iframe.contentWindow.document.body.appendChild(script2);
  6265. _iframe.contentWindow.document.body.appendChild(script4);
  6266. })
  6267. } else if (str == 'mind') {
  6268. _iframe = _formdiv.querySelector('iframe')
  6269. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6270. //
  6271. _iframe.contentWindow.document.body.appendChild(script1);
  6272. _iframe.contentWindow.document.body.appendChild(script2);
  6273. _iframe.contentWindow.document.body.appendChild(script4);
  6274. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6275. })
  6276. if (onloadListener) {
  6277. _iframe.contentDocument.location.reload()
  6278. } else {
  6279. _iframe.contentDocument.location.reload()
  6280. }
  6281. } else if (str == 'whiteboard') {
  6282. _iframe = _formdiv.querySelector('iframe')
  6283. let onloadListener = _iframe.onload = () => {
  6284. _iframe.contentWindow.document.body.appendChild(script1);
  6285. _iframe.contentWindow.document.body.appendChild(script2);
  6286. _iframe.contentWindow.document.body.appendChild(script4);
  6287. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6288. };
  6289. // if (onloadListener) {
  6290. // try {
  6291. // _iframe.src += "?cocorobo="+new Date().getTime()
  6292. // _iframe.contentWindow.document.location.reload()
  6293. // } catch (error) {
  6294. // }
  6295. // } else {
  6296. // _iframe.contentDocument.location.reload()
  6297. // }
  6298. } else {
  6299. _iframe.onload = () => {
  6300. _iframe.contentWindow.document.body.appendChild(script1);
  6301. _iframe.contentWindow.document.body.appendChild(script2);
  6302. // _iframe.contentWindow.document.body.appendChild(script3);
  6303. _iframe.contentWindow.document.body.appendChild(script4);
  6304. };
  6305. }
  6306. _jie.onclick = async () => {
  6307. let text = ''
  6308. if (aTool == 1) {
  6309. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6310. } else if (aTool == 6) {
  6311. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6312. } else if (aTool == 3) {
  6313. text = await U.MD.D.I.getEditorContent(_iframe);
  6314. }
  6315. _loading.style.display = 'flex'
  6316. console.log(_loading);
  6317. var _ajs = _iframe.contentWindow.document.createElement("script");
  6318. _ajs.type = "text/javascript";
  6319. _ajs.innerHTML =
  6320. // 'console.log(' + _loading + ');\n' +
  6321. 'var _js = document.createElement("script");\n' +
  6322. '_js.type="text/javascript";\n' +
  6323. '_js.charset="UTF-8";\n' +
  6324. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6325. "_js.onload = function(){\n" +
  6326. ' var a = document.getElementsByTagName("img")\n' +
  6327. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6328. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6329. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6330. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6331. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6332. "beforeUpload_shishi(file," +
  6333. "'" +
  6334. _userid +
  6335. "'" +
  6336. ", " +
  6337. "'" +
  6338. _cid +
  6339. "'" +
  6340. ", " +
  6341. "'" +
  6342. _stage +
  6343. "'" +
  6344. ", " +
  6345. "'" +
  6346. _task +
  6347. "'" +
  6348. ", " +
  6349. "'" +
  6350. _tool +
  6351. "'" +
  6352. ", " +
  6353. "'" +
  6354. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6355. "'" +
  6356. ", " +
  6357. "'" +
  6358. aTool +
  6359. "'" +
  6360. ", " +
  6361. "`" +
  6362. text +
  6363. "`" +
  6364. ")\n" +
  6365. " });\n" +
  6366. "}\n" +
  6367. "document.head.appendChild(_js);\n";
  6368. _iframe.contentWindow.document.head.appendChild(_ajs);
  6369. }
  6370. }
  6371. //U.MD.D.I.openClick(str);
  6372. //如果有任务栏信息
  6373. // if (_taskbar) {
  6374. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6375. // }
  6376. }
  6377. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6378. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6379. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6380. _userinfo = US.userInfo, //登录用户信息
  6381. _userid = US.userInfo.userid //登录用户id
  6382. let _iframe;
  6383. let _cid = cid,
  6384. _stage = stage,
  6385. _task = task,
  6386. _tool = tool;
  6387. var _jie = $$("div", {
  6388. "style": {
  6389. "position": "absolute",
  6390. "bottom": "50px",
  6391. "right": "50px",
  6392. "zIndex": "9999",
  6393. "backgroundColor": "#2268bc",
  6394. "color": "#fff",
  6395. "padding": "12px 20px",
  6396. "cursor": "pointer",
  6397. "borderRadius": "4px",
  6398. },
  6399. "innerHTML": "提交作业"
  6400. })
  6401. let aTool = ''
  6402. let _loading = document.createElement('div')
  6403. _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;"
  6404. // _loading.id = "";
  6405. let _lchild = document.createElement('div')
  6406. let _limg = document.createElement('img')
  6407. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6408. _limg.style = "width: 26px;margin-right: 10px;"
  6409. _lchild.appendChild(_limg)
  6410. let _lspan = document.createElement('span')
  6411. _lspan.innerHTML = "上传中..."
  6412. _lchild.appendChild(_lspan)
  6413. _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%);"
  6414. _loading.appendChild(_lchild)
  6415. let _box = $$('div', {
  6416. "style": {
  6417. "position": "relative",
  6418. "width": "100%",
  6419. "height": "100%",
  6420. },
  6421. })
  6422. _box.appendChild(_loading)
  6423. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  6424. switch (str) {
  6425. case "whiteboard":
  6426. aTool = 1;
  6427. _iframe = $$("iframe", {
  6428. "frameborder": "no",
  6429. "border": "0",
  6430. "scrolling ": "no",
  6431. "style": {
  6432. "cssText": "border:0;width:100%;height:100%"
  6433. },
  6434. "src": "https://beta.iwb.cocorobo.cn/"
  6435. })
  6436. _box.appendChild(_iframe);
  6437. _box.appendChild(_jie);
  6438. _formdiv = new U.UF.UI.form(
  6439. "电子白板",
  6440. _box, {
  6441. "id": "whiteboard" + cid + stage + task + tool,
  6442. "style": {
  6443. "width": "90%",
  6444. "height": "90%",
  6445. "overflow": 'hidden'
  6446. },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, {
  6451. "style": {
  6452. "height": "36px"
  6453. }
  6454. }).form; //创建窗体
  6455. _taskbar = {
  6456. "id": str + _formdiv.id,
  6457. "style": {
  6458. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6459. },
  6460. "name": "电子白板",
  6461. "forms": _formdiv,
  6462. "click": function () {
  6463. U.MD.D.I.openApplication(str, obj, info);
  6464. }
  6465. }
  6466. break;
  6467. case "mind":
  6468. aTool = 3;
  6469. _iframe = $$("iframe", {
  6470. "frameborder": "no",
  6471. "border": "0",
  6472. "scrolling ": "no",
  6473. "style": {
  6474. "cssText": "border:0;width:100%;height:100%"
  6475. },
  6476. "src": "/kityminder-editor/dist/index.html"
  6477. })
  6478. _box.appendChild(_iframe);
  6479. _box.appendChild(_jie);
  6480. _formdiv = new U.UF.UI.form(
  6481. "思维导图",
  6482. _box, { //"/jsmind/example/demo.html"
  6483. "id": "mind" + cid + stage + task + tool,
  6484. "style": {
  6485. "width": "90%",
  6486. "height": "90%",
  6487. "overflow": 'hidden'
  6488. },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, {
  6493. "style": {
  6494. "height": "36px"
  6495. }
  6496. }).form; //创建窗体
  6497. _taskbar = {
  6498. "id": str + _formdiv.id,
  6499. "style": {
  6500. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6501. },
  6502. "name": "思维导图",
  6503. "forms": _formdiv,
  6504. "click": function () {
  6505. U.MD.D.I.openApplication(str, obj, info);
  6506. }
  6507. }
  6508. break;
  6509. case "MindMap":
  6510. aTool = 3;
  6511. _iframe = $$("iframe", {
  6512. "frameborder": "no",
  6513. "border": "0",
  6514. "scrolling ": "no",
  6515. "style": {
  6516. "cssText": "border:0;width:100%;height:100%"
  6517. },
  6518. "src": "//cloud.cocorobo.cn/mind/"
  6519. })
  6520. _box.appendChild(_iframe);
  6521. _box.appendChild(_jie);
  6522. _formdiv = new U.UF.UI.form(
  6523. "思维导图",
  6524. _box, { //"/jsmind/example/demo.html"
  6525. "id": "mind" + cid + stage + task + tool,
  6526. "style": {
  6527. "width": "90%",
  6528. "height": "90%",
  6529. "overflow": 'hidden'
  6530. },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, {
  6535. "style": {
  6536. "height": "36px"
  6537. }
  6538. }).form; //创建窗体
  6539. _taskbar = {
  6540. "id": str + _formdiv.id,
  6541. "style": {
  6542. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6543. },
  6544. "name": "思维导图",
  6545. "forms": _formdiv,
  6546. "click": function () {
  6547. U.MD.D.I.openApplication(str, obj, info);
  6548. }
  6549. }
  6550. break;
  6551. case "doc":
  6552. aTool = 6;
  6553. _iframe = $$("iframe", {
  6554. "frameborder": "no",
  6555. "border": "0",
  6556. "scrolling ": "no",
  6557. "style": {
  6558. "cssText": "border:0;width:100%;height:100%"
  6559. },
  6560. "src": "/Office/Word/WordEditArea.htm"
  6561. })
  6562. _box.appendChild(_iframe);
  6563. _box.appendChild(_jie);
  6564. _formdiv = new U.UF.UI.form(
  6565. "协同文档",
  6566. _box, {
  6567. "id": "doc" + cid + stage + task + tool,
  6568. "style": {
  6569. "width": "90%",
  6570. "height": "90%",
  6571. "overflow": 'hidden'
  6572. },
  6573. "onresize": function () { }
  6574. }, {
  6575. closecallback: function () { }
  6576. }, {
  6577. "style": {
  6578. "height": "36px"
  6579. }
  6580. }).form; //创建窗体
  6581. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6582. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6583. })
  6584. _taskbar = {
  6585. "id": str + _formdiv.id,
  6586. "style": {
  6587. "backgroundImage": "url(/img/icon/doc.png)"
  6588. },
  6589. "name": "协同文档",
  6590. "forms": _formdiv,
  6591. "click": function () {
  6592. U.MD.D.I.openApplication(str, obj, info);
  6593. }
  6594. }
  6595. break;
  6596. case "mindNetwork": //好友打开
  6597. aTool = 7;
  6598. _iframe = $$("iframe", {
  6599. "webkitallowfullscreen": "",
  6600. "mozallowfullscreen": "",
  6601. "allowfullscreen": "",
  6602. "frameborder": "no",
  6603. "border": "0",
  6604. "scrolling ": "no",
  6605. "style": {
  6606. "cssText": "border:0; width:100%; height:100%;"
  6607. },
  6608. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6609. })
  6610. _box.appendChild(_iframe);
  6611. _box.appendChild(_jie);
  6612. _formdiv = new U.UF.UI.form(
  6613. "思维网格",
  6614. _box, {
  6615. "id": "mindNetwork" + cid + stage + task + tool,
  6616. "style": {
  6617. "width": "90%",
  6618. "height": "90%",
  6619. "overflow": 'hidden'
  6620. },
  6621. "onresize": function () { }
  6622. }, {
  6623. closecallback: function () { }
  6624. }, {
  6625. "style": {
  6626. "height": "36px"
  6627. }
  6628. }).form; //创建窗体
  6629. _taskbar = {
  6630. "id": str + _formdiv.id,
  6631. "style": {
  6632. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6633. },
  6634. "name": "思维网格",
  6635. "forms": _formdiv,
  6636. "click": function () {
  6637. U.MD.D.I.openApplication(str, obj, info);
  6638. }
  6639. }
  6640. break;
  6641. case "courseDesign":
  6642. _iframe = $$("iframe", {
  6643. "webkitallowfullscreen": "",
  6644. "mozallowfullscreen": "",
  6645. "allowfullscreen": "",
  6646. "frameborder": "no",
  6647. "border": "0",
  6648. "scrolling ": "no",
  6649. "style": {
  6650. "cssText": "border:0; width:100%; height:100%;"
  6651. },
  6652. "src": "/course-design-vue"
  6653. })
  6654. _box.appendChild(_iframe);
  6655. _box.appendChild(_jie);
  6656. _formdiv = new U.UF.UI.form(
  6657. "项目设计",
  6658. _box, {
  6659. "id": "courseDesign" + cid + stage + task + tool,
  6660. "style": {
  6661. "width": "90%",
  6662. "height": "90%",
  6663. "overflow": 'hidden'
  6664. },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, {
  6669. "style": {
  6670. "height": "36px"
  6671. }
  6672. }).form; //创建窗体
  6673. _taskbar = {
  6674. "id": str + _formdiv.id,
  6675. "style": {
  6676. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6677. },
  6678. "name": "项目设计",
  6679. "forms": _formdiv,
  6680. "click": function () {
  6681. U.MD.D.I.openApplication(str, obj, info);
  6682. }
  6683. }
  6684. break;
  6685. }
  6686. const script1 = document.createElement("script");
  6687. script1.type = "text/javascript";
  6688. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6689. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6690. const script2 = document.createElement("script");
  6691. script2.type = "text/javascript";
  6692. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6693. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6694. const script3 = document.createElement("script");
  6695. script3.type = "text/javascript";
  6696. script3.charset = "UTF-8";
  6697. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6698. const script4 = document.createElement("script");
  6699. script4.type = "text/javascript";
  6700. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6701. script4.src = window.origin + "/js/Common/jietu2E.js";
  6702. if (_iframe) {
  6703. if (str == 'doc') {
  6704. _iframe = _formdiv.querySelector('iframe')
  6705. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6706. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6707. _iframe.contentWindow.document.body.appendChild(script1);
  6708. _iframe.contentWindow.document.body.appendChild(script2);
  6709. // _iframe.contentWindow.document.body.appendChild(script3);
  6710. _iframe.contentWindow.document.body.appendChild(script4);
  6711. })
  6712. if (onloadListener) {
  6713. _iframe.contentDocument.location.reload()
  6714. } else {
  6715. _iframe.contentDocument.location.reload()
  6716. }
  6717. } else if (str == 'courseDesign') {
  6718. U.UF.DL.iframeLoad(_iframe, function () {
  6719. // _iframe.contentWindow.U.MD.O.W.load();
  6720. // _iframe.contentWindow.document.body.appendChild(script1);
  6721. _iframe.contentWindow.document.body.appendChild(script2);
  6722. _iframe.contentWindow.document.body.appendChild(script4);
  6723. })
  6724. } else if (str == 'mind') {
  6725. _iframe = _formdiv.querySelector('iframe')
  6726. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6727. //
  6728. _iframe.contentWindow.document.body.appendChild(script1);
  6729. _iframe.contentWindow.document.body.appendChild(script2);
  6730. _iframe.contentWindow.document.body.appendChild(script4);
  6731. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6732. })
  6733. if (onloadListener) {
  6734. _iframe.contentDocument.location.reload()
  6735. } else {
  6736. _iframe.contentDocument.location.reload()
  6737. }
  6738. } else if (str == 'whiteboard') {
  6739. _iframe = _formdiv.querySelector('iframe')
  6740. let onloadListener = _iframe.onload = () => {
  6741. _iframe.contentWindow.document.body.appendChild(script1);
  6742. _iframe.contentWindow.document.body.appendChild(script2);
  6743. _iframe.contentWindow.document.body.appendChild(script4);
  6744. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6745. };
  6746. // if (onloadListener) {
  6747. // try {
  6748. // _iframe.src += "?cocorobo="+new Date().getTime()
  6749. // _iframe.contentWindow.document.location.reload()
  6750. // } catch (error) {
  6751. // }
  6752. // } else {
  6753. // _iframe.contentDocument.location.reload()
  6754. // }
  6755. } else {
  6756. _iframe.onload = () => {
  6757. _iframe.contentWindow.document.body.appendChild(script1);
  6758. _iframe.contentWindow.document.body.appendChild(script2);
  6759. // _iframe.contentWindow.document.body.appendChild(script3);
  6760. _iframe.contentWindow.document.body.appendChild(script4);
  6761. };
  6762. }
  6763. _jie.onclick = async () => {
  6764. let text = ''
  6765. if (aTool == 1) {
  6766. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6767. } else if (aTool == 6) {
  6768. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6769. } else if (aTool == 3) {
  6770. text = await U.MD.D.I.getEditorContent(_iframe);
  6771. }
  6772. _loading.style.display = 'flex'
  6773. console.log(_loading);
  6774. var _ajs = _iframe.contentWindow.document.createElement("script");
  6775. _ajs.type = "text/javascript";
  6776. _ajs.innerHTML =
  6777. // 'console.log(' + _loading + ');\n' +
  6778. 'var _js = document.createElement("script");\n' +
  6779. '_js.type="text/javascript";\n' +
  6780. '_js.charset="UTF-8";\n' +
  6781. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6782. "_js.onload = function(){\n" +
  6783. ' var a = document.getElementsByTagName("img")\n' +
  6784. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6785. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6786. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6787. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6788. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6789. "beforeUpload_shishi(file," +
  6790. "'" +
  6791. _userid +
  6792. "'" +
  6793. ", " +
  6794. "'" +
  6795. _cid +
  6796. "'" +
  6797. ", " +
  6798. "'" +
  6799. _stage +
  6800. "'" +
  6801. ", " +
  6802. "'" +
  6803. _task +
  6804. "'" +
  6805. ", " +
  6806. "'" +
  6807. _tool +
  6808. "'" +
  6809. ", " +
  6810. "'" +
  6811. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  6812. "'" +
  6813. ", " +
  6814. "'" +
  6815. aTool +
  6816. "'" +
  6817. ", " +
  6818. "`" +
  6819. text +
  6820. "`" +
  6821. ")\n" +
  6822. " });\n" +
  6823. "}\n" +
  6824. "document.head.appendChild(_js);\n";
  6825. _iframe.contentWindow.document.head.appendChild(_ajs);
  6826. }
  6827. }
  6828. //U.MD.D.I.openClick(str);
  6829. //如果有任务栏信息
  6830. // if (_taskbar) {
  6831. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6832. // }
  6833. }
  6834. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  6835. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6836. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6837. _userid = student.userid, //登录用户id
  6838. _username = student.student //用户名字
  6839. let _iframe;
  6840. let _cid = cid,
  6841. _stage = stage,
  6842. _task = task,
  6843. _tool = tool;
  6844. var _jie = $$("div", {
  6845. "style": {
  6846. "position": "absolute",
  6847. "bottom": "50px",
  6848. "right": "50px",
  6849. "zIndex": "9999",
  6850. "backgroundColor": "#2268bc",
  6851. "color": "#fff",
  6852. "padding": "12px 20px",
  6853. "cursor": "pointer",
  6854. "borderRadius": "4px",
  6855. },
  6856. "innerHTML": "提交作业"
  6857. })
  6858. let aTool = ''
  6859. let _loading = document.createElement('div')
  6860. _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;"
  6861. // _loading.id = "";
  6862. let _lchild = document.createElement('div')
  6863. let _limg = document.createElement('img')
  6864. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6865. _limg.style = "width: 26px;margin-right: 10px;"
  6866. _lchild.appendChild(_limg)
  6867. let _lspan = document.createElement('span')
  6868. _lspan.innerHTML = "上传中..."
  6869. _lchild.appendChild(_lspan)
  6870. _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%);"
  6871. _loading.appendChild(_lchild)
  6872. var _box = $$('div', {
  6873. "style": {
  6874. "position": "relative",
  6875. "width": "100%",
  6876. "height": "100%",
  6877. },
  6878. })
  6879. _box.appendChild(_loading)
  6880. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  6881. switch (str) {
  6882. case "whiteboard":
  6883. aTool = 1;
  6884. _iframe = $$("iframe", {
  6885. "frameborder": "no",
  6886. "border": "0",
  6887. "scrolling ": "no",
  6888. "style": {
  6889. "cssText": "border:0;width:100%;height:100%"
  6890. },
  6891. "src": "https://beta.iwb.cocorobo.cn/"
  6892. })
  6893. _box.appendChild(_iframe);
  6894. _box.appendChild(_jie);
  6895. _formdiv = new U.UF.UI.form(
  6896. "电子白板-" + _username,
  6897. _box, {
  6898. "id": "whiteboard" + cid + stage + task + tool + _userid,
  6899. "style": {
  6900. "width": "90%",
  6901. "height": "90%",
  6902. "overflow": 'hidden'
  6903. },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, {
  6908. "style": {
  6909. "height": "36px"
  6910. }
  6911. }).form; //创建窗体
  6912. _taskbar = {
  6913. "id": str + _formdiv.id,
  6914. "style": {
  6915. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6916. },
  6917. "name": "电子白板",
  6918. "forms": _formdiv,
  6919. "click": function () {
  6920. U.MD.D.I.openApplication(str, obj, info);
  6921. }
  6922. }
  6923. break;
  6924. case "mind":
  6925. aTool = 3;
  6926. _iframe = $$("iframe", {
  6927. "frameborder": "no",
  6928. "border": "0",
  6929. "scrolling ": "no",
  6930. "style": {
  6931. "cssText": "border:0;width:100%;height:100%"
  6932. },
  6933. "src": "/kityminder-editor/dist/index.html"
  6934. })
  6935. _box.appendChild(_iframe);
  6936. _box.appendChild(_jie);
  6937. _formdiv = new U.UF.UI.form(
  6938. "思维导图-" + _username,
  6939. _box, { //"/jsmind/example/demo.html"
  6940. "id": "mind" + cid + stage + task + tool + _userid,
  6941. "style": {
  6942. "width": "90%",
  6943. "height": "90%",
  6944. "overflow": 'hidden'
  6945. },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, {
  6950. "style": {
  6951. "height": "36px"
  6952. }
  6953. }).form; //创建窗体
  6954. _taskbar = {
  6955. "id": str + _formdiv.id,
  6956. "style": {
  6957. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6958. },
  6959. "name": "思维导图",
  6960. "forms": _formdiv,
  6961. "click": function () {
  6962. U.MD.D.I.openApplication(str, obj, info);
  6963. }
  6964. }
  6965. break;
  6966. case "MindMap":
  6967. aTool = 3;
  6968. _iframe = $$("iframe", {
  6969. "frameborder": "no",
  6970. "border": "0",
  6971. "scrolling ": "no",
  6972. "style": {
  6973. "cssText": "border:0;width:100%;height:100%"
  6974. },
  6975. "src": "//cloud.cocorobo.cn/mind/"
  6976. })
  6977. _box.appendChild(_iframe);
  6978. _box.appendChild(_jie);
  6979. _formdiv = new U.UF.UI.form(
  6980. "思维导图-" + _username,
  6981. _box, { //"/jsmind/example/demo.html"
  6982. "id": "mind" + cid + stage + task + tool + _userid,
  6983. "style": {
  6984. "width": "90%",
  6985. "height": "90%",
  6986. "overflow": 'hidden'
  6987. },
  6988. "onresize": function () { }
  6989. }, {
  6990. closecallback: function () { }
  6991. }, {
  6992. "style": {
  6993. "height": "36px"
  6994. }
  6995. }).form; //创建窗体
  6996. _taskbar = {
  6997. "id": str + _formdiv.id,
  6998. "style": {
  6999. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7000. },
  7001. "name": "思维导图",
  7002. "forms": _formdiv,
  7003. "click": function () {
  7004. U.MD.D.I.openApplication(str, obj, info);
  7005. }
  7006. }
  7007. break;
  7008. case "doc":
  7009. aTool = 6;
  7010. _iframe = $$("iframe", {
  7011. "frameborder": "no",
  7012. "border": "0",
  7013. "scrolling ": "no",
  7014. "style": {
  7015. "cssText": "border:0;width:100%;height:100%"
  7016. },
  7017. "src": "/Office/Word/WordEditArea.htm"
  7018. })
  7019. _box.appendChild(_iframe);
  7020. _box.appendChild(_jie);
  7021. _formdiv = new U.UF.UI.form(
  7022. "协同文档-" + _username,
  7023. _box, {
  7024. "id": "doc" + cid + stage + task + tool + _userid,
  7025. "style": {
  7026. "width": "90%",
  7027. "height": "90%",
  7028. "overflow": 'hidden'
  7029. },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, {
  7034. "style": {
  7035. "height": "36px"
  7036. }
  7037. }).form; //创建窗体
  7038. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7039. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7040. })
  7041. _taskbar = {
  7042. "id": str + _formdiv.id,
  7043. "style": {
  7044. "backgroundImage": "url(/img/icon/doc.png)"
  7045. },
  7046. "name": "协同文档",
  7047. "forms": _formdiv,
  7048. "click": function () {
  7049. U.MD.D.I.openApplication(str, obj, info);
  7050. }
  7051. }
  7052. break;
  7053. case "mindNetwork": //好友打开
  7054. aTool = 7;
  7055. _iframe = $$("iframe", {
  7056. "webkitallowfullscreen": "",
  7057. "mozallowfullscreen": "",
  7058. "allowfullscreen": "",
  7059. "frameborder": "no",
  7060. "border": "0",
  7061. "scrolling ": "no",
  7062. "style": {
  7063. "cssText": "border:0; width:100%; height:100%;"
  7064. },
  7065. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7066. })
  7067. _box.appendChild(_iframe);
  7068. _box.appendChild(_jie);
  7069. _formdiv = new U.UF.UI.form(
  7070. "思维网格-" + _username,
  7071. _box, {
  7072. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7073. "style": {
  7074. "width": "90%",
  7075. "height": "90%",
  7076. "overflow": 'hidden'
  7077. },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, {
  7082. "style": {
  7083. "height": "36px"
  7084. }
  7085. }).form; //创建窗体
  7086. _taskbar = {
  7087. "id": str + _formdiv.id,
  7088. "style": {
  7089. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7090. },
  7091. "name": "思维网格",
  7092. "forms": _formdiv,
  7093. "click": function () {
  7094. U.MD.D.I.openApplication(str, obj, info);
  7095. }
  7096. }
  7097. break;
  7098. case "courseDesign":
  7099. _iframe = $$("iframe", {
  7100. "webkitallowfullscreen": "",
  7101. "mozallowfullscreen": "",
  7102. "allowfullscreen": "",
  7103. "frameborder": "no",
  7104. "border": "0",
  7105. "scrolling ": "no",
  7106. "style": {
  7107. "cssText": "border:0; width:100%; height:100%;"
  7108. },
  7109. "src": "/course-design-vue"
  7110. })
  7111. _box.appendChild(_iframe);
  7112. _box.appendChild(_jie);
  7113. _formdiv = new U.UF.UI.form(
  7114. "项目设计-" + _username,
  7115. _box, {
  7116. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7117. "style": {
  7118. "width": "90%",
  7119. "height": "90%",
  7120. "overflow": 'hidden'
  7121. },
  7122. "onresize": function () { }
  7123. }, {
  7124. closecallback: function () { }
  7125. }, {
  7126. "style": {
  7127. "height": "36px"
  7128. }
  7129. }).form; //创建窗体
  7130. _taskbar = {
  7131. "id": str + _formdiv.id,
  7132. "style": {
  7133. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7134. },
  7135. "name": "项目设计",
  7136. "forms": _formdiv,
  7137. "click": function () {
  7138. U.MD.D.I.openApplication(str, obj, info);
  7139. }
  7140. }
  7141. break;
  7142. }
  7143. const script1 = document.createElement("script");
  7144. script1.type = "text/javascript";
  7145. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7146. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7147. const script2 = document.createElement("script");
  7148. script2.type = "text/javascript";
  7149. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7150. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7151. const script3 = document.createElement("script");
  7152. script3.type = "text/javascript";
  7153. script3.charset = "UTF-8";
  7154. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7155. const script4 = document.createElement("script");
  7156. script4.type = "text/javascript";
  7157. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7158. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7159. if (_iframe) {
  7160. if (str == 'doc') {
  7161. _iframe = _formdiv.querySelector('iframe')
  7162. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7163. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7164. _iframe.contentWindow.document.body.appendChild(script1);
  7165. _iframe.contentWindow.document.body.appendChild(script2);
  7166. // _iframe.contentWindow.document.body.appendChild(script3);
  7167. _iframe.contentWindow.document.body.appendChild(script4);
  7168. })
  7169. if (onloadListener) {
  7170. _iframe.contentDocument.location.reload()
  7171. } else {
  7172. _iframe.contentDocument.location.reload()
  7173. }
  7174. } else if (str == 'courseDesign') {
  7175. U.UF.DL.iframeLoad(_iframe, function () {
  7176. // _iframe.contentWindow.U.MD.O.W.load();
  7177. // _iframe.contentWindow.document.body.appendChild(script1);
  7178. _iframe.contentWindow.document.body.appendChild(script2);
  7179. _iframe.contentWindow.document.body.appendChild(script4);
  7180. })
  7181. } else if (str == 'mind') {
  7182. _iframe = _formdiv.querySelector('iframe')
  7183. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7184. //
  7185. _iframe.contentWindow.document.body.appendChild(script1);
  7186. _iframe.contentWindow.document.body.appendChild(script2);
  7187. _iframe.contentWindow.document.body.appendChild(script4);
  7188. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7189. })
  7190. if (onloadListener) {
  7191. _iframe.contentDocument.location.reload()
  7192. } else {
  7193. _iframe.contentDocument.location.reload()
  7194. }
  7195. } else if (str == 'whiteboard') {
  7196. _iframe = _formdiv.querySelector('iframe')
  7197. let onloadListener = _iframe.onload = () => {
  7198. _iframe.contentWindow.document.body.appendChild(script1);
  7199. _iframe.contentWindow.document.body.appendChild(script2);
  7200. _iframe.contentWindow.document.body.appendChild(script4);
  7201. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7202. };
  7203. // if (onloadListener) {
  7204. // try {
  7205. // _iframe.src += "?cocorobo="+new Date().getTime()
  7206. // _iframe.contentWindow.document.location.reload()
  7207. // } catch (error) {
  7208. // }
  7209. // } else {
  7210. // _iframe.contentDocument.location.reload()
  7211. // }
  7212. } else {
  7213. _iframe.onload = () => {
  7214. _iframe.contentWindow.document.body.appendChild(script1);
  7215. _iframe.contentWindow.document.body.appendChild(script2);
  7216. // _iframe.contentWindow.document.body.appendChild(script3);
  7217. _iframe.contentWindow.document.body.appendChild(script4);
  7218. };
  7219. }
  7220. _jie.onclick = async () => {
  7221. let text = ''
  7222. if (aTool == 1) {
  7223. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7224. } else if (aTool == 6) {
  7225. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7226. } else if (aTool == 3) {
  7227. text = await U.MD.D.I.getEditorContent(_iframe);
  7228. }
  7229. _loading.style.display = 'flex'
  7230. console.log(_loading);
  7231. var _ajs = _iframe.contentWindow.document.createElement("script");
  7232. _ajs.type = "text/javascript";
  7233. _ajs.innerHTML =
  7234. // 'console.log(' + _loading + ');\n' +
  7235. 'var _js = document.createElement("script");\n' +
  7236. '_js.type="text/javascript";\n' +
  7237. '_js.charset="UTF-8";\n' +
  7238. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7239. "_js.onload = function(){\n" +
  7240. ' var a = document.getElementsByTagName("img")\n' +
  7241. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7242. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7243. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7244. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7245. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7246. "beforeUpload_shishi(file," +
  7247. "'" +
  7248. _userid +
  7249. "'" +
  7250. ", " +
  7251. "'" +
  7252. _cid +
  7253. "'" +
  7254. ", " +
  7255. "'" +
  7256. _stage +
  7257. "'" +
  7258. ", " +
  7259. "'" +
  7260. _task +
  7261. "'" +
  7262. ", " +
  7263. "'" +
  7264. _tool +
  7265. "'" +
  7266. ", " +
  7267. "'" +
  7268. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7269. "'" +
  7270. ", " +
  7271. "'" +
  7272. aTool +
  7273. "'" +
  7274. ", " +
  7275. "`" +
  7276. text +
  7277. "`" +
  7278. ")\n" +
  7279. " });\n" +
  7280. "}\n" +
  7281. "document.head.appendChild(_js);\n";
  7282. _iframe.contentWindow.document.head.appendChild(_ajs);
  7283. }
  7284. }
  7285. }
  7286. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7287. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7288. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7289. _userid = student.userid, //登录用户id
  7290. _username = student.student //用户名字
  7291. let _iframe;
  7292. let _cid = cid,
  7293. _stage = stage,
  7294. _task = task,
  7295. _tool = tool;
  7296. var _jie = $$("div", {
  7297. "style": {
  7298. "position": "absolute",
  7299. "bottom": "50px",
  7300. "right": "50px",
  7301. "zIndex": "9999",
  7302. "backgroundColor": "#2268bc",
  7303. "color": "#fff",
  7304. "padding": "12px 20px",
  7305. "cursor": "pointer",
  7306. "borderRadius": "4px",
  7307. },
  7308. "innerHTML": "提交作业"
  7309. })
  7310. let aTool = ''
  7311. let _loading = document.createElement('div')
  7312. _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;"
  7313. // _loading.id = "";
  7314. let _lchild = document.createElement('div')
  7315. let _limg = document.createElement('img')
  7316. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7317. _limg.style = "width: 26px;margin-right: 10px;"
  7318. _lchild.appendChild(_limg)
  7319. let _lspan = document.createElement('span')
  7320. _lspan.innerHTML = "上传中..."
  7321. _lchild.appendChild(_lspan)
  7322. _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%);"
  7323. _loading.appendChild(_lchild)
  7324. var _box = $$('div', {
  7325. "style": {
  7326. "position": "relative",
  7327. "width": "100%",
  7328. "height": "100%",
  7329. },
  7330. })
  7331. _box.appendChild(_loading)
  7332. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7333. switch (str) {
  7334. case "whiteboard":
  7335. aTool = 1;
  7336. _iframe = $$("iframe", {
  7337. "frameborder": "no",
  7338. "border": "0",
  7339. "scrolling ": "no",
  7340. "style": {
  7341. "cssText": "border:0;width:100%;height:100%"
  7342. },
  7343. "src": "https://beta.iwb.cocorobo.cn/"
  7344. })
  7345. _box.appendChild(_iframe);
  7346. _box.appendChild(_jie);
  7347. _formdiv = new U.UF.UI.form(
  7348. "电子白板-" + _username,
  7349. _box, {
  7350. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7351. "style": {
  7352. "width": "90%",
  7353. "height": "90%",
  7354. "overflow": 'hidden'
  7355. },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, {
  7360. "style": {
  7361. "height": "36px"
  7362. }
  7363. }).form; //创建窗体
  7364. _taskbar = {
  7365. "id": str + _formdiv.id,
  7366. "style": {
  7367. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7368. },
  7369. "name": "电子白板",
  7370. "forms": _formdiv,
  7371. "click": function () {
  7372. U.MD.D.I.openApplication(str, obj, info);
  7373. }
  7374. }
  7375. break;
  7376. case "mind":
  7377. aTool = 3;
  7378. _iframe = $$("iframe", {
  7379. "frameborder": "no",
  7380. "border": "0",
  7381. "scrolling ": "no",
  7382. "style": {
  7383. "cssText": "border:0;width:100%;height:100%"
  7384. },
  7385. "src": "/kityminder-editor/dist/index.html"
  7386. })
  7387. _box.appendChild(_iframe);
  7388. _box.appendChild(_jie);
  7389. _formdiv = new U.UF.UI.form(
  7390. "思维导图-" + _username,
  7391. _box, { //"/jsmind/example/demo.html"
  7392. "id": "mind" + cid + stage + task + tool + _userid,
  7393. "style": {
  7394. "width": "90%",
  7395. "height": "90%",
  7396. "overflow": 'hidden'
  7397. },
  7398. "onresize": function () { }
  7399. }, {
  7400. closecallback: function () { }
  7401. }, {
  7402. "style": {
  7403. "height": "36px"
  7404. }
  7405. }).form; //创建窗体
  7406. _taskbar = {
  7407. "id": str + _formdiv.id,
  7408. "style": {
  7409. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7410. },
  7411. "name": "思维导图",
  7412. "forms": _formdiv,
  7413. "click": function () {
  7414. U.MD.D.I.openApplication(str, obj, info);
  7415. }
  7416. }
  7417. break;
  7418. case "MindMap":
  7419. aTool = 3;
  7420. _iframe = $$("iframe", {
  7421. "frameborder": "no",
  7422. "border": "0",
  7423. "scrolling ": "no",
  7424. "style": {
  7425. "cssText": "border:0;width:100%;height:100%"
  7426. },
  7427. "src": "//cloud.cocorobo.cn/mind/"
  7428. })
  7429. _box.appendChild(_iframe);
  7430. _box.appendChild(_jie);
  7431. _formdiv = new U.UF.UI.form(
  7432. "思维导图-" + _username,
  7433. _box, { //"/jsmind/example/demo.html"
  7434. "id": "mind" + cid + stage + task + tool + _userid,
  7435. "style": {
  7436. "width": "90%",
  7437. "height": "90%",
  7438. "overflow": 'hidden'
  7439. },
  7440. "onresize": function () { }
  7441. }, {
  7442. closecallback: function () { }
  7443. }, {
  7444. "style": {
  7445. "height": "36px"
  7446. }
  7447. }).form; //创建窗体
  7448. _taskbar = {
  7449. "id": str + _formdiv.id,
  7450. "style": {
  7451. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7452. },
  7453. "name": "思维导图",
  7454. "forms": _formdiv,
  7455. "click": function () {
  7456. U.MD.D.I.openApplication(str, obj, info);
  7457. }
  7458. }
  7459. break;
  7460. case "doc":
  7461. aTool = 6;
  7462. _iframe = $$("iframe", {
  7463. "frameborder": "no",
  7464. "border": "0",
  7465. "scrolling ": "no",
  7466. "style": {
  7467. "cssText": "border:0;width:100%;height:100%"
  7468. },
  7469. "src": "/Office/Word/WordEditArea.htm"
  7470. })
  7471. _box.appendChild(_iframe);
  7472. _box.appendChild(_jie);
  7473. _formdiv = new U.UF.UI.form(
  7474. "协同文档-" + _username,
  7475. _box, {
  7476. "id": "doc" + cid + stage + task + tool + _userid,
  7477. "style": {
  7478. "width": "90%",
  7479. "height": "90%",
  7480. "overflow": 'hidden'
  7481. },
  7482. "onresize": function () { }
  7483. }, {
  7484. closecallback: function () { }
  7485. }, {
  7486. "style": {
  7487. "height": "36px"
  7488. }
  7489. }).form; //创建窗体
  7490. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7491. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7492. })
  7493. _taskbar = {
  7494. "id": str + _formdiv.id,
  7495. "style": {
  7496. "backgroundImage": "url(/img/icon/doc.png)"
  7497. },
  7498. "name": "协同文档",
  7499. "forms": _formdiv,
  7500. "click": function () {
  7501. U.MD.D.I.openApplication(str, obj, info);
  7502. }
  7503. }
  7504. break;
  7505. case "mindNetwork": //好友打开
  7506. aTool = 7;
  7507. _iframe = $$("iframe", {
  7508. "webkitallowfullscreen": "",
  7509. "mozallowfullscreen": "",
  7510. "allowfullscreen": "",
  7511. "frameborder": "no",
  7512. "border": "0",
  7513. "scrolling ": "no",
  7514. "style": {
  7515. "cssText": "border:0; width:100%; height:100%;"
  7516. },
  7517. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7518. })
  7519. _box.appendChild(_iframe);
  7520. _box.appendChild(_jie);
  7521. _formdiv = new U.UF.UI.form(
  7522. "思维网格-" + _username,
  7523. _box, {
  7524. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7525. "style": {
  7526. "width": "90%",
  7527. "height": "90%",
  7528. "overflow": 'hidden'
  7529. },
  7530. "onresize": function () { }
  7531. }, {
  7532. closecallback: function () { }
  7533. }, {
  7534. "style": {
  7535. "height": "36px"
  7536. }
  7537. }).form; //创建窗体
  7538. _taskbar = {
  7539. "id": str + _formdiv.id,
  7540. "style": {
  7541. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7542. },
  7543. "name": "思维网格",
  7544. "forms": _formdiv,
  7545. "click": function () {
  7546. U.MD.D.I.openApplication(str, obj, info);
  7547. }
  7548. }
  7549. break;
  7550. case "courseDesign":
  7551. _iframe = $$("iframe", {
  7552. "webkitallowfullscreen": "",
  7553. "mozallowfullscreen": "",
  7554. "allowfullscreen": "",
  7555. "frameborder": "no",
  7556. "border": "0",
  7557. "scrolling ": "no",
  7558. "style": {
  7559. "cssText": "border:0; width:100%; height:100%;"
  7560. },
  7561. "src": "/course-design-vue"
  7562. })
  7563. _box.appendChild(_iframe);
  7564. _box.appendChild(_jie);
  7565. _formdiv = new U.UF.UI.form(
  7566. "项目设计-" + _username,
  7567. _box, {
  7568. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7569. "style": {
  7570. "width": "90%",
  7571. "height": "90%",
  7572. "overflow": 'hidden'
  7573. },
  7574. "onresize": function () { }
  7575. }, {
  7576. closecallback: function () { }
  7577. }, {
  7578. "style": {
  7579. "height": "36px"
  7580. }
  7581. }).form; //创建窗体
  7582. _taskbar = {
  7583. "id": str + _formdiv.id,
  7584. "style": {
  7585. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7586. },
  7587. "name": "项目设计",
  7588. "forms": _formdiv,
  7589. "click": function () {
  7590. U.MD.D.I.openApplication(str, obj, info);
  7591. }
  7592. }
  7593. break;
  7594. }
  7595. const script1 = document.createElement("script");
  7596. script1.type = "text/javascript";
  7597. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7598. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7599. const script2 = document.createElement("script");
  7600. script2.type = "text/javascript";
  7601. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7602. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7603. const script3 = document.createElement("script");
  7604. script3.type = "text/javascript";
  7605. script3.charset = "UTF-8";
  7606. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7607. const script4 = document.createElement("script");
  7608. script4.type = "text/javascript";
  7609. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7610. script4.src = window.origin + "/js/Common/jietu2E.js";
  7611. if (_iframe) {
  7612. if (str == 'doc') {
  7613. _iframe = _formdiv.querySelector('iframe')
  7614. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7615. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7616. _iframe.contentWindow.document.body.appendChild(script1);
  7617. _iframe.contentWindow.document.body.appendChild(script2);
  7618. // _iframe.contentWindow.document.body.appendChild(script3);
  7619. _iframe.contentWindow.document.body.appendChild(script4);
  7620. })
  7621. if (onloadListener) {
  7622. _iframe.contentDocument.location.reload()
  7623. } else {
  7624. _iframe.contentDocument.location.reload()
  7625. }
  7626. } else if (str == 'courseDesign') {
  7627. U.UF.DL.iframeLoad(_iframe, function () {
  7628. // _iframe.contentWindow.U.MD.O.W.load();
  7629. // _iframe.contentWindow.document.body.appendChild(script1);
  7630. _iframe.contentWindow.document.body.appendChild(script2);
  7631. _iframe.contentWindow.document.body.appendChild(script4);
  7632. })
  7633. } else if (str == 'mind') {
  7634. _iframe = _formdiv.querySelector('iframe')
  7635. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7636. //
  7637. _iframe.contentWindow.document.body.appendChild(script1);
  7638. _iframe.contentWindow.document.body.appendChild(script2);
  7639. _iframe.contentWindow.document.body.appendChild(script4);
  7640. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7641. })
  7642. if (onloadListener) {
  7643. _iframe.contentDocument.location.reload()
  7644. } else {
  7645. _iframe.contentDocument.location.reload()
  7646. }
  7647. } else if (str == 'whiteboard') {
  7648. _iframe = _formdiv.querySelector('iframe')
  7649. let onloadListener = _iframe.onload = () => {
  7650. _iframe.contentWindow.document.body.appendChild(script1);
  7651. _iframe.contentWindow.document.body.appendChild(script2);
  7652. _iframe.contentWindow.document.body.appendChild(script4);
  7653. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7654. };
  7655. // if (onloadListener) {
  7656. // try {
  7657. // _iframe.src += "?cocorobo="+new Date().getTime()
  7658. // _iframe.contentWindow.document.location.reload()
  7659. // } catch (error) {
  7660. // }
  7661. // } else {
  7662. // _iframe.contentDocument.location.reload()
  7663. // }
  7664. } else {
  7665. _iframe.onload = () => {
  7666. _iframe.contentWindow.document.body.appendChild(script1);
  7667. _iframe.contentWindow.document.body.appendChild(script2);
  7668. // _iframe.contentWindow.document.body.appendChild(script3);
  7669. _iframe.contentWindow.document.body.appendChild(script4);
  7670. };
  7671. }
  7672. _jie.onclick = async () => {
  7673. let text = ''
  7674. if (aTool == 1) {
  7675. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7676. } else if (aTool == 6) {
  7677. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7678. } else if (aTool == 3) {
  7679. text = await U.MD.D.I.getEditorContent(_iframe);
  7680. }
  7681. _loading.style.display = 'flex'
  7682. console.log(_loading);
  7683. var _ajs = _iframe.contentWindow.document.createElement("script");
  7684. _ajs.type = "text/javascript";
  7685. _ajs.innerHTML =
  7686. // 'console.log(' + _loading + ');\n' +
  7687. 'var _js = document.createElement("script");\n' +
  7688. '_js.type="text/javascript";\n' +
  7689. '_js.charset="UTF-8";\n' +
  7690. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7691. "_js.onload = function(){\n" +
  7692. ' var a = document.getElementsByTagName("img")\n' +
  7693. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7694. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7695. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7696. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7697. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7698. "beforeUpload_shishi(file," +
  7699. "'" +
  7700. _userid +
  7701. "'" +
  7702. ", " +
  7703. "'" +
  7704. _cid +
  7705. "'" +
  7706. ", " +
  7707. "'" +
  7708. _stage +
  7709. "'" +
  7710. ", " +
  7711. "'" +
  7712. _task +
  7713. "'" +
  7714. ", " +
  7715. "'" +
  7716. _tool +
  7717. "'" +
  7718. ", " +
  7719. "'" +
  7720. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  7721. "'" +
  7722. ", " +
  7723. "'" +
  7724. aTool +
  7725. "'" +
  7726. ", " +
  7727. "`" +
  7728. text +
  7729. "`" +
  7730. ")\n" +
  7731. " });\n" +
  7732. "}\n" +
  7733. "document.head.appendChild(_js);\n";
  7734. _iframe.contentWindow.document.head.appendChild(_ajs);
  7735. }
  7736. }
  7737. }
  7738. U.MD.D.I.getEditorContent = function (iframe) {
  7739. return new Promise((resolve, reject) => {
  7740. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  7741. console.log(content);
  7742. resolve(content)
  7743. });
  7744. });
  7745. }
  7746. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  7747. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  7748. // if (res.value[0].length > 0) {
  7749. // // resolve(res.value[0][0].text);
  7750. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  7751. // $(fileInput).val('');
  7752. // });
  7753. // }
  7754. // }, [], { "type": "GET", "withCredentials": true });
  7755. var xmlhttp;
  7756. var Mac, Sn, DeviceId
  7757. if (window.XMLHttpRequest) {
  7758. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  7759. xmlhttp = new XMLHttpRequest();
  7760. } else {
  7761. // IE6, IE5 浏览器执行代码
  7762. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  7763. }
  7764. xmlhttp.onreadystatechange = function () {
  7765. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  7766. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  7767. // resolve(res.value[0][0].text);
  7768. if (type == '2') {
  7769. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  7770. } else if (type == '3') {
  7771. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  7772. }
  7773. } else {
  7774. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  7775. }
  7776. }
  7777. }
  7778. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  7779. xmlhttp.send();
  7780. }
  7781. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  7782. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7783. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7784. _userinfo = US.userInfo, //登录用户信息
  7785. _userid = US.userInfo.userid //登录用户id
  7786. let _iframe;
  7787. let _cid = cid,
  7788. _stage = stage,
  7789. _task = task,
  7790. _tool = tool;
  7791. var _jie = $$("div", {
  7792. "style": {
  7793. "position": "absolute",
  7794. "bottom": "50px",
  7795. "right": "50px",
  7796. "zIndex": "9999",
  7797. "backgroundColor": "#2268bc",
  7798. "color": "#fff",
  7799. "padding": "12px 20px",
  7800. "cursor": "pointer",
  7801. "borderRadius": "4px",
  7802. },
  7803. "innerHTML": "确认并提交"
  7804. })
  7805. let aTool = ''
  7806. let _loading = document.createElement('div')
  7807. _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;"
  7808. // _loading.id = "";
  7809. let _lchild = document.createElement('div')
  7810. let _limg = document.createElement('img')
  7811. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7812. _limg.style = "width: 26px;margin-right: 10px;"
  7813. _lchild.appendChild(_limg)
  7814. let _lspan = document.createElement('span')
  7815. _lspan.innerHTML = "上传中..."
  7816. _lchild.appendChild(_lspan)
  7817. _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%);"
  7818. _loading.appendChild(_lchild)
  7819. var _box = $$('div', {
  7820. "style": {
  7821. "position": "relative",
  7822. "width": "100%",
  7823. "height": "100%",
  7824. },
  7825. })
  7826. _box.appendChild(_loading)
  7827. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  7828. switch (str) {
  7829. case "whiteboard":
  7830. aTool = 1;
  7831. _iframe = $$("iframe", {
  7832. "frameborder": "no",
  7833. "border": "0",
  7834. "scrolling ": "no",
  7835. "style": {
  7836. "cssText": "border:0;width:100%;height:100%"
  7837. },
  7838. "src": "https://beta.iwb.cocorobo.cn/"
  7839. })
  7840. _box.appendChild(_iframe);
  7841. _box.appendChild(_jie);
  7842. _formdiv = new U.UF.UI.form(
  7843. "电子白板",
  7844. _box, {
  7845. "id": "whiteboards" + cid + stage + task + tool,
  7846. "style": {
  7847. "width": "90%",
  7848. "height": "90%",
  7849. "overflow": 'hidden'
  7850. },
  7851. "onresize": function () { }
  7852. }, {
  7853. closecallback: function () { }
  7854. }, {
  7855. "style": {
  7856. "height": "36px"
  7857. }
  7858. }).form; //创建窗体
  7859. _taskbar = {
  7860. "id": str + _formdiv.id,
  7861. "style": {
  7862. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7863. },
  7864. "name": "电子白板",
  7865. "forms": _formdiv,
  7866. "click": function () {
  7867. U.MD.D.I.openApplication(str, obj, info);
  7868. }
  7869. }
  7870. break;
  7871. case "mind":
  7872. aTool = 3;
  7873. _iframe = $$("iframe", {
  7874. "frameborder": "no",
  7875. "border": "0",
  7876. "scrolling ": "no",
  7877. "style": {
  7878. "cssText": "border:0;width:100%;height:100%"
  7879. },
  7880. "src": "/kityminder-editor/dist/index.html"
  7881. });
  7882. _box.appendChild(_iframe);
  7883. _box.appendChild(_jie);
  7884. _formdiv = new U.UF.UI.form(
  7885. "思维导图",
  7886. _box, { //"/jsmind/example/demo.html"
  7887. "id": "minds" + cid + stage + task + tool,
  7888. "style": {
  7889. "width": "90%",
  7890. "height": "90%",
  7891. "overflow": 'hidden'
  7892. },
  7893. "onresize": function () { }
  7894. }, {
  7895. closecallback: function () { }
  7896. }, {
  7897. "style": {
  7898. "height": "36px"
  7899. }
  7900. }).form; //创建窗体
  7901. _taskbar = {
  7902. "id": str + _formdiv.id,
  7903. "style": {
  7904. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7905. },
  7906. "name": "思维导图",
  7907. "forms": _formdiv,
  7908. "click": function () {
  7909. U.MD.D.I.openApplication(str, obj, info);
  7910. }
  7911. }
  7912. break;
  7913. case "doc":
  7914. aTool = 6;
  7915. _iframe = $$("iframe", {
  7916. "frameborder": "no",
  7917. "border": "0",
  7918. "scrolling ": "no",
  7919. "style": {
  7920. "cssText": "border:0;width:100%;height:100%"
  7921. },
  7922. "src": "/Office/Word/WordEditArea.htm"
  7923. })
  7924. _box.appendChild(_iframe);
  7925. _box.appendChild(_jie);
  7926. _formdiv = new U.UF.UI.form(
  7927. "协同文档",
  7928. _box, {
  7929. "id": "docs" + cid + stage + task + tool,
  7930. "style": {
  7931. "width": "90%",
  7932. "height": "90%",
  7933. "overflow": 'hidden'
  7934. },
  7935. "onresize": function () { }
  7936. }, {
  7937. closecallback: function () { }
  7938. }, {
  7939. "style": {
  7940. "height": "36px"
  7941. }
  7942. }).form; //创建窗体
  7943. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7944. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7945. })
  7946. _taskbar = {
  7947. "id": str + _formdiv.id,
  7948. "style": {
  7949. "backgroundImage": "url(/img/icon/doc.png)"
  7950. },
  7951. "name": "协同文档",
  7952. "forms": _formdiv,
  7953. "click": function () {
  7954. U.MD.D.I.openApplication(str, obj, info);
  7955. }
  7956. }
  7957. break;
  7958. }
  7959. const script1 = document.createElement("script");
  7960. script1.type = "text/javascript";
  7961. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7962. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7963. const script2 = document.createElement("script");
  7964. script2.type = "text/javascript";
  7965. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7966. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7967. const script3 = document.createElement("script");
  7968. script3.type = "text/javascript";
  7969. script3.charset = "UTF-8";
  7970. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7971. const script4 = document.createElement("script");
  7972. script4.type = "text/javascript";
  7973. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  7974. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  7975. if (_iframe) {
  7976. if (str == 'doc') {
  7977. _iframe = _formdiv.querySelector('iframe')
  7978. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7979. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  7980. _iframe.contentWindow.document.body.appendChild(script1);
  7981. _iframe.contentWindow.document.body.appendChild(script2);
  7982. // _iframe.contentWindow.document.body.appendChild(script3);
  7983. _iframe.contentWindow.document.body.appendChild(script4);
  7984. })
  7985. if (onloadListener) {
  7986. _iframe.contentDocument.location.reload()
  7987. } else {
  7988. _iframe.contentDocument.location.reload()
  7989. }
  7990. } else if (str == 'mind') {
  7991. _iframe = _formdiv.querySelector('iframe')
  7992. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7993. _iframe.contentWindow.document.body.appendChild(script1);
  7994. _iframe.contentWindow.document.body.appendChild(script2);
  7995. _iframe.contentWindow.document.body.appendChild(script4);
  7996. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  7997. })
  7998. if (onloadListener) {
  7999. _iframe.contentDocument.location.reload()
  8000. } else {
  8001. _iframe.contentDocument.location.reload()
  8002. }
  8003. } else {
  8004. _iframe.onload = () => {
  8005. _iframe.contentWindow.document.body.appendChild(script1);
  8006. _iframe.contentWindow.document.body.appendChild(script2);
  8007. // _iframe.contentWindow.document.body.appendChild(script3);
  8008. _iframe.contentWindow.document.body.appendChild(script4);
  8009. };
  8010. }
  8011. _jie.onclick = async () => {
  8012. let text = ''
  8013. if (aTool == 6) {
  8014. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8015. } else if (aTool == 3) {
  8016. text = await U.MD.D.I.getEditorContent(_iframe);
  8017. }
  8018. _loading.style.display = 'flex'
  8019. console.log(_loading);
  8020. var _ajs = _iframe.contentWindow.document.createElement("script");
  8021. _ajs.type = "text/javascript";
  8022. _ajs.innerHTML =
  8023. // 'console.log(' + _loading + ');\n' +
  8024. 'var _js = document.createElement("script");\n' +
  8025. '_js.type="text/javascript";\n' +
  8026. '_js.charset="UTF-8";\n' +
  8027. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8028. "_js.onload = function(){\n" +
  8029. ' var a = document.getElementsByTagName("img")\n' +
  8030. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8031. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8032. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8033. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8034. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8035. "beforeUpload_shishi(file," +
  8036. "'" +
  8037. _userid +
  8038. "'" +
  8039. ", " +
  8040. "'" +
  8041. _cid +
  8042. "'" +
  8043. ", " +
  8044. "'" +
  8045. _stage +
  8046. "'" +
  8047. ", " +
  8048. "'" +
  8049. _task +
  8050. "'" +
  8051. ", " +
  8052. "'" +
  8053. _tool +
  8054. "'" +
  8055. ", " +
  8056. "'" +
  8057. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8058. "'" +
  8059. ", " +
  8060. "'" +
  8061. aTool +
  8062. "'" +
  8063. ", " +
  8064. "`" +
  8065. text +
  8066. "`" +
  8067. ")\n" +
  8068. " });\n" +
  8069. "}\n" +
  8070. "document.head.appendChild(_js);\n";
  8071. _iframe.contentWindow.document.head.appendChild(_ajs);
  8072. }
  8073. }
  8074. //U.MD.D.I.openClick(str);
  8075. //如果有任务栏信息
  8076. // if (_taskbar) {
  8077. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8078. // }
  8079. }
  8080. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8081. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8082. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8083. _userinfo = US.userInfo, //登录用户信息
  8084. _userid = US.userInfo.userid //登录用户id
  8085. let _iframe;
  8086. let _cid = cid,
  8087. _stage = stage,
  8088. _task = task,
  8089. _tool = tool;
  8090. var _jie = $$("div", {
  8091. "style": {
  8092. "position": "absolute",
  8093. "bottom": "50px",
  8094. "right": "50px",
  8095. "zIndex": "9999",
  8096. "backgroundColor": "#2268bc",
  8097. "color": "#fff",
  8098. "padding": "12px 20px",
  8099. "cursor": "pointer",
  8100. "borderRadius": "4px",
  8101. },
  8102. "innerHTML": "确认并提交"
  8103. })
  8104. let aTool = ''
  8105. let _loading = document.createElement('div')
  8106. _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;"
  8107. // _loading.id = "";
  8108. let _lchild = document.createElement('div')
  8109. let _limg = document.createElement('img')
  8110. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8111. _limg.style = "width: 26px;margin-right: 10px;"
  8112. _lchild.appendChild(_limg)
  8113. let _lspan = document.createElement('span')
  8114. _lspan.innerHTML = "上传中..."
  8115. _lchild.appendChild(_lspan)
  8116. _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%);"
  8117. _loading.appendChild(_lchild)
  8118. var _box = $$('div', {
  8119. "style": {
  8120. "position": "relative",
  8121. "width": "100%",
  8122. "height": "100%",
  8123. },
  8124. })
  8125. _box.appendChild(_loading)
  8126. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8127. switch (str) {
  8128. case "whiteboard":
  8129. aTool = 1;
  8130. _iframe = $$("iframe", {
  8131. "frameborder": "no",
  8132. "border": "0",
  8133. "scrolling ": "no",
  8134. "style": {
  8135. "cssText": "border:0;width:100%;height:100%"
  8136. },
  8137. "src": "https://beta.iwb.cocorobo.cn/"
  8138. })
  8139. _box.appendChild(_iframe);
  8140. _box.appendChild(_jie);
  8141. _formdiv = new U.UF.UI.form(
  8142. "电子白板",
  8143. _box, {
  8144. "id": "whiteboards" + cid + stage + task + tool,
  8145. "style": {
  8146. "width": "90%",
  8147. "height": "90%",
  8148. "overflow": 'hidden'
  8149. },
  8150. "onresize": function () { }
  8151. }, {
  8152. closecallback: function () { }
  8153. }, {
  8154. "style": {
  8155. "height": "36px"
  8156. }
  8157. }).form; //创建窗体
  8158. _taskbar = {
  8159. "id": str + _formdiv.id,
  8160. "style": {
  8161. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8162. },
  8163. "name": "电子白板",
  8164. "forms": _formdiv,
  8165. "click": function () {
  8166. U.MD.D.I.openApplication(str, obj, info);
  8167. }
  8168. }
  8169. break;
  8170. case "mind":
  8171. aTool = 3;
  8172. _iframe = $$("iframe", {
  8173. "frameborder": "no",
  8174. "border": "0",
  8175. "scrolling ": "no",
  8176. "style": {
  8177. "cssText": "border:0;width:100%;height:100%"
  8178. },
  8179. "src": "/kityminder-editor/dist/index.html"
  8180. });
  8181. _box.appendChild(_iframe);
  8182. _box.appendChild(_jie);
  8183. _formdiv = new U.UF.UI.form(
  8184. "思维导图",
  8185. _box, { //"/jsmind/example/demo.html"
  8186. "id": "minds" + cid + stage + task + tool,
  8187. "style": {
  8188. "width": "90%",
  8189. "height": "90%",
  8190. "overflow": 'hidden'
  8191. },
  8192. "onresize": function () { }
  8193. }, {
  8194. closecallback: function () { }
  8195. }, {
  8196. "style": {
  8197. "height": "36px"
  8198. }
  8199. }).form; //创建窗体
  8200. _taskbar = {
  8201. "id": str + _formdiv.id,
  8202. "style": {
  8203. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8204. },
  8205. "name": "思维导图",
  8206. "forms": _formdiv,
  8207. "click": function () {
  8208. U.MD.D.I.openApplication(str, obj, info);
  8209. }
  8210. }
  8211. break;
  8212. case "doc":
  8213. aTool = 6;
  8214. _iframe = $$("iframe", {
  8215. "frameborder": "no",
  8216. "border": "0",
  8217. "scrolling ": "no",
  8218. "style": {
  8219. "cssText": "border:0;width:100%;height:100%"
  8220. },
  8221. "src": "/Office/Word/WordEditArea.htm"
  8222. })
  8223. _box.appendChild(_iframe);
  8224. _box.appendChild(_jie);
  8225. _formdiv = new U.UF.UI.form(
  8226. "协同文档",
  8227. _box, {
  8228. "id": "docs" + cid + stage + task + tool,
  8229. "style": {
  8230. "width": "90%",
  8231. "height": "90%",
  8232. "overflow": 'hidden'
  8233. },
  8234. "onresize": function () { }
  8235. }, {
  8236. closecallback: function () { }
  8237. }, {
  8238. "style": {
  8239. "height": "36px"
  8240. }
  8241. }).form; //创建窗体
  8242. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8243. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8244. })
  8245. _taskbar = {
  8246. "id": str + _formdiv.id,
  8247. "style": {
  8248. "backgroundImage": "url(/img/icon/doc.png)"
  8249. },
  8250. "name": "协同文档",
  8251. "forms": _formdiv,
  8252. "click": function () {
  8253. U.MD.D.I.openApplication(str, obj, info);
  8254. }
  8255. }
  8256. break;
  8257. }
  8258. const script1 = document.createElement("script");
  8259. script1.type = "text/javascript";
  8260. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8261. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8262. const script2 = document.createElement("script");
  8263. script2.type = "text/javascript";
  8264. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8265. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8266. const script3 = document.createElement("script");
  8267. script3.type = "text/javascript";
  8268. script3.charset = "UTF-8";
  8269. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8270. const script4 = document.createElement("script");
  8271. script4.type = "text/javascript";
  8272. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8273. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8274. if (_iframe) {
  8275. if (str == 'doc') {
  8276. _iframe = _formdiv.querySelector('iframe')
  8277. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8278. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8279. _iframe.contentWindow.document.body.appendChild(script1);
  8280. _iframe.contentWindow.document.body.appendChild(script2);
  8281. // _iframe.contentWindow.document.body.appendChild(script3);
  8282. _iframe.contentWindow.document.body.appendChild(script4);
  8283. })
  8284. if (onloadListener) {
  8285. _iframe.contentDocument.location.reload()
  8286. } else {
  8287. _iframe.contentDocument.location.reload()
  8288. }
  8289. } else if (str == 'mind') {
  8290. _iframe = _formdiv.querySelector('iframe')
  8291. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8292. _iframe.contentWindow.document.body.appendChild(script1);
  8293. _iframe.contentWindow.document.body.appendChild(script2);
  8294. _iframe.contentWindow.document.body.appendChild(script4);
  8295. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8296. })
  8297. if (onloadListener) {
  8298. _iframe.contentDocument.location.reload()
  8299. } else {
  8300. _iframe.contentDocument.location.reload()
  8301. }
  8302. } else {
  8303. _iframe.onload = () => {
  8304. _iframe.contentWindow.document.body.appendChild(script1);
  8305. _iframe.contentWindow.document.body.appendChild(script2);
  8306. // _iframe.contentWindow.document.body.appendChild(script3);
  8307. _iframe.contentWindow.document.body.appendChild(script4);
  8308. };
  8309. }
  8310. _jie.onclick = async () => {
  8311. let text = ''
  8312. if (aTool == 6) {
  8313. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8314. } else if (aTool == 3) {
  8315. text = await U.MD.D.I.getEditorContent(_iframe);
  8316. }
  8317. _loading.style.display = 'flex'
  8318. console.log(_loading);
  8319. var _ajs = _iframe.contentWindow.document.createElement("script");
  8320. _ajs.type = "text/javascript";
  8321. _ajs.innerHTML =
  8322. // 'console.log(' + _loading + ');\n' +
  8323. 'var _js = document.createElement("script");\n' +
  8324. '_js.type="text/javascript";\n' +
  8325. '_js.charset="UTF-8";\n' +
  8326. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8327. "_js.onload = function(){\n" +
  8328. ' var a = document.getElementsByTagName("img")\n' +
  8329. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8330. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8331. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8332. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8333. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8334. "beforeUpload_shishi(file," +
  8335. "'" +
  8336. _userid +
  8337. "'" +
  8338. ", " +
  8339. "'" +
  8340. _cid +
  8341. "'" +
  8342. ", " +
  8343. "'" +
  8344. _stage +
  8345. "'" +
  8346. ", " +
  8347. "'" +
  8348. _task +
  8349. "'" +
  8350. ", " +
  8351. "'" +
  8352. _tool +
  8353. "'" +
  8354. ", " +
  8355. "'" +
  8356. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8357. "'" +
  8358. ", " +
  8359. "'" +
  8360. aTool +
  8361. "'" +
  8362. ", " +
  8363. "`" +
  8364. text +
  8365. "`" +
  8366. ")\n" +
  8367. " });\n" +
  8368. "}\n" +
  8369. "document.head.appendChild(_js);\n";
  8370. _iframe.contentWindow.document.head.appendChild(_ajs);
  8371. }
  8372. }
  8373. //U.MD.D.I.openClick(str);
  8374. //如果有任务栏信息
  8375. // if (_taskbar) {
  8376. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8377. // }
  8378. }
  8379. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8380. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8381. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8382. _userinfo = US.userInfo, //登录用户信息
  8383. _userid = US.userInfo.userid //登录用户id
  8384. let _iframe;
  8385. let _cid = cid,
  8386. _stage = stage,
  8387. _task = task,
  8388. _tool = tool;
  8389. var _jie = $$("div", {
  8390. "style": {
  8391. "position": "absolute",
  8392. "bottom": "50px",
  8393. "right": "50px",
  8394. "zIndex": "9999",
  8395. "backgroundColor": "#2268bc",
  8396. "color": "#fff",
  8397. "padding": "12px 20px",
  8398. "cursor": "pointer",
  8399. "borderRadius": "4px",
  8400. },
  8401. "innerHTML": "上传模板"
  8402. })
  8403. let aTool = ''
  8404. let _loading = document.createElement('div')
  8405. _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;"
  8406. // _loading.id = "";
  8407. let _lchild = document.createElement('div')
  8408. let _limg = document.createElement('img')
  8409. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8410. _limg.style = "width: 26px;margin-right: 10px;"
  8411. _lchild.appendChild(_limg)
  8412. let _lspan = document.createElement('span')
  8413. _lspan.innerHTML = "上传中..."
  8414. _lchild.appendChild(_lspan)
  8415. _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%);"
  8416. _loading.appendChild(_lchild)
  8417. var _box = $$('div', {
  8418. "style": {
  8419. "position": "relative",
  8420. "width": "100%",
  8421. "height": "100%",
  8422. },
  8423. })
  8424. _box.appendChild(_loading)
  8425. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  8426. switch (str) {
  8427. case "whiteboard":
  8428. aTool = 1;
  8429. _iframe = $$("iframe", {
  8430. "frameborder": "no",
  8431. "border": "0",
  8432. "scrolling ": "no",
  8433. "style": {
  8434. "cssText": "border:0;width:100%;height:100%"
  8435. },
  8436. "src": "https://beta.iwb.cocorobo.cn/"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "电子白板",
  8442. _box, {
  8443. "id": "whiteboards_Yu" + cid + stage + task + tool,
  8444. "style": {
  8445. "width": "90%",
  8446. "height": "90%",
  8447. "overflow": 'hidden'
  8448. },
  8449. "onresize": function () { }
  8450. }, {
  8451. closecallback: function () { }
  8452. }, {
  8453. "style": {
  8454. "height": "36px"
  8455. }
  8456. }).form; //创建窗体
  8457. _taskbar = {
  8458. "id": str + _formdiv.id,
  8459. "style": {
  8460. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8461. },
  8462. "name": "电子白板",
  8463. "forms": _formdiv,
  8464. "click": function () {
  8465. U.MD.D.I.openApplication(str, obj, info);
  8466. }
  8467. }
  8468. break;
  8469. case "mind":
  8470. aTool = 3;
  8471. _iframe = $$("iframe", {
  8472. "frameborder": "no",
  8473. "border": "0",
  8474. "scrolling ": "no",
  8475. "style": {
  8476. "cssText": "border:0;width:100%;height:100%"
  8477. },
  8478. "src": "/kityminder-editor/dist/index.html"
  8479. });
  8480. _box.appendChild(_iframe);
  8481. _box.appendChild(_jie);
  8482. _formdiv = new U.UF.UI.form(
  8483. "思维导图",
  8484. _box, { //"/jsmind/example/demo.html"
  8485. "id": "minds_Yu" + cid + stage + task + tool,
  8486. "style": {
  8487. "width": "90%",
  8488. "height": "90%",
  8489. "overflow": 'hidden'
  8490. },
  8491. "onresize": function () { }
  8492. }, {
  8493. closecallback: function () { }
  8494. }, {
  8495. "style": {
  8496. "height": "36px"
  8497. }
  8498. }).form; //创建窗体
  8499. _taskbar = {
  8500. "id": str + _formdiv.id,
  8501. "style": {
  8502. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8503. },
  8504. "name": "思维导图",
  8505. "forms": _formdiv,
  8506. "click": function () {
  8507. U.MD.D.I.openApplication(str, obj, info);
  8508. }
  8509. }
  8510. break;
  8511. case "doc":
  8512. aTool = 6;
  8513. _iframe = $$("iframe", {
  8514. "frameborder": "no",
  8515. "border": "0",
  8516. "scrolling ": "no",
  8517. "style": {
  8518. "cssText": "border:0;width:100%;height:100%"
  8519. },
  8520. "src": "/Office/Word/WordEditArea.htm"
  8521. })
  8522. _box.appendChild(_iframe);
  8523. _box.appendChild(_jie);
  8524. _formdiv = new U.UF.UI.form(
  8525. "协同文档",
  8526. _box, {
  8527. "id": "docs_Yu" + cid + stage + task + tool,
  8528. "style": {
  8529. "width": "90%",
  8530. "height": "90%",
  8531. "overflow": 'hidden'
  8532. },
  8533. "onresize": function () { }
  8534. }, {
  8535. closecallback: function () { }
  8536. }, {
  8537. "style": {
  8538. "height": "36px"
  8539. }
  8540. }).form; //创建窗体
  8541. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8542. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8543. })
  8544. _taskbar = {
  8545. "id": str + _formdiv.id,
  8546. "style": {
  8547. "backgroundImage": "url(/img/icon/doc.png)"
  8548. },
  8549. "name": "协同文档",
  8550. "forms": _formdiv,
  8551. "click": function () {
  8552. U.MD.D.I.openApplication(str, obj, info);
  8553. }
  8554. }
  8555. break;
  8556. case "CocoPi":
  8557. aTool = 57;
  8558. _iframe = $$("iframe", {
  8559. "allowpaymentrequest": "allowpaymentrequest",
  8560. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8561. "webkitallowfullscreen": "",
  8562. "mozallowfullscreen": "",
  8563. "frameborder": "no",
  8564. "border": "0",
  8565. "scrolling ": "no",
  8566. "style": {
  8567. "cssText": "border:0;width:100%;height:100%"
  8568. },
  8569. "src": "https://pi.cocorobo.cn/"
  8570. })
  8571. _box.appendChild(_iframe);
  8572. _box.appendChild(_jie);
  8573. _formdiv = new U.UF.UI.form(
  8574. "CocoPi",
  8575. _box, {
  8576. "id": "CocoPi_Yu" + cid + stage + task + tool,
  8577. "style": {
  8578. "width": "90%",
  8579. "height": "90%",
  8580. "overflow": 'hidden'
  8581. },
  8582. "onresize": function () { }
  8583. }, {
  8584. closecallback: function () { }
  8585. }, {
  8586. "style": {
  8587. "height": "36px"
  8588. }
  8589. }).form; //创建窗体
  8590. _taskbar = {
  8591. "id": str + _formdiv.id,
  8592. "style": {
  8593. "backgroundImage": "url(/img/icon/cocopi.png)"
  8594. },
  8595. "name": "CocoPi",
  8596. "forms": _formdiv,
  8597. "click": function () {
  8598. U.MD.D.I.openApplication(str, obj, info);
  8599. }
  8600. }
  8601. break;
  8602. }
  8603. if (_iframe) {
  8604. if (str == 'doc') {
  8605. _iframe = _formdiv.querySelector('iframe')
  8606. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8607. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8608. })
  8609. if (onloadListener) {
  8610. _iframe.contentDocument.location.reload()
  8611. } else {
  8612. _iframe.contentDocument.location.reload()
  8613. }
  8614. } else if (str == 'mind') {
  8615. _iframe = _formdiv.querySelector('iframe')
  8616. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8617. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  8618. })
  8619. if (onloadListener) {
  8620. _iframe.contentDocument.location.reload()
  8621. } else {
  8622. _iframe.contentDocument.location.reload()
  8623. }
  8624. } else if (str == 'whiteboard') {
  8625. _iframe = _formdiv.querySelector('iframe')
  8626. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8627. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  8628. })
  8629. // if (onloadListener) {
  8630. // try {
  8631. // _iframe.src += "?cocorobo="+new Date().getTime()
  8632. // _iframe.contentWindow.document.location.reload()
  8633. // } catch (error) {
  8634. // }
  8635. // } else {
  8636. // _iframe.contentDocument.location.reload()
  8637. // }
  8638. } else if (str == 'CocoPi') {
  8639. _iframe = _formdiv.querySelector('iframe')
  8640. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8641. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  8642. })
  8643. if (onloadListener) {
  8644. _iframe.contentDocument.location.reload()
  8645. } else {
  8646. _iframe.contentDocument.location.reload()
  8647. }
  8648. } else {
  8649. _iframe.onload = () => { };
  8650. }
  8651. _jie.onclick = async () => {
  8652. let text = ''
  8653. let type = '2'
  8654. if (aTool == 1) {
  8655. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8656. type = '3'
  8657. } else if (aTool == 6) {
  8658. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8659. type = '1'
  8660. } else if (aTool == 3) {
  8661. text = await U.MD.D.I.getEditorContent(_iframe);
  8662. type = '2'
  8663. } else if (aTool == 57) {
  8664. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  8665. type = '4'
  8666. }
  8667. _loading.style.display = 'flex'
  8668. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  8669. }
  8670. }
  8671. //U.MD.D.I.openClick(str);
  8672. //如果有任务栏信息
  8673. // if (_taskbar) {
  8674. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8675. // }
  8676. }
  8677. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  8678. var xmlhttp;
  8679. var Mac, Sn, DeviceId
  8680. if (window.XMLHttpRequest) {
  8681. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8682. xmlhttp = new XMLHttpRequest();
  8683. } else {
  8684. // IE6, IE5 浏览器执行代码
  8685. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8686. }
  8687. xmlhttp.onreadystatechange = function () {
  8688. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8689. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8690. // resolve(res.value[0][0].text);
  8691. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8692. }
  8693. }
  8694. }
  8695. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8696. xmlhttp.send();
  8697. }
  8698. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  8699. var xmlhttp;
  8700. var Mac, Sn, DeviceId
  8701. if (window.XMLHttpRequest) {
  8702. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8703. xmlhttp = new XMLHttpRequest();
  8704. } else {
  8705. // IE6, IE5 浏览器执行代码
  8706. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8707. }
  8708. xmlhttp.onreadystatechange = function () {
  8709. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8710. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8711. // resolve(res.value[0][0].text);
  8712. if (type == '2') {
  8713. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8714. } else if (type == '3') {
  8715. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8716. } else if (type == '4') {
  8717. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  8718. }
  8719. } else {
  8720. if (type == '2') {
  8721. iframe.contentWindow.editor.minder.importData('json', '')
  8722. } else if (type == '3') {
  8723. iframe.contentWindow.h.app.updateScene({ elements: [] })
  8724. } else if (type == '4') {
  8725. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  8726. }
  8727. }
  8728. }
  8729. }
  8730. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8731. xmlhttp.send();
  8732. }
  8733. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  8734. var xmlhttp;
  8735. var Mac, Sn, DeviceId
  8736. if (window.XMLHttpRequest) {
  8737. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8738. xmlhttp = new XMLHttpRequest();
  8739. } else {
  8740. // IE6, IE5 浏览器执行代码
  8741. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8742. }
  8743. xmlhttp.onreadystatechange = function () {
  8744. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8745. if (xmlhttp.response) {
  8746. // resolve(res.value[0][0].text);
  8747. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  8748. // $(fileInput).val('');
  8749. // });
  8750. span.innerHTML = '上传成功'
  8751. setTimeout(() => {
  8752. loading.style.display = 'none'
  8753. }, 1000);
  8754. }
  8755. }
  8756. }
  8757. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  8758. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  8759. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  8760. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  8761. // 设置请求头,表示请求体的编码格式
  8762. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  8763. // 设置请求体,使用url-encoded格式的数据
  8764. }
  8765. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  8766. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8767. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8768. _userinfo = US.userInfo, //登录用户信息
  8769. _userid = US.userInfo.userid //登录用户id
  8770. let _iframe;
  8771. let _cid = cid,
  8772. _stage = stage,
  8773. _task = task,
  8774. _tool = tool;
  8775. var _jie = $$("div", {
  8776. "style": {
  8777. "position": "absolute",
  8778. "bottom": "50px",
  8779. "right": "50px",
  8780. "zIndex": "9999",
  8781. "backgroundColor": "#2268bc",
  8782. "color": "#fff",
  8783. "padding": "12px 20px",
  8784. "cursor": "pointer",
  8785. "borderRadius": "4px",
  8786. },
  8787. "innerHTML": "提交作业"
  8788. })
  8789. let aTool = ''
  8790. let _loading = document.createElement('div')
  8791. _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;"
  8792. // _loading.id = "";
  8793. let _lchild = document.createElement('div')
  8794. let _limg = document.createElement('img')
  8795. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8796. _limg.style = "width: 26px;margin-right: 10px;"
  8797. _lchild.appendChild(_limg)
  8798. let _lspan = document.createElement('span')
  8799. _lspan.innerHTML = "上传中..."
  8800. _lchild.appendChild(_lspan)
  8801. _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%);"
  8802. _loading.appendChild(_lchild)
  8803. var _box = $$('div', {
  8804. "style": {
  8805. "position": "relative",
  8806. "width": "100%",
  8807. "height": "100%",
  8808. },
  8809. })
  8810. _box.appendChild(_loading)
  8811. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  8812. switch (str) {
  8813. case "CocoPi":
  8814. aTool = 57;
  8815. _iframe = $$("iframe", {
  8816. "allowpaymentrequest": "allowpaymentrequest",
  8817. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8818. "webkitallowfullscreen": "",
  8819. "mozallowfullscreen": "",
  8820. "frameborder": "no",
  8821. "border": "0",
  8822. "scrolling ": "no",
  8823. "style": {
  8824. "cssText": "border:0;width:100%;height:100%"
  8825. },
  8826. "src": "https://pi.cocorobo.cn/"
  8827. })
  8828. _box.appendChild(_iframe);
  8829. _box.appendChild(_jie);
  8830. _formdiv = new U.UF.UI.form(
  8831. "CocoPi",
  8832. _box, {
  8833. "id": "CocoPi_Upload" + cid + stage + task + tool,
  8834. "style": {
  8835. "width": "90%",
  8836. "height": "90%",
  8837. "overflow": 'hidden'
  8838. },
  8839. "onresize": function () { }
  8840. }, {
  8841. closecallback: function () { }
  8842. }, {
  8843. "style": {
  8844. "height": "36px"
  8845. }
  8846. }).form; //创建窗体
  8847. _taskbar = {
  8848. "id": str + _formdiv.id,
  8849. "style": {
  8850. "backgroundImage": "url(/img/icon/cocopi.png)"
  8851. },
  8852. "name": "CocoPi",
  8853. "forms": _formdiv,
  8854. "click": function () {
  8855. U.MD.D.I.openApplication(str, obj, info);
  8856. }
  8857. }
  8858. break;
  8859. }
  8860. if (_iframe) {
  8861. if (str == 'CocoPi') {
  8862. _iframe = _formdiv.querySelector('iframe')
  8863. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8864. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8865. })
  8866. if (onloadListener) {
  8867. _iframe.contentDocument.location.reload()
  8868. } else {
  8869. _iframe.contentDocument.location.reload()
  8870. }
  8871. }
  8872. _jie.onclick = async () => {
  8873. let text = ''
  8874. if (aTool == 57) {
  8875. text = _iframe.contentWindow.getLoadXmlStr()
  8876. }
  8877. _loading.style.display = 'flex'
  8878. console.log(_loading);
  8879. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  8880. _loading.style.display = 'none'
  8881. let _div = document.createElement('div')
  8882. _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;"
  8883. let _inner = document.createElement('div')
  8884. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  8885. _inner.innerHTML = "上传成功"
  8886. _div.appendChild(_inner)
  8887. _iframe.contentWindow.window.document.body.appendChild(_div)
  8888. _div.onclick = () => {
  8889. _iframe.contentWindow.window.document.body.removeChild(_div)
  8890. }
  8891. setTimeout(() => {
  8892. _iframe.contentWindow.window.document.body.removeChild(_div)
  8893. }, 1000);
  8894. }, [], { "type": "POST", "withCredentials": true });
  8895. }
  8896. }
  8897. }
  8898. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  8899. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8900. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8901. _userid = student.userid, //登录用户id
  8902. _username = student.student //用户名字
  8903. let _iframe;
  8904. let _cid = cid,
  8905. _stage = stage,
  8906. _task = task,
  8907. _tool = tool;
  8908. var _jie = $$("div", {
  8909. "style": {
  8910. "position": "absolute",
  8911. "bottom": "50px",
  8912. "right": "50px",
  8913. "zIndex": "9999",
  8914. "backgroundColor": "#2268bc",
  8915. "color": "#fff",
  8916. "padding": "12px 20px",
  8917. "cursor": "pointer",
  8918. "borderRadius": "4px",
  8919. },
  8920. "innerHTML": "提交作业"
  8921. })
  8922. let aTool = ''
  8923. let _loading = document.createElement('div')
  8924. _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;"
  8925. // _loading.id = "";
  8926. let _lchild = document.createElement('div')
  8927. let _limg = document.createElement('img')
  8928. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8929. _limg.style = "width: 26px;margin-right: 10px;"
  8930. _lchild.appendChild(_limg)
  8931. let _lspan = document.createElement('span')
  8932. _lspan.innerHTML = "上传中..."
  8933. _lchild.appendChild(_lspan)
  8934. _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%);"
  8935. _loading.appendChild(_lchild)
  8936. var _box = $$('div', {
  8937. "style": {
  8938. "position": "relative",
  8939. "width": "100%",
  8940. "height": "100%",
  8941. },
  8942. })
  8943. _box.appendChild(_loading)
  8944. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  8945. switch (str) {
  8946. case "CocoPi":
  8947. aTool = 57;
  8948. _iframe = $$("iframe", {
  8949. "allowpaymentrequest": "allowpaymentrequest",
  8950. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  8951. "webkitallowfullscreen": "",
  8952. "mozallowfullscreen": "",
  8953. "frameborder": "no",
  8954. "border": "0",
  8955. "scrolling ": "no",
  8956. "style": {
  8957. "cssText": "border:0;width:100%;height:100%"
  8958. },
  8959. "src": "https://pi.cocorobo.cn/"
  8960. })
  8961. _box.appendChild(_iframe);
  8962. _box.appendChild(_jie);
  8963. _formdiv = new U.UF.UI.form(
  8964. "CocoPi-" + _username,
  8965. _box, {
  8966. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  8967. "style": {
  8968. "width": "90%",
  8969. "height": "90%",
  8970. "overflow": 'hidden'
  8971. },
  8972. "onresize": function () { }
  8973. }, {
  8974. closecallback: function () { }
  8975. }, {
  8976. "style": {
  8977. "height": "36px"
  8978. }
  8979. }).form; //创建窗体
  8980. _taskbar = {
  8981. "id": str + _formdiv.id,
  8982. "style": {
  8983. "backgroundImage": "url(/img/icon/cocopi.png)"
  8984. },
  8985. "name": "CocoPi",
  8986. "forms": _formdiv,
  8987. "click": function () {
  8988. U.MD.D.I.openApplication(str, obj, info);
  8989. }
  8990. }
  8991. break;
  8992. }
  8993. if (_iframe) {
  8994. if (str == 'CocoPi') {
  8995. _iframe = _formdiv.querySelector('iframe')
  8996. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8997. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  8998. })
  8999. if (onloadListener) {
  9000. _iframe.contentDocument.location.reload()
  9001. } else {
  9002. _iframe.contentDocument.location.reload()
  9003. }
  9004. }
  9005. _jie.onclick = async () => {
  9006. let text = ''
  9007. if (aTool == 57) {
  9008. text = _iframe.contentWindow.getLoadXmlStr()
  9009. }
  9010. _loading.style.display = 'flex'
  9011. console.log(_loading);
  9012. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9013. _loading.style.display = 'none'
  9014. let _div = document.createElement('div')
  9015. _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;"
  9016. let _inner = document.createElement('div')
  9017. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9018. _inner.innerHTML = "上传成功"
  9019. _div.appendChild(_inner)
  9020. _iframe.contentWindow.window.document.body.appendChild(_div)
  9021. _div.onclick = () => {
  9022. _iframe.contentWindow.window.document.body.removeChild(_div)
  9023. }
  9024. setTimeout(() => {
  9025. _iframe.contentWindow.window.document.body.removeChild(_div)
  9026. }, 1000);
  9027. }, [], { "type": "POST", "withCredentials": true });
  9028. }
  9029. }
  9030. }
  9031. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9032. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9033. if (res.value[0].length > 0) {
  9034. if (atool == 57) {
  9035. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9036. }
  9037. } else {
  9038. if (atool == 57) {
  9039. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9040. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9041. }
  9042. }
  9043. }, [], { "type": "POST", "withCredentials": true });
  9044. }