DeskTop.js 658 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546
  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.SONGteacherDeskIcon = [
  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": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  687. ];
  688. //hk
  689. U.MD.D.I.hkStudentDeskIcon = [
  690. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  691. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  692. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  693. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  696. ];
  697. //hk
  698. U.MD.D.I.hkaceteacherDeskIcon = [
  699. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  700. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  702. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  703. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  704. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  705. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  706. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  707. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  708. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  709. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  710. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  711. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  712. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  716. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  717. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  718. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  719. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  720. ];
  721. //hk
  722. U.MD.D.I.hkaceStudentDeskIcon = [
  723. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. ];
  730. //香海正覺蓮社佛教正覺中學
  731. U.MD.D.I.hkZJLSteacherDeskIcon = [
  732. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  733. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  739. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  740. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  741. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  742. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  743. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  744. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSStudentDeskIcon = [
  751. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  755. ];
  756. //云海
  757. U.MD.D.I.yunhaiTeacherDeskIcon = [
  758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  765. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  766. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  767. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  768. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  769. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  770. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  771. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  772. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  773. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  776. ];
  777. //福田
  778. U.MD.D.I.heyuanTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  784. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  785. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  786. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  787. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  788. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  789. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  790. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  791. ];
  792. //福田
  793. U.MD.D.I.heyuanAdminDeskIcon = [
  794. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  795. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  796. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  797. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  798. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  799. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  800. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  801. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  802. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  803. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  804. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  805. ];
  806. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  807. U.MD.D.I.szherTeacherDeskIcon = [
  808. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  809. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  812. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  813. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  814. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //dsei
  821. U.MD.D.I.dseiTeacherDeskIcon = [
  822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  828. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  829. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  830. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  831. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  832. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  833. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  834. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  835. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  836. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  837. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  838. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  839. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  840. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  841. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  842. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  843. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  844. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  845. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  846. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  847. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  848. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  849. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  850. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  851. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  852. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  853. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  854. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  855. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  856. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  857. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  862. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  863. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  864. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  865. ];
  866. //dsei
  867. U.MD.D.I.dseiAdminDeskIcon = [
  868. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  869. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  870. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  871. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  877. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  878. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  879. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  880. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  881. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  882. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  883. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  884. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  885. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  886. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  887. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  888. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  889. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  890. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  891. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  892. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  893. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  894. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  895. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  896. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  897. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  898. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  899. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  900. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  901. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  902. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  903. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  904. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  905. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  908. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  909. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  910. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  911. ];
  912. //dsei
  913. U.MD.D.I.dseiStudentDeskIcon = [
  914. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  915. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  916. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  917. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  918. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  919. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  920. ];
  921. //未来教育基地
  922. U.MD.D.I.szjkyTeacherDeskIcon = [
  923. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  924. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  925. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  926. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  927. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  928. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  929. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  930. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  931. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  932. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  933. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  934. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  935. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  936. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  940. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  941. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  942. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  943. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  944. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  945. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  946. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  947. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  948. ];
  949. //未来教育基地
  950. U.MD.D.I.szjkyAdminDeskIcon = [
  951. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  952. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  953. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  954. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  955. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  956. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  957. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  958. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  959. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  960. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  961. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  962. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  963. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  964. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  966. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  967. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  968. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  969. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  970. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  971. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  973. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  974. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  975. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  976. ];
  977. //未来教育基地
  978. U.MD.D.I.szjkyStudentDeskIcon = [
  979. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  980. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  981. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  982. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  983. ];
  984. //成华教育局
  985. U.MD.D.I.chjyjTeacherDeskIcon = [
  986. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  987. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  988. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  990. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  991. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  992. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  993. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  994. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  995. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  996. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  998. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  999. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1000. ];
  1001. //成华教育局chjyj
  1002. U.MD.D.I.chjyjAdminDeskIcon = [
  1003. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1004. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1005. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1006. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1007. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1008. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1009. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1010. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1011. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1012. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1013. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1014. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1016. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1017. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1018. ];
  1019. //成华教育局chjyj
  1020. U.MD.D.I.chjyjStudentDeskIcon = [
  1021. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1022. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1023. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. ];
  1026. //tpc
  1027. U.MD.D.I.tpcStudentDeskIcon = [
  1028. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1032. ];
  1033. //tpc
  1034. U.MD.D.I.tpcTeacherDeskIcon = [
  1035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //tpc
  1044. U.MD.D.I.tpcAdminDeskIcon = [
  1045. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1046. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1047. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1048. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1049. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1050. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1051. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1052. ];
  1053. //THU-IOE
  1054. U.MD.D.I.thuioeTeacherDeskIcon = [
  1055. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1056. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1058. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1062. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1063. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1064. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1065. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1066. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1067. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1068. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1069. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1070. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1071. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1072. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1073. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1074. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1075. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1076. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1077. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1078. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1079. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1080. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1081. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1082. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1083. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1084. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1085. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1086. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1089. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1091. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1092. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1093. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1094. ];
  1095. //THU-IOE
  1096. U.MD.D.I.thuioeStudentDeskIcon = [
  1097. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1098. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1099. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1100. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1101. ];
  1102. //jccssyl
  1103. U.MD.D.I.jccssylTeacherDeskIcon = [
  1104. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1105. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1107. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1108. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1110. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1111. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1112. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1113. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1114. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1115. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1116. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1117. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1119. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1120. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1121. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylStudentDeskIcon = [
  1126. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1128. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1129. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1130. ];
  1131. //cale
  1132. U.MD.D.I.caleTeacherDeskIcon = [
  1133. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1134. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1136. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1137. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1138. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1139. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1140. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1141. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1142. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1143. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1144. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1145. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1146. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1148. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1149. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1150. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1151. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleStudentDeskIcon = [
  1155. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1157. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1158. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1159. ];
  1160. //lqwmsgzs
  1161. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1162. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1163. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1165. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1166. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1167. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1168. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1169. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1170. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1171. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1172. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1173. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1174. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1175. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1176. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1177. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1178. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1179. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1180. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1181. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1182. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1183. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1184. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1186. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1187. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1188. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1189. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1190. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1191. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1192. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1193. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1194. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1195. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1196. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1197. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1198. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1199. ];
  1200. //lqwmsgzs
  1201. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1202. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1203. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1204. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1205. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1206. ];
  1207. //盐田区幼儿园
  1208. U.MD.D.I.ytyTeacherDeskIcon = [
  1209. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1210. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1211. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1212. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1213. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1214. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1215. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1216. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1217. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1221. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1222. ];
  1223. //盐田区幼儿园
  1224. U.MD.D.I.ytyStudentDeskIcon = [
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. ];
  1229. //scnuai
  1230. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1236. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1237. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1241. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1242. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1243. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1244. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1245. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1246. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1247. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1248. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1249. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1250. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1251. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1252. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1253. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1254. ];
  1255. //scnuai
  1256. U.MD.D.I.scnuaiAdminDeskIcon = [
  1257. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1258. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1259. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1260. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1261. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1262. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1263. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1264. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1265. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1266. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1267. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1268. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1270. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1271. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1272. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1273. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1274. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1275. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1276. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1277. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1278. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1279. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1280. ];
  1281. //scnuai
  1282. U.MD.D.I.scnuaiStudentDeskIcon = [
  1283. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1284. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1285. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1286. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1287. ];
  1288. //cocobiz
  1289. U.MD.D.I.cocobizteacherDeskIcon = [
  1290. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1291. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1293. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1294. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1295. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1296. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1297. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1298. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1299. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.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": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.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": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1309. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1310. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizStudentDeskIcon = [
  1314. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1315. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. ];
  1321. //xxzjky
  1322. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1323. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1324. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1325. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1326. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1327. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1328. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1329. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1330. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1331. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1332. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1333. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1334. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1335. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1336. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1337. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1339. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1341. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1342. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1343. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1344. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1347. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1348. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1351. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1353. ];
  1354. //nsfx
  1355. U.MD.D.I.nsfxTeacherDeskIcon = [
  1356. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1359. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1360. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1361. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1362. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1363. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1364. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1365. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1366. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1367. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1368. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1369. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1370. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1371. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1372. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1373. ];
  1374. //nsfx
  1375. U.MD.D.I.nsfxStudentDeskIcon = [
  1376. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1377. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1378. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. ];
  1381. //stia
  1382. U.MD.D.I.stiaTeacherDeskIcon = [
  1383. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1384. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1386. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1387. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1388. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1389. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1390. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1391. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1392. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1395. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1396. ];
  1397. //stia
  1398. U.MD.D.I.stiaStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //szdjg
  1405. U.MD.D.I.szdjgTeacherDeskIcon = [
  1406. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgStudentDeskIcon = [
  1411. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1412. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1413. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1415. ];
  1416. //010607
  1417. U.MD.D.I.x010607TeacherDeskIcon = [
  1418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1426. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1429. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1430. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1431. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1432. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1433. ];
  1434. //010607
  1435. U.MD.D.I.x010607StudentDeskIcon = [
  1436. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010608
  1442. U.MD.D.I.x010608TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010608
  1459. U.MD.D.I.x010608StudentDeskIcon = [
  1460. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //xhly
  1466. U.MD.D.I.xhlyTeacherDeskIcon = [
  1467. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.xhlyStudentDeskIcon = [
  1471. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. ];
  1473. //北师大
  1474. U.MD.D.I.BSDNSteacherDeskIcon = [
  1475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1482. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1485. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1486. ];
  1487. //北师大
  1488. U.MD.D.I.BSDNSstudentDeskIcon = [
  1489. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //CUHK_EDU
  1495. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //CUHK_EDU
  1512. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010503
  1519. U.MD.D.I.x010503TeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1527. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1528. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503StudentDeskIcon = [
  1532. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1535. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. ];
  1537. //SPROUT Lab
  1538. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1539. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1540. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1542. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1543. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1544. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1545. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1547. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. ];
  1555. //010204
  1556. U.MD.D.I.x010204TeacherDeskIcon = [
  1557. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1558. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. ];
  1560. //010204
  1561. U.MD.D.I.x010204StudentDeskIcon = [
  1562. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1563. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1564. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1566. ];
  1567. //trail
  1568. U.MD.D.I.trailTeacherDeskIcon = [
  1569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. ];
  1572. //trail
  1573. U.MD.D.I.trailStudentDeskIcon = [
  1574. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1575. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1576. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1578. ];
  1579. //010504
  1580. U.MD.D.I.x010504TeacherDeskIcon = [
  1581. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1582. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1583. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1584. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1585. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1586. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1587. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1588. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1589. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1590. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1591. ];
  1592. //010504
  1593. U.MD.D.I.x010504StudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //SCNUET
  1600. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1606. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1607. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1608. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1610. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1611. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1612. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1613. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1614. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1615. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1618. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1619. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1622. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1623. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1624. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1625. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1626. ];
  1627. //SCNUET
  1628. U.MD.D.I.SCNUETAdminDeskIcon = [
  1629. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1630. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1634. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1635. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1636. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1638. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1639. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1641. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1642. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1643. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  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. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1648. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1649. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1650. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1651. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1652. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1653. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1654. ];
  1655. //SCNUET
  1656. U.MD.D.I.SCNUETStudentDeskIcon = [
  1657. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1658. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. ];
  1662. //x020201
  1663. U.MD.D.I.x020201TeacherDeskIcon = [
  1664. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1665. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1672. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1674. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1675. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1678. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1679. ];
  1680. //x020201
  1681. U.MD.D.I.x020201AdminDeskIcon = [
  1682. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1683. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1684. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1685. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1688. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1689. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1690. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1691. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1692. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1693. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1696. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1697. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1698. ];
  1699. //020201
  1700. U.MD.D.I.x020201StudentDeskIcon = [
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1705. ];
  1706. //010611
  1707. U.MD.D.I.x010611TeacherDeskIcon = [
  1708. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1709. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1711. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1717. ];
  1718. //010611
  1719. U.MD.D.I.x010611StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //tianyuan
  1726. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1730. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1731. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1732. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1733. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1737. ];
  1738. //010611
  1739. U.MD.D.I.tianyuanStudentDeskIcon = [
  1740. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1741. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1743. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1744. ];
  1745. //#region 桌面初始化a
  1746. /**
  1747. * 初始化桌面的起始函数
  1748. *
  1749. */
  1750. U.MD.D.I.init = function () {
  1751. if ($("#U_MD_D_K")[0]) {
  1752. //初始化桌面图标
  1753. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1754. // var clickUrl = ':12588/requestIp.php';
  1755. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1756. // U.MD.D.I.Ip = data;
  1757. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1758. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1759. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1760. // })
  1761. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1762. // })
  1763. }
  1764. }
  1765. /**
  1766. * 模式切换
  1767. *
  1768. */
  1769. U.MD.D.I.ModeCheck = function (type) {
  1770. if (US.Config.type == type) {
  1771. return
  1772. }
  1773. US.Config.type = type
  1774. $('.U_PBL_Check .active')[0].className = ''
  1775. if (type == 1) {
  1776. $('.U_PBL_Check div')[0].className = 'active'
  1777. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1778. } else {
  1779. $('.U_PBL_Check div')[1].className = 'active'
  1780. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1781. }
  1782. //初始化桌面图标
  1783. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1784. if (type == 2) {
  1785. U.MD.D.I.openApplication("project")
  1786. }
  1787. }
  1788. /**
  1789. * 隐藏任务栏
  1790. *
  1791. * @param {element} 桌面元素
  1792. */
  1793. U.MD.D.I.hiddenTaskbar = function (el) {
  1794. //任务栏位置变小
  1795. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1796. //桌面的位置变大
  1797. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1798. }
  1799. /**
  1800. * 隐藏任务栏
  1801. *
  1802. * @param {element} 桌面元素
  1803. */
  1804. U.MD.D.I.hiddenTaskbarout = function (el) {
  1805. //任务栏位置变小
  1806. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1807. //任务栏位置变化
  1808. U.selectEl(el).css({ "bottom": "-60px" });
  1809. //桌面的位置变大
  1810. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1811. }
  1812. }
  1813. /**
  1814. * 初始化打印桌面图标
  1815. *
  1816. * @param {element} 桌面元素
  1817. */
  1818. U.MD.D.I.initDesktopIcons = function (el, type) {
  1819. var i, //用于循环
  1820. _content, //桌面图标元素
  1821. _iconcontent, //桌面图标元素
  1822. _frag = $$("frag"), //定义一个碎片元素
  1823. _type = US.userInfo.type,
  1824. _org = US.userInfo.org,
  1825. _oid = US.userInfo.organizeid,
  1826. _role = US.userInfo.role,
  1827. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1828. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1829. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1830. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1831. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1832. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1833. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1834. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1835. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1836. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1837. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1838. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1839. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1840. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1841. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1842. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1843. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1844. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1845. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1846. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1847. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1848. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1849. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1850. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1851. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1852. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1853. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1854. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1855. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1856. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1857. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1858. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1859. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1860. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1861. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1862. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1863. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1864. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1865. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1866. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1867. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1868. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1869. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1870. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1871. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1872. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1873. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1874. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1875. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1876. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1877. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1878. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1879. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1880. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1881. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1882. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1883. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1884. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1885. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1886. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1887. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1888. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1889. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1890. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1891. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1892. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1893. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1894. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1895. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1896. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1897. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1898. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1899. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1900. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1901. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1902. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1903. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1904. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1905. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1906. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1907. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1908. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1909. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1910. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1911. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1912. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1913. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1914. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1915. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1916. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1917. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1918. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1919. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1920. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1921. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1922. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1923. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1924. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1925. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1926. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1927. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1928. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1929. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1930. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1931. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1932. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1933. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1934. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1935. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1936. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1937. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1938. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1939. 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','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3'];
  1940. //清楚桌面图标
  1941. el.innerHTML = "";
  1942. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1943. _teacherDesktopIconInfo.push(
  1944. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1945. { "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)" } },
  1946. )
  1947. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1948. }
  1949. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1950. _teacherDesktopIconInfo.push(
  1951. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1952. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1953. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1954. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1955. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1956. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1957. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1959. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1960. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1961. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1963. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1964. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1965. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1967. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1968. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1969. )
  1970. }
  1971. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1972. _teacherDesktopIconInfo.push(
  1973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1974. )
  1975. }
  1976. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1977. // _teacherDesktopIconInfo.push(
  1978. // )
  1979. // }
  1980. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1981. _teacherDesktopIconInfo.push(
  1982. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1983. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1984. )
  1985. }
  1986. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1987. _teacherDesktopIconInfo.push(
  1988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1990. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1991. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1992. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1993. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1994. )
  1995. _studentDesktopIconInfo.push(
  1996. )
  1997. }
  1998. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1999. _teacherDesktopIconInfo.push(
  2000. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2001. )
  2002. _studentDesktopIconInfo.push(
  2003. )
  2004. }
  2005. //010606 组织
  2006. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2007. _teacherDesktopIconInfo.push(
  2008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2009. )
  2010. _studentDesktopIconInfo.push(
  2011. )
  2012. }
  2013. //麒麟二中 和 民新小学
  2014. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2015. _teacherDesktopIconInfo.push(
  2016. )
  2017. }
  2018. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2019. _teacherDesktopIconInfo.push(
  2020. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2021. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2022. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2023. )
  2024. }
  2025. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2026. _hkTeacherDeskIconInfo.push(
  2027. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2028. )
  2029. }
  2030. //北师大附中(010601)
  2031. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2032. // _teacherDesktopIconInfo.push(
  2033. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2034. // )
  2035. // _studentDesktopIconInfo.push(
  2036. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2037. // )
  2038. // }
  2039. //樂善堂余近卿中學
  2040. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2041. _teacherDesktopIconInfo.push(
  2042. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2043. )
  2044. }
  2045. // Education Artificial Intelligence
  2046. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2047. _teacherDesktopIconInfo.push(
  2048. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2049. )
  2050. }
  2051. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2054. )
  2055. }
  2056. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2057. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2058. _teacherDesktopIconInfo.push(
  2059. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2061. )
  2062. }
  2063. //麒麟二中
  2064. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2065. _studentDesktopIconInfo.push(
  2066. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2067. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2068. )
  2069. }
  2070. //万科双语
  2071. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2072. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2073. if (el.Name == '项目管理') {
  2074. el.Name = 'PBL项目'
  2075. }
  2076. return el
  2077. })
  2078. _studentDesktopIconInfo3.push(
  2079. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2080. )
  2081. }
  2082. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2083. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2084. return el.Name != '魔盒识字' && el.Name != '24点'
  2085. })
  2086. }
  2087. 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) {
  2088. _studentDesktopIconInfo.push(
  2089. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2090. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2091. )
  2092. }
  2093. //循环创建桌面图标
  2094. if (type == 1) {
  2095. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2096. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2097. _content = $$("div", {
  2098. className: "U_MD_D_KO",
  2099. "onmousedown": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_studentDesktopIconInfo[i]]),
  2103. "onclick": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_studentDesktopIconInfo[i]])
  2107. }, _frag); //
  2108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2111. }
  2112. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2113. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2114. _content = $$("div", {
  2115. className: "U_MD_D_KO",
  2116. "onmousedown": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2120. "onclick": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_hkZJLSStudentDeskIconInfo[i]])
  2124. }, _frag); //
  2125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2128. } //
  2129. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2130. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2131. _content = $$("div", {
  2132. className: "U_MD_D_KO",
  2133. "onmousedown": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_ytyStudentDeskIconInfo[i]]),
  2137. "onclick": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_ytyStudentDeskIconInfo[i]])
  2141. }, _frag); //
  2142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2145. } //
  2146. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2147. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2148. _content = $$("div", {
  2149. className: "U_MD_D_KO",
  2150. "onmousedown": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_jccssylStudentDeskIconInfo[i]]),
  2154. "onclick": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_jccssylStudentDeskIconInfo[i]])
  2158. }, _frag); //
  2159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2162. }
  2163. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2164. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2165. _content = $$("div", {
  2166. className: "U_MD_D_KO",
  2167. "onmousedown": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_scnuaiStudentDeskIconInfo[i]]),
  2171. "onclick": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_scnuaiStudentDeskIconInfo[i]])
  2175. }, _frag); //
  2176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2179. }
  2180. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2181. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2182. _content = $$("div", {
  2183. className: "U_MD_D_KO",
  2184. "onmousedown": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_caleStudentDeskIconInfo[i]]),
  2188. "onclick": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_caleStudentDeskIconInfo[i]])
  2192. }, _frag); //
  2193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2196. }
  2197. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2198. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_thuioeStudentDeskIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_thuioeStudentDeskIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2215. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_tpcStudentDeskIconInfo[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_tpcStudentDeskIconInfo[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2230. } //
  2231. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2232. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2233. _content = $$("div", {
  2234. className: "U_MD_D_KO",
  2235. "onmousedown": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_chjyjStudentDeskIconInfo[i]]),
  2239. "onclick": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjStudentDeskIconInfo[i]])
  2243. }, _frag); //
  2244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2247. }
  2248. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2249. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_szjkyStudentDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyStudentDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2266. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_x020201StudentDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_x020201StudentDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2283. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2284. _content = $$("div", {
  2285. className: "U_MD_D_KO",
  2286. "onmousedown": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_SCNUETStudentDeskIconInfo[i]]),
  2290. "onclick": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_SCNUETStudentDeskIconInfo[i]])
  2294. }, _frag); //
  2295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2298. }
  2299. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2300. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  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. }, [_dseiStudentDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_dseiStudentDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2317. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2318. _content = $$("div", {
  2319. className: "U_MD_D_KO",
  2320. "onmousedown": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2324. "onclick": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2328. }, _frag); //
  2329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2332. }
  2333. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2334. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_nsfxStudentDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_nsfxStudentDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2351. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_stiaStudentDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_stiaStudentDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2368. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_szdjgStudentDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_szdjgStudentDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2385. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_x010607StudentDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_x010607StudentDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2400. }
  2401. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2402. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2403. _content = $$("div", {
  2404. className: "U_MD_D_KO",
  2405. "onmousedown": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_xhlyStudentDeskIconInfo[i]]),
  2409. "onclick": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_xhlyStudentDeskIconInfo[i]])
  2413. }, _frag); //
  2414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2417. }
  2418. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2419. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2420. _content = $$("div", {
  2421. className: "U_MD_D_KO",
  2422. "onmousedown": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2426. "onclick": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2430. }, _frag); //
  2431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2434. }
  2435. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2436. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2437. _content = $$("div", {
  2438. className: "U_MD_D_KO",
  2439. "onmousedown": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_x010503StudentDeskIconInfo[i]]),
  2443. "onclick": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_x010503StudentDeskIconInfo[i]])
  2447. }, _frag); //
  2448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2451. }
  2452. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2453. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2454. _content = $$("div", {
  2455. className: "U_MD_D_KO",
  2456. "onmousedown": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010504StudentDeskIconInfo[i]]),
  2460. "onclick": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_x010504StudentDeskIconInfo[i]])
  2464. }, _frag); //
  2465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2468. }
  2469. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2470. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2471. _content = $$("div", {
  2472. className: "U_MD_D_KO",
  2473. "onmousedown": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_x010204StudentDeskIconInfo[i]]),
  2477. "onclick": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_x010204StudentDeskIconInfo[i]])
  2481. }, _frag); //
  2482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2485. }
  2486. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2487. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_trailStudentDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_trailStudentDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2504. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2505. _content = $$("div", {
  2506. className: "U_MD_D_KO",
  2507. "onmousedown": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2511. "onclick": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2515. }, _frag); //
  2516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2519. }
  2520. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2521. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010608StudentDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_x010608StudentDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2538. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2539. _content = $$("div", {
  2540. className: "U_MD_D_KO",
  2541. "onmousedown": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010611StudentDeskIconInfo[i]]),
  2545. "onclick": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010611StudentDeskIconInfo[i]])
  2549. }, _frag); //
  2550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2553. }
  2554. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2555. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_tianyuantudentDeskIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_tianyuantudentDeskIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2572. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_siesStudentDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_siesStudentDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2589. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2590. _content = $$("div", {
  2591. className: "U_MD_D_KO",
  2592. "onmousedown": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_guzmsStudentDeskIconInfo[i]]),
  2596. "onclick": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_guzmsStudentDeskIconInfo[i]])
  2600. }, _frag); //
  2601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2604. }
  2605. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2606. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_hkStudentDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_hkStudentDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2621. }
  2622. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2623. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_hkaceStudentDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_hkaceStudentDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2640. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_BSDNSstudentDesktopIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2657. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_cocobizStudentDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_cocobizStudentDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2674. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_xxzjkyStudentDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2689. }
  2690. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2691. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_studentDesktopIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_studentDesktopIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2708. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_tcStudentDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_tcStudentDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2725. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_szscStudentDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_szscStudentDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2742. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_studentDesktopIconInfo3[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2757. }
  2758. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2759. for (i = 0; i < _studentDesktopIconInfo2.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. }, [_studentDesktopIconInfo2[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_studentDesktopIconInfo2[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2774. }
  2775. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2776. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2777. if(_role === 0 && _wanketeacherDesktopIconInfo[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. }, [_wanketeacherDesktopIconInfo[i]]),
  2786. "onclick": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_wanketeacherDesktopIconInfo[i]])
  2790. }, _frag); //
  2791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2794. }
  2795. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2796. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_wankeAdminDesktopIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_wankeAdminDesktopIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2811. }
  2812. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2813. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2814. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2815. continue
  2816. }
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_scnuaiTeacherDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2833. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2834. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2835. continue
  2836. }
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_BSDNSteacherDesktopIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2853. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_scnuaiAdminDeskIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_scnuaiAdminDeskIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2868. }
  2869. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2870. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2871. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2872. continue
  2873. }
  2874. _content = $$("div", {
  2875. className: "U_MD_D_KO",
  2876. "onmousedown": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_jccssylTeacherDeskIconInfo[i]]),
  2880. "onclick": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_jccssylTeacherDeskIconInfo[i]])
  2884. }, _frag); //
  2885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2888. }
  2889. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2890. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2891. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2892. continue
  2893. }
  2894. _content = $$("div", {
  2895. className: "U_MD_D_KO",
  2896. "onmousedown": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_caleTeacherDeskIconInfo[i]]),
  2900. "onclick": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_caleTeacherDeskIconInfo[i]])
  2904. }, _frag); //
  2905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2908. }
  2909. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2910. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2911. _content = $$("div", {
  2912. className: "U_MD_D_KO",
  2913. "onmousedown": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_tpcOrganizerDeskIconInfo[i]]),
  2917. "onclick": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_tpcOrganizerDeskIconInfo[i]])
  2921. }, _frag); //
  2922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2925. }
  2926. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2927. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2928. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2929. continue
  2930. }
  2931. _content = $$("div", {
  2932. className: "U_MD_D_KO",
  2933. "onmousedown": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_tpcTeacherDeskIconInfo[i]]),
  2937. "onclick": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_tpcTeacherDeskIconInfo[i]])
  2941. }, _frag); //
  2942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2945. }
  2946. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2947. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2948. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2949. continue
  2950. }
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_teacherDesktopIconInfo2[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_teacherDesktopIconInfo2[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2965. }
  2966. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2967. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2968. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2969. continue
  2970. }
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_thuioeTeacherDeskIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_thuioeTeacherDeskIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2987. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2988. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2989. continue
  2990. }
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_lotechTeacherDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_lotechTeacherDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3005. }//
  3006. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3007. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3008. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3027. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3028. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_siesTeacherDeskIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_siesTeacherDeskIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3047. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3048. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3049. continue
  3050. }
  3051. _content = $$("div", {
  3052. className: "U_MD_D_KO",
  3053. "onmousedown": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_guzmsTeacherDeskIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_guzmsTeacherDeskIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3065. }
  3066. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3067. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3068. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3069. continue
  3070. }
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_longhuaTeacherDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_longhuaTeacherDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3087. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3088. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3089. continue
  3090. }
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_ytyTeacherDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_ytyTeacherDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3107. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3108. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3109. continue
  3110. }
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_yunhaiTeacherDeskIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3125. } //_hkStudentDeskIconInfo
  3126. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3127. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3128. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3129. continue
  3130. }
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3147. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3148. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3149. continue
  3150. }
  3151. _content = $$("div", {
  3152. className: "U_MD_D_KO",
  3153. "onmousedown": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_hkTeacherDeskIconInfo[i]]),
  3157. "onclick": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_hkTeacherDeskIconInfo[i]])
  3161. }, _frag); //
  3162. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3165. }
  3166. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3167. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3168. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3169. continue
  3170. }
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_hkaceTeacherDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_hkaceTeacherDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3187. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3188. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3189. continue
  3190. }
  3191. _content = $$("div", {
  3192. className: "U_MD_D_KO",
  3193. "onmousedown": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_cocobizTeacherDeskIconInfo[i]]),
  3197. "onclick": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_cocobizTeacherDeskIconInfo[i]])
  3201. }, _frag); //
  3202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3205. }
  3206. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3207. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3208. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3209. continue
  3210. }
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3225. }
  3226. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3227. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_gdjgAdminDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_gdjgAdminDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3244. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_gdjgTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_gdjgTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3264. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_szherTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_szherTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3284. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3285. _content = $$("div", {
  3286. className: "U_MD_D_KO",
  3287. "onmousedown": U.UF.C.closure(function (obj) {
  3288. //防止拖动图标即打开了桌面应用
  3289. U.MD.D.click(this, obj);
  3290. }, [_heyuannAdminDeskIconInfo[i]]),
  3291. "onclick": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_heyuannAdminDeskIconInfo[i]])
  3295. }, _frag); //
  3296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3299. }
  3300. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3301. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3302. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3303. continue
  3304. }
  3305. _content = $$("div", {
  3306. className: "U_MD_D_KO",
  3307. "onmousedown": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_heyuanTeacherDeskIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_heyuanTeacherDeskIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3319. } //
  3320. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3321. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3322. _content = $$("div", {
  3323. className: "U_MD_D_KO",
  3324. "onmousedown": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_dseiAdminDeskIconInfo[i]]),
  3328. "onclick": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_dseiAdminDeskIconInfo[i]])
  3332. }, _frag); //
  3333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3336. }
  3337. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3338. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3339. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3340. continue
  3341. }
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. "onmousedown": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_dseiTeacherDeskIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_dseiTeacherDeskIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3356. } //
  3357. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3358. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3359. _content = $$("div", {
  3360. className: "U_MD_D_KO",
  3361. "onmousedown": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_chjyjAdminDeskIconInfo[i]]),
  3365. "onclick": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_chjyjAdminDeskIconInfo[i]])
  3369. }, _frag); //
  3370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3373. }//
  3374. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3375. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3376. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3377. continue
  3378. }
  3379. _content = $$("div", {
  3380. className: "U_MD_D_KO",
  3381. "onmousedown": U.UF.C.closure(function (obj) {
  3382. //防止拖动图标即打开了桌面应用
  3383. U.MD.D.click(this, obj);
  3384. }, [_chjyjTeacherDeskIconInfo[i]]),
  3385. "onclick": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_chjyjTeacherDeskIconInfo[i]])
  3389. }, _frag); //
  3390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3393. }
  3394. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3395. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3396. _content = $$("div", {
  3397. className: "U_MD_D_KO",
  3398. "onmousedown": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_szjkyAdminDeskIconInfo[i]]),
  3402. "onclick": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_szjkyAdminDeskIconInfo[i]])
  3406. }, _frag); //
  3407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3410. }//
  3411. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3412. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3413. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3414. continue
  3415. }
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_szjkyTeacherDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_szjkyTeacherDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3432. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_x020201AdminDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_x020201AdminDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3447. }//
  3448. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3449. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_x020201TeacherDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_x020201TeacherDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3469. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3470. _content = $$("div", {
  3471. className: "U_MD_D_KO",
  3472. "onmousedown": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_SCNUETAdminDeskIconInfo[i]]),
  3476. "onclick": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_SCNUETAdminDeskIconInfo[i]])
  3480. }, _frag); //
  3481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3484. }//
  3485. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3486. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3487. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3488. continue
  3489. }
  3490. _content = $$("div", {
  3491. className: "U_MD_D_KO",
  3492. "onmousedown": U.UF.C.closure(function (obj) {
  3493. //防止拖动图标即打开了桌面应用
  3494. U.MD.D.click(this, obj);
  3495. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3496. "onclick": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_SCNUETTeacherDeskIconInfo[i]])
  3500. }, _frag); //
  3501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3504. }
  3505. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3506. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3507. _content = $$("div", {
  3508. className: "U_MD_D_KO",
  3509. "onmousedown": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_futianAdminDeskIconInfo[i]]),
  3513. "onclick": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_futianAdminDeskIconInfo[i]])
  3517. }, _frag); //
  3518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3521. }
  3522. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3523. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3524. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3525. continue
  3526. }
  3527. _content = $$("div", {
  3528. className: "U_MD_D_KO",
  3529. "onmousedown": U.UF.C.closure(function (obj) {
  3530. //防止拖动图标即打开了桌面应用
  3531. U.MD.D.click(this, obj);
  3532. }, [_futianTeacherDeskIconInfo[i]]),
  3533. "onclick": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_futianTeacherDeskIconInfo[i]])
  3537. }, _frag); //
  3538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3541. }
  3542. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3543. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3544. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3545. continue
  3546. }
  3547. _content = $$("div", {
  3548. className: "U_MD_D_KO",
  3549. "onmousedown": U.UF.C.closure(function (obj) {
  3550. //防止拖动图标即打开了桌面应用
  3551. U.MD.D.click(this, obj);
  3552. }, [_MingdeTeacherDeskIcon[i]]),
  3553. "onclick": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_MingdeTeacherDeskIcon[i]])
  3557. }, _frag); //
  3558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3561. }
  3562. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3563. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3564. _content = $$("div", {
  3565. className: "U_MD_D_KO",
  3566. "onmousedown": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_lhsAdminDesktopIconInfo[i]]),
  3570. "onclick": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_lhsAdminDesktopIconInfo[i]])
  3574. }, _frag); //
  3575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3578. }
  3579. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3580. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3581. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3582. continue
  3583. }
  3584. _content = $$("div", {
  3585. className: "U_MD_D_KO",
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_lhsteacherDesktopIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_lhsteacherDesktopIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3598. }
  3599. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3600. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3601. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3602. continue
  3603. }
  3604. _content = $$("div", {
  3605. className: "U_MD_D_KO",
  3606. "onmousedown": U.UF.C.closure(function (obj) {
  3607. //防止拖动图标即打开了桌面应用
  3608. U.MD.D.click(this, obj);
  3609. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3610. "onclick": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_zhoujiateacherDesktopIconInfo[i]])
  3614. }, _frag); //
  3615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3618. }
  3619. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3620. for (i = 0; i < _hanDeskIcon.length; i++) {
  3621. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3622. continue
  3623. }
  3624. _content = $$("div", {
  3625. className: "U_MD_D_KO",
  3626. "onmousedown": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_hanDeskIcon[i]]),
  3630. "onclick": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_hanDeskIcon[i]])
  3634. }, _frag); //
  3635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3638. }
  3639. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3640. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3641. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3642. continue
  3643. }
  3644. _content = $$("div", {
  3645. className: "U_MD_D_KO",
  3646. "onmousedown": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_orgStemDeskIcon[i]]),
  3650. "onclick": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_orgStemDeskIcon[i]])
  3654. }, _frag); //
  3655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3658. }
  3659. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3660. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3661. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3662. continue
  3663. }
  3664. _content = $$("div", {
  3665. className: "U_MD_D_KO",
  3666. "onmousedown": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_szulsDeskIcon[i]]),
  3670. "onclick": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_szulsDeskIcon[i]])
  3674. }, _frag); //
  3675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3678. }
  3679. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3680. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3681. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3682. continue
  3683. }
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_orgDesktopIconInfo[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_orgDesktopIconInfo[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3698. }
  3699. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3700. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3701. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3702. continue
  3703. }
  3704. _content = $$("div", {
  3705. className: "U_MD_D_KO",
  3706. "onmousedown": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_schoolDesktopIconInfo[i]]),
  3710. "onclick": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_schoolDesktopIconInfo[i]])
  3714. }, _frag); //
  3715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3718. }
  3719. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3720. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3721. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3722. continue
  3723. }
  3724. _content = $$("div", {
  3725. className: "U_MD_D_KO",
  3726. "onmousedown": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_GMteacherDesktopIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_GMteacherDesktopIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3740. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3741. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3742. continue
  3743. }
  3744. _content = $$("div", {
  3745. className: "U_MD_D_KO",
  3746. "onmousedown": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_SONGteacherDesktopIconInfo[i]]),
  3750. "onclick": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_SONGteacherDesktopIconInfo[i]])
  3754. }, _frag); //
  3755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3758. }
  3759. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3760. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_GMstudentDesktopIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_GMstudentDesktopIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3775. }
  3776. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3777. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3778. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_tcTeacherDeskIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_tcTeacherDeskIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3797. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3798. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3799. continue
  3800. }
  3801. _content = $$("div", {
  3802. className: "U_MD_D_KO",
  3803. "onmousedown": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_tcOrganizerDeskIconInfo[i]]),
  3807. "onclick": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_tcOrganizerDeskIconInfo[i]])
  3811. }, _frag); //
  3812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3815. }
  3816. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3817. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3818. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3819. continue
  3820. }
  3821. _content = $$("div", {
  3822. className: "U_MD_D_KO",
  3823. "onmousedown": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_szscTeacherDeskIconInfo[i]]),
  3827. "onclick": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_szscTeacherDeskIconInfo[i]])
  3831. }, _frag); //
  3832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3835. }
  3836. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3837. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3838. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3839. continue
  3840. }
  3841. _content = $$("div", {
  3842. className: "U_MD_D_KO",
  3843. "onmousedown": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_szscOrganizerDeskIconInfo[i]]),
  3847. "onclick": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_szscOrganizerDeskIconInfo[i]])
  3851. }, _frag); //
  3852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3855. }
  3856. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3857. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3858. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3859. continue
  3860. }
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_nsfxTeacherDeskIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_nsfxTeacherDeskIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3877. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3878. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_stiaTeacherDeskIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_stiaTeacherDeskIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3897. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3898. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3899. continue
  3900. }
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_szdjgTeacherDeskIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szdjgTeacherDeskIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3917. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3918. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_x010607TeacherDeskIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_x010607TeacherDeskIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3937. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3938. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_xhlyTeacherDeskIconInfo[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_xhlyTeacherDeskIconInfo[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3957. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3958. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3977. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3978. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_x010503TeacherDeskIconInfo[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x010503TeacherDeskIconInfo[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3997. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3998. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_x010504TeacherDeskIconInfo[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_x010504TeacherDeskIconInfo[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4015. }
  4016. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4017. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4018. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4019. continue
  4020. }
  4021. _content = $$("div", {
  4022. className: "U_MD_D_KO",
  4023. "onmousedown": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_x010204TeacherDeskIconInfo[i]]),
  4027. "onclick": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_x010204TeacherDeskIconInfo[i]])
  4031. }, _frag); //
  4032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4035. }
  4036. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4037. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4038. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4039. continue
  4040. }
  4041. _content = $$("div", {
  4042. className: "U_MD_D_KO",
  4043. "onmousedown": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_trailTeacherDeskIconInfo[i]]),
  4047. "onclick": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_trailTeacherDeskIconInfo[i]])
  4051. }, _frag); //
  4052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4055. }
  4056. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4057. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4058. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4059. continue
  4060. }
  4061. _content = $$("div", {
  4062. className: "U_MD_D_KO",
  4063. "onmousedown": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4067. "onclick": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4071. }, _frag); //
  4072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4075. }
  4076. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4077. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4078. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4079. continue
  4080. }
  4081. _content = $$("div", {
  4082. className: "U_MD_D_KO",
  4083. "onmousedown": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_x010608TeacherDeskIconInfo[i]]),
  4087. "onclick": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_x010608TeacherDeskIconInfo[i]])
  4091. }, _frag); //
  4092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4095. }
  4096. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4097. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4098. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4099. continue
  4100. }
  4101. _content = $$("div", {
  4102. className: "U_MD_D_KO",
  4103. "onmousedown": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_x010611TeacherDeskIconInfo[i]]),
  4107. "onclick": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_x010611TeacherDeskIconInfo[i]])
  4111. }, _frag); //
  4112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4115. }
  4116. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4117. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4118. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4119. continue
  4120. }
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_tianyuanTeacherDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4135. }
  4136. } else {
  4137. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4138. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_teacherDesktopIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_teacherDesktopIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. }
  4157. } else {
  4158. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. style: { 'width': '124px', 'height': '145px' },
  4162. "onmousedown": U.UF.C.closure(function (obj) {
  4163. //防止拖动图标即打开了桌面应用
  4164. U.MD.D.click(this, obj);
  4165. }, [_easyDesktopIconInfo[i]]),
  4166. "onclick": U.UF.C.closure(function (obj) {
  4167. //防止拖动图标即打开了桌面应用
  4168. U.MD.D.click(this, obj);
  4169. }, [_easyDesktopIconInfo[i]])
  4170. }, _frag); //
  4171. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4174. }
  4175. }
  4176. if (type == 1) {
  4177. //加载好后给图标定位
  4178. U.MD.D.iconPostion($(_frag).Child());
  4179. } else {
  4180. //加载好后给图标定位
  4181. U.MD.D.iconPostion2($(_frag).Child());
  4182. }
  4183. //把图标加载到页面
  4184. el.appendChild(_frag);
  4185. }
  4186. /**
  4187. * 显示任务栏
  4188. *
  4189. * @param {element} 桌面元素
  4190. */
  4191. U.MD.D.I.displayTaskbar = function (el) {
  4192. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4193. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4194. //任务栏位置变化
  4195. U.selectEl(el).css({ "bottom": "0px" });
  4196. //桌面位置变话
  4197. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4198. }
  4199. }
  4200. //#region 桌面图标拖动逻辑
  4201. /**
  4202. * 桌面排列图标
  4203. *
  4204. * @param {element} 桌面元素
  4205. * @param {object} 上下相距的距离
  4206. * @param {object} 左右相距的距离
  4207. * @return {object} 命名空间
  4208. */
  4209. U.MD.D.iconPostion = function (childs, top, left) {
  4210. var i; //用于循环处理
  4211. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4212. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4213. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4214. for (i = 0; i < childs.length; i++) {
  4215. //如果竖排top超过了范围处理
  4216. if (top + 95 > US.height - 10) {
  4217. //left超过了页面范围处理,则向上重叠打印处理
  4218. if ((left + 180) > US.width) {
  4219. top -= 110;
  4220. left -= 90;
  4221. }
  4222. //没有超过范围,那么left+90添加到下一个竖排打印
  4223. else {
  4224. left += 90;
  4225. top = 15;
  4226. };
  4227. }
  4228. //给图标的位置赋值
  4229. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4230. if (i < childs.length - 1) {
  4231. //页面图标每次向下加95
  4232. top += 95;
  4233. }
  4234. }
  4235. //返回最后调用的图标的位置
  4236. return [top, left];
  4237. }
  4238. /**
  4239. * 桌面排列图标
  4240. *
  4241. * @param {element} 桌面元素
  4242. * @param {object} 上下相距的距离
  4243. * @param {object} 左右相距的距离
  4244. * @return {object} 命名空间
  4245. */
  4246. U.MD.D.iconPostion2 = function (childs, top, left) {
  4247. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4248. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4249. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4250. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4251. for (i = 0; i < childs.length; i++) {
  4252. //如果竖排top超过了范围处理
  4253. if (left + 150 > US.width - 10) {
  4254. //left超过了页面范围处理,则向上重叠打印处理
  4255. if ((top + 180) > US.Height) {
  4256. top -= 150;
  4257. left -= 150;
  4258. }
  4259. //没有超过范围,那么left+90添加到下一个竖排打印
  4260. else {
  4261. top += 150;
  4262. left = ol;
  4263. };
  4264. }
  4265. //给图标的位置赋值
  4266. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4267. if (i < childs.length - 1) {
  4268. //页面图标每次向下加95
  4269. left += 150;
  4270. }
  4271. }
  4272. //返回最后调用的图标的位置
  4273. return [top, left];
  4274. }
  4275. /**
  4276. * 桌面点击事件逻辑
  4277. *
  4278. * @param {element} 桌面元素
  4279. * @param {object} 上下相距的距离
  4280. * @param {object} 左右相距的距离
  4281. * @return {object} 命名空间
  4282. */
  4283. U.MD.D.click = function (el, obj) {
  4284. var _buttonnumber = event.button; //点击的按钮的事件值
  4285. var _userinfo = US.userInfo;
  4286. U.UF.EV.stopBubble(); //阻止向上冒泡
  4287. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4288. if (_buttonnumber < 2) {
  4289. //如果是click事件的处理
  4290. if (event.type == "click") {
  4291. //如果元素在mousemove事件中没有移动则出发click事件
  4292. if (!U.MD.D.I.IsDrag) {
  4293. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4294. U.alert("请先登录您的账号!");
  4295. setTimeout(() => {
  4296. U.MD.U.L.login();
  4297. }, 2000);
  4298. } else {
  4299. //打开应用处理
  4300. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4301. }
  4302. }
  4303. }
  4304. //如果是mouse事件的处理
  4305. else {
  4306. if (US.Config.type == '1') {
  4307. //拖动处理,添加拖动和拖动结束事件
  4308. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4309. }
  4310. }
  4311. U.MD.D.I.IsDrag = false;
  4312. }
  4313. }
  4314. /**
  4315. * 拖动的处理
  4316. *
  4317. */
  4318. U.MD.D.iconMove = function () {
  4319. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4320. U.MD.D.I.IsDrag = true;
  4321. }
  4322. /**
  4323. * 拖动结束后,这里是定位处理,以网状的形式定位
  4324. *
  4325. * @param {element} 拖动的元素
  4326. * @return {object} 命名空间
  4327. */
  4328. U.MD.D.iconUp = function (el) {
  4329. var _top = 15,
  4330. _left = 20,
  4331. _margin,
  4332. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4333. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4334. if (_positioninfo["OT"] > 15) {
  4335. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4336. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4337. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4338. }
  4339. if (_positioninfo["OL"] > 20) {
  4340. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4341. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4342. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4343. }
  4344. //while循环判断么一个重叠的元素
  4345. do {
  4346. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4347. _top = _positioninfo[0] + 95; //得到定位后的top
  4348. _left = _positioninfo[1]; //得到定位后的left
  4349. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4350. }
  4351. /**
  4352. * 判断拖动后图标是否重叠
  4353. *
  4354. * @param {element} 拖动的元素
  4355. * @param {element} 桌面所有的元素
  4356. * @param {array} 拖动元素的位置
  4357. ----------[0] 上 top
  4358. ----------[1] 左 left
  4359. * @return {object} 命名空间
  4360. */
  4361. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4362. //循环所有的图标
  4363. for (var i = 0; i < childs.length; i++) {
  4364. //判断有没有和该图标诶子重叠的元素
  4365. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4366. return childs[i]; //如果有返回
  4367. }
  4368. }
  4369. }
  4370. //#endregion
  4371. //#endregion
  4372. //#region 桌面应用
  4373. /**
  4374. * 打开应用
  4375. *
  4376. * @param {string} 类型
  4377. -----------------Disk 网盘系统
  4378. -----------------PDisk 学习系统网盘
  4379. -----------------Poto 图片
  4380. -----------------Video 视频
  4381. -----------------Music 音乐
  4382. -----------------Word word
  4383. -----------------Excel excel
  4384. -----------------Txt 记事本
  4385. -----------------PB 学习系统
  4386. -----------------Blog 朋友圈系统
  4387. -----------------FTP ftp系统
  4388. -----------------Group 好友群
  4389. -----------------SY 首页系统
  4390. -----------------Set 个人设置
  4391. -----------------XSet 系统设置
  4392. -----------------App 我们所有的app
  4393. -----------------BC c.1473.cn 平台
  4394. -----------------CWeb d.1473.cn 变成平台
  4395. -----------------其他的外联系统 我们统一用iframe打开
  4396. * @param {array} 类型
  4397. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4398. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4399. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4400. 如果第一个参数为其他,则无第二个参数
  4401. * @returns {array}
  4402. */
  4403. window.addEventListener('message', function (e) { // 监听 message 事件
  4404. // alert(e.data.type);
  4405. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4406. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4407. //3是展示全部阶段 2学生 1老师 4专家
  4408. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4409. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4410. //3是展示全部阶段 2学生 1老师 4专家
  4411. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4412. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4413. //3是展示全部阶段 2学生 1老师 4专家
  4414. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4415. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4416. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4417. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4426. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4428. //3是展示全部阶段 2学生 1老师 4专家
  4429. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4431. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4432. U.MD.D.I.selectUser();
  4433. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4434. var _formel = document.getElementById("study");
  4435. U.UF.F.windowZooming(_formel);
  4436. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4437. var _formel = document.getElementById("studyDetail");
  4438. U.UF.F.windowZooming(_formel);
  4439. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4440. var _formel = document.getElementById("studyDetail");
  4441. U.UF.F.windowZooming(_formel);
  4442. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4443. var _formel = document.getElementById("studentStudy");
  4444. U.UF.F.windowZooming(_formel);
  4445. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4446. // var _formel = document.getElementById("study");
  4447. //如果最大化了,那么就把他缩小
  4448. // if (_formel.ismaximize) {
  4449. // return;
  4450. // }
  4451. // U.UF.F.windowZooming(_formel);
  4452. // U.UF.F.topWindow(_formel);
  4453. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4454. // var _formel = document.getElementById("studyDetail");
  4455. //如果最大化了,那么就把他缩小
  4456. // if (_formel.ismaximize) {
  4457. // return;
  4458. // }
  4459. // U.UF.F.windowZooming(_formel);
  4460. // U.UF.F.topWindow(_formel);
  4461. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4462. // var _formel = document.getElementById("studentStudy");
  4463. // if (_formel.ismaximize) {
  4464. // return;
  4465. // }
  4466. // U.UF.F.windowZooming(_formel);
  4467. // U.UF.F.topWindow(_formel);
  4468. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4469. var _formel = document.getElementById("study");
  4470. // if (_formel.ismaximize) {
  4471. // return;
  4472. // }
  4473. // U.UF.F.windowZooming(_formel);
  4474. U.UF.F.topWindow(_formel);
  4475. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4476. var _formel = document.getElementById("studentIndex");
  4477. U.UF.F.windowZooming(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4479. var _formel = document.getElementById("studyDetailS");
  4480. U.UF.F.windowZooming(_formel);
  4481. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4482. var _formel = document.getElementById("studioIndex");
  4483. U.UF.F.windowZooming(_formel);
  4484. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4485. var _formel = document.getElementById("studyDetailStudio");
  4486. U.UF.F.windowZooming(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4488. var _formel = document.getElementById("studyDetailStudio");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4491. var _formel = document.getElementById("studyDetailNT");
  4492. U.UF.F.windowZooming(_formel);
  4493. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4494. var _formel = document.getElementById("studyDetailS");
  4495. U.UF.F.windowZooming(_formel);
  4496. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4497. var _formel = document.getElementById("studyDetailS");
  4498. U.UF.F.topWindow(_formel);
  4499. } else if (e.data.tools && e.data.tools == "1") {
  4500. // U.MD.D.I.openApplication("whiteboard")
  4501. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4502. } else if (e.data.tools && e.data.tools == "2") {
  4503. U.MD.D.I.openApplication("note")
  4504. } else if (e.data.tools && e.data.tools == "3") {
  4505. // U.MD.D.I.openApplication("mind")
  4506. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "4") {
  4508. U.MD.D.I.openApplication("investigation")
  4509. } else if (e.data.tools && e.data.tools == "6") {
  4510. // U.MD.D.I.openApplication("doc")
  4511. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "7") {
  4513. // U.MD.D.I.openApplication("mindNetwork")
  4514. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4515. } else if (e.data.tools && e.data.tools == "8") {
  4516. U.MD.D.I.openApplication("library")
  4517. } else if (e.data.tools && e.data.tools == "17") {
  4518. U.MD.D.I.openApplication("stuLibrary")
  4519. } else if (e.data.tools && e.data.tools == "18") {
  4520. U.MD.D.I.openApplication("train")
  4521. } else if (e.data.tools && e.data.tools == "21") {
  4522. U.MD.D.I.openApplication("program")
  4523. } else if (e.data.tools && e.data.tools == "22") {
  4524. U.MD.D.I.openApplication("AIprogram2")
  4525. } else if (e.data.tools && e.data.tools == "23") {
  4526. U.MD.D.I.openApplication("Pythonprogram")
  4527. } else if (e.data.tools && e.data.tools == "24") {
  4528. U.MD.D.I.openApplication("AIprogram")
  4529. } else if (e.data.tools && e.data.tools == "25") {
  4530. U.MD.D.I.openApplication("sys")
  4531. } else if (e.data.tools && e.data.tools == "26") {
  4532. // U.MD.D.I.openApplication("courseDesign")
  4533. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4534. } else if (e.data.tools && e.data.tools == "31") {
  4535. U.MD.D.I.openApplication("netWorkPanel")
  4536. } else if (e.data.tools && e.data.tools == "32") {
  4537. U.MD.D.I.openApplication("codeEdit")
  4538. } else if (e.data.tools && e.data.tools == "57") {
  4539. U.MD.D.I.openApplication("CocoPi")
  4540. } else if (e.data.tools && e.data.tools == "63") {
  4541. U.MD.D.I.openApplication("Wood")
  4542. } else if (e.data.tools && e.data.tools == "58") {
  4543. U.MD.D.I.openApplication("car")
  4544. } else if (e.data.tools && e.data.tools == "59") {
  4545. U.MD.D.I.openApplication("lineSearch")
  4546. } else if (e.data.tools && e.data.tools == "60") {
  4547. U.MD.D.I.openApplication("deepLearning")
  4548. } else if (e.data.tools && e.data.tools == "61") {
  4549. U.MD.D.I.openApplication("allHistory")
  4550. } else if (e.data.tools && e.data.tools == "28") {
  4551. U.MD.D.I.openApplication("translation")
  4552. } else if (e.data.tools && e.data.tools == "37") {
  4553. U.MD.D.I.openApplication("mohe")
  4554. } else if (e.data.tools && e.data.tools == "38") {
  4555. U.MD.D.I.openApplication("24game")
  4556. } else if (e.data.tools && e.data.tools == "39") {
  4557. U.MD.D.I.openApplication("GeoGebra")
  4558. } else if (e.data.tools && e.data.tools == "43") {
  4559. U.MD.D.I.openApplication("studentEvaluate")
  4560. } else if (e.data.tools && e.data.tools == "44") {
  4561. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4562. } else if (e.data.tools && e.data.tools == "46") {
  4563. U.MD.D.I.openApplication("project")
  4564. } else if (e.data.tools && e.data.tools == "71") {
  4565. U.MD.D.I.openApplication("aigptCourse")
  4566. } else if (e.data.tools && e.data.tools == "1s") {
  4567. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4568. } else if (e.data.tools && e.data.tools == "3s") {
  4569. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "6s") {
  4571. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "1studio") {
  4573. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "3studio") {
  4575. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "6studio") {
  4577. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3y") {
  4579. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "1y") {
  4581. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4583. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4584. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4585. U.MD.D.I.openApplication("AIAnalyse")
  4586. } else if (e.data.tools && e.data.tools == "1teacher") {
  4587. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4588. } else if (e.data.tools && e.data.tools == "3teacher") {
  4589. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "7teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4593. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4595. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "1E") {
  4597. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4598. } else if (e.data.tools && e.data.tools == "3E") {
  4599. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4600. } else if (e.data.tools && e.data.tools == "57y") {
  4601. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "57u") {
  4603. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57teacher") {
  4605. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4606. } else if (e.data.tools && e.data.tools == "64") {
  4607. U.MD.D.I.openApplication("AIChat")
  4608. } else if (e.data.tools && e.data.tools == "66") {
  4609. U.MD.D.I.openApplication("formulaEdi")
  4610. } else if (e.data.tools && e.data.tools == "67") {
  4611. U.MD.D.I.openApplication("molStr")
  4612. } else if (e.data.tools && e.data.tools == "68") {
  4613. U.MD.D.I.openApplication("timeAxis")
  4614. } else if (e.data.tools && e.data.tools == "openCourse") {
  4615. let _data = {
  4616. typea: e.data.typea || '',
  4617. typeb: e.data.typeb || '',
  4618. typed: e.data.typed || '',
  4619. }
  4620. U.MD.D.I.openInApplication("index", _data)
  4621. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4622. let _data = {
  4623. classid: e.data.classid || '',
  4624. }
  4625. U.MD.D.I.openInApplication("dataClass", _data)
  4626. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4627. let _data = {
  4628. cid: e.data.cid || '',
  4629. gid: e.data.gid || '',
  4630. }
  4631. U.MD.D.I.openInApplication("opencCscl", _data)
  4632. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4633. U.MD.D.I.openApplication("dataBoardTest")
  4634. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4635. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4636. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4637. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4641. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4643. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "loginSz") {
  4645. U.MD.D.I.openInApplication("loginSz")
  4646. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4647. if($('#classroom_observation_board')[0]){
  4648. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4649. }
  4650. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4651. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4652. if($('#classroom_observation_ob_comment')[0]){
  4653. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4654. }
  4655. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4656. }else if (e.data.tools && e.data.tools == "logout"){
  4657. U.MD.U.LO.logoutSystem()
  4658. }else if (e.data.tools && e.data.tools == "getLogin"){
  4659. let _iframe = $('#UI_Login')[0];
  4660. if (_iframe) {
  4661. var userInfo = US.userInfo;
  4662. var type = 2
  4663. if(userInfo && userInfo.userid){
  4664. type = 1
  4665. }
  4666. _contentWindow = _iframe.contentWindow;
  4667. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4668. }
  4669. }
  4670. });
  4671. U.MD.D.I.selectUser = function () {
  4672. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4673. if (res.value[0].length > 0) {
  4674. US.userInfo = res.value[0][0];
  4675. $(".userName")[0].innerHTML = US.userInfo.username;
  4676. }
  4677. }, [], { "type": "GET", "withCredentials": true });
  4678. }
  4679. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4680. var _userinfo = US.userInfo, //登录用户信息
  4681. _userid = US.userInfo.userid, //登录用户id
  4682. _oid = _userinfo.organizeid,
  4683. _type = US.userInfo.type,
  4684. _org = US.userInfo.org,
  4685. _role = US.userInfo.role,
  4686. _classId = US.userInfo.classid;
  4687. if (_type == 4) {
  4688. tType = 4
  4689. }
  4690. switch (str) {
  4691. case "studyDetailNT": //无终端模式
  4692. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. _formdiv = new U.UF.UI.form(
  4698. "课程详情",
  4699. $$("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 }), {
  4700. "id": "studyDetailNT",
  4701. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4707. break;
  4708. }
  4709. case "studyDetail":
  4710. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4711. setTimeout(() => {
  4712. U.MD.U.L.login();
  4713. }, 2000);
  4714. } else {
  4715. _formdiv = new U.UF.UI.form(
  4716. "课程详情",
  4717. $$("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 }), {
  4718. "id": "studyDetail",
  4719. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4720. "onresize": function () { }
  4721. }, {
  4722. closecallback: function () { }
  4723. }, { "style": { "height": "36px" } }).form; //创建窗体
  4724. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4725. break;
  4726. }
  4727. case "studyDetailTrain":
  4728. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4729. setTimeout(() => {
  4730. U.MD.U.L.login();
  4731. }, 2000);
  4732. } else {
  4733. _formdiv = new U.UF.UI.form(
  4734. "培训详情",
  4735. $$("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 }), {
  4736. "id": "studyDetailTrain",
  4737. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4743. break;
  4744. }
  4745. case "studyDetailS":
  4746. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4747. setTimeout(() => {
  4748. U.MD.U.L.login();
  4749. }, 2000);
  4750. } else {
  4751. _formdiv = new U.UF.UI.form(
  4752. "项目详情",
  4753. $$("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 }), {
  4754. "id": "studyDetailS",
  4755. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4756. "onresize": function () { }
  4757. }, {
  4758. closecallback: function () { }
  4759. }, { "style": { "height": "36px" } }).form; //创建窗体
  4760. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4761. break;
  4762. }
  4763. case "studyDetailStudio":
  4764. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4765. setTimeout(() => {
  4766. U.MD.U.L.login();
  4767. }, 2000);
  4768. } else {
  4769. _formdiv = new U.UF.UI.form(
  4770. "工作详情",
  4771. $$("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 }), {
  4772. "id": "studyDetailStudio",
  4773. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4774. "onresize": function () { }
  4775. }, {
  4776. closecallback: function () { }
  4777. }, { "style": { "height": "36px" } }).form; //创建窗体
  4778. _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); } }
  4779. break;
  4780. }
  4781. case "studyDetailS5":
  4782. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4783. setTimeout(() => {
  4784. U.MD.U.L.login();
  4785. }, 2000);
  4786. } else {
  4787. _formdiv = new U.UF.UI.form(
  4788. "项目详情",
  4789. $$("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 }), {
  4790. "id": "studyDetailS",
  4791. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4792. "onresize": function () { }
  4793. }, {
  4794. closecallback: function () { }
  4795. }, { "style": { "height": "36px" } }).form; //创建窗体
  4796. _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); } }
  4797. break;
  4798. }
  4799. case "studyDetailGM":
  4800. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4801. setTimeout(() => {
  4802. U.MD.U.L.login();
  4803. }, 2000);
  4804. } else {
  4805. _formdiv = new U.UF.UI.form(
  4806. "课程详情",
  4807. $$("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 }), {
  4808. "id": "studyDetail",
  4809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4810. "onresize": function () { }
  4811. }, {
  4812. closecallback: function () { }
  4813. }, { "style": { "height": "36px" } }).form; //创建窗体
  4814. _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); } }
  4815. break;
  4816. }
  4817. case "hanUrl":
  4818. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4819. setTimeout(() => {
  4820. U.MD.U.L.login();
  4821. }, 2000);
  4822. } else {
  4823. _formdiv = new U.UF.UI.form(
  4824. "汉字宫",
  4825. $$("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" }), {
  4826. "id": "hanUrl",
  4827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4828. "onresize": function () { }
  4829. }, {
  4830. closecallback: function () { }
  4831. }, { "style": { "height": "36px" } }).form; //创建窗体
  4832. _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); } }
  4833. break;
  4834. }
  4835. case "index":
  4836. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4837. setTimeout(() => {
  4838. U.MD.U.L.login();
  4839. }, 2000);
  4840. } else {
  4841. _formdiv = new U.UF.UI.form(
  4842. "课程中心",
  4843. $$("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 }), {
  4844. "id": "study",
  4845. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4846. "onresize": function () { }
  4847. }, {
  4848. closecallback: function () { }
  4849. }, { "style": { "height": "36px" } }).form; //创建窗体
  4850. _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); } }
  4851. break;
  4852. }
  4853. case "dataClass":
  4854. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4855. setTimeout(() => {
  4856. U.MD.U.L.login();
  4857. }, 2000);
  4858. } else {
  4859. _formdiv = new U.UF.UI.form(
  4860. "数据报告",
  4861. $$("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 }), {
  4862. "id": "dataClass",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. _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); } }
  4869. break;
  4870. }
  4871. case "opencCscl":
  4872. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4873. setTimeout(() => {
  4874. U.MD.U.L.login();
  4875. }, 2000);
  4876. } else {
  4877. _formdiv = new U.UF.UI.form(
  4878. "协同建构",
  4879. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4880. "id": "futureClass",
  4881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4885. }, { "style": { "height": "36px" } }).form; //创建窗体
  4886. _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); } }
  4887. break;
  4888. }
  4889. case "openCourseUpdate":
  4890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4891. setTimeout(() => {
  4892. U.MD.U.L.login();
  4893. }, 2000);
  4894. } else {
  4895. _formdiv = new U.UF.UI.form(
  4896. "课程管理",
  4897. $$("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 }), {
  4898. "id": "openCourseUpdate",
  4899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. break;
  4905. }
  4906. case "openNewCourseUpdate":
  4907. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4908. setTimeout(() => {
  4909. U.MD.U.L.login();
  4910. }, 2000);
  4911. } else {
  4912. _formdiv = new U.UF.UI.form(
  4913. "课程管理",
  4914. $$("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 }), {
  4915. "id": "openCourseUpdate",
  4916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. break;
  4922. }
  4923. case "openCourseEUpdate":
  4924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4925. setTimeout(() => {
  4926. U.MD.U.L.login();
  4927. }, 2000);
  4928. } else {
  4929. _formdiv = new U.UF.UI.form(
  4930. "课程管理",
  4931. $$("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 }), {
  4932. "id": "openCourseUpdate",
  4933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. break;
  4939. }
  4940. case "openCourseAiUpdate":
  4941. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4942. setTimeout(() => {
  4943. U.MD.U.L.login();
  4944. }, 2000);
  4945. } else {
  4946. _formdiv = new U.UF.UI.form(
  4947. "课程管理",
  4948. $$("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 }), {
  4949. "id": "openCourseUpdate",
  4950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4951. "onresize": function () { }
  4952. }, {
  4953. closecallback: function () { }
  4954. }, { "style": { "height": "36px" } }).form; //创建窗体
  4955. break;
  4956. }
  4957. case "openCourseNewUpdate":
  4958. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4959. setTimeout(() => {
  4960. U.MD.U.L.login();
  4961. }, 2000);
  4962. } else {
  4963. _formdiv = new U.UF.UI.form(
  4964. "课程管理",
  4965. $$("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 }), {
  4966. "id": "openCourseUpdate",
  4967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. closecallback: function () { }
  4971. }, { "style": { "height": "36px" } }).form; //创建窗体
  4972. break;
  4973. }
  4974. case "inviteLoginSz":
  4975. _formdiv = new U.UF.UI.form(
  4976. "随机码登录",
  4977. $$("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 }), {
  4978. "id": "loginSz",
  4979. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4980. "onresize": function () { }
  4981. }, {
  4982. closecallback: function () { }
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. break;
  4985. case "loginSz":
  4986. _formdiv = new U.UF.UI.form(
  4987. "教师登录",
  4988. $$("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": "//edu.cocorobo.cn/ResourcesLogin" }), {
  4989. "id": "loginSz",
  4990. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. break;
  4996. case "teacher":
  4997. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4998. setTimeout(() => {
  4999. U.MD.U.L.login();
  5000. }, 2000);
  5001. } else {
  5002. _formdiv = new U.UF.UI.form(
  5003. "教师管理",
  5004. $$("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 }), {
  5005. "id": "teacher",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. break;
  5012. }
  5013. case "dataBoardSZArea":
  5014. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5015. setTimeout(() => {
  5016. U.MD.U.L.login();
  5017. }, 2000);
  5018. } else {
  5019. _formdiv = new U.UF.UI.form(
  5020. "综合数据看板",
  5021. $$("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 }), {
  5022. "id": "dataBoardSZArea",
  5023. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. break;
  5029. }
  5030. case "dataBoardSZCity":
  5031. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5032. setTimeout(() => {
  5033. U.MD.U.L.login();
  5034. }, 2000);
  5035. } else {
  5036. _formdiv = new U.UF.UI.form(
  5037. "综合数据看板",
  5038. $$("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 }), {
  5039. "id": "dataBoardSZCity",
  5040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. break;
  5046. }
  5047. case "classroom_observation_board":
  5048. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5049. setTimeout(() => {
  5050. U.MD.U.L.login();
  5051. }, 2000);
  5052. } else {
  5053. _formdiv = new U.UF.UI.form(
  5054. "课堂观察",
  5055. $$("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 }), {
  5056. "id": "classroom_observation_board",
  5057. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //创建窗体
  5062. break;
  5063. }
  5064. case "classroom_observation_ob_comment":
  5065. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5066. setTimeout(() => {
  5067. U.MD.U.L.login();
  5068. }, 2000);
  5069. } else {
  5070. _formdiv = new U.UF.UI.form(
  5071. "课堂审核",
  5072. $$("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 }), {
  5073. "id": "classroom_observation_ob_comment",
  5074. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5075. "onresize": function () { }
  5076. }, {
  5077. closecallback: function () { }
  5078. }, { "style": { "height": "36px" } }).form; //创建窗体
  5079. break;
  5080. }
  5081. }
  5082. }
  5083. U.MD.D.I.openApplication = function (str, obj, info) {
  5084. obj = obj || {};
  5085. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5086. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5087. _userinfo = US.userInfo, //登录用户信息
  5088. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5089. _oid = obj.organizeid || _userinfo.organizeid,
  5090. _type = US.userInfo.type,
  5091. _org = US.userInfo.org,
  5092. _role = US.userInfo.role,
  5093. _classId = US.userInfo.classid,
  5094. _TscreenType = 1
  5095. _screenType = 2,
  5096. _SscreenType = 3;
  5097. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5098. return;
  5099. }
  5100. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5101. switch (str) {
  5102. case "studnetProject": //好友打开
  5103. _formdiv = new U.UF.UI.form(
  5104. "我的项目",
  5105. $$("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 }), {
  5106. "id": "studnetProject",
  5107. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5108. "onresize": function () { }
  5109. }, {
  5110. closecallback: function () { }
  5111. }, { "style": { "height": "36px" } }).form; //创建窗体
  5112. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5113. break;
  5114. case "studentEvaluate": //好友打开
  5115. _formdiv = new U.UF.UI.form(
  5116. "我的评价",
  5117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5118. "id": "studentEvaluate",
  5119. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5120. "onresize": function () { }
  5121. }, {
  5122. closecallback: function () { }
  5123. }, { "style": { "height": "36px" } }).form; //创建窗体
  5124. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5125. break;
  5126. case "my":
  5127. _formdiv = new U.UF.UI.form(
  5128. "我的资料",
  5129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5130. "id": "my",
  5131. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5137. break;
  5138. case "program":
  5139. _formdiv = new U.UF.UI.form(
  5140. "编程平台",
  5141. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5142. "id": "program",
  5143. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5144. "onresize": function () { }
  5145. }, {
  5146. closecallback: function () { }
  5147. }, { "style": { "height": "36px" } }).form; //创建窗体
  5148. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5149. break;
  5150. case "library":
  5151. _formdiv = new U.UF.UI.form(
  5152. "素材库",
  5153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5154. "id": "library",
  5155. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5156. "onresize": function () { }
  5157. }, {
  5158. closecallback: function () { }
  5159. }, { "style": { "height": "36px" } }).form; //创建窗体
  5160. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5161. break;
  5162. case "whiteboard":
  5163. _formdiv = new U.UF.UI.form(
  5164. "电子白板",
  5165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5166. "id": "whiteboard",
  5167. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5168. "onresize": function () { }
  5169. }, {
  5170. closecallback: function () { }
  5171. }, { "style": { "height": "36px" } }).form; //创建窗体
  5172. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5173. break;
  5174. case "investigation":
  5175. _formdiv = new U.UF.UI.form(
  5176. "问卷调查",
  5177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5178. "id": "investigation",
  5179. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5185. break;
  5186. case "note":
  5187. _formdiv = new U.UF.UI.form(
  5188. "便签分类",
  5189. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5190. "id": "note",
  5191. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5192. "onresize": function () { }
  5193. }, {
  5194. closecallback: function () { }
  5195. }, { "style": { "height": "36px" } }).form; //创建窗体
  5196. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5197. break;
  5198. // case "score":
  5199. // _formdiv = new U.UF.UI.form(
  5200. // "量规评分",
  5201. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5202. // "id": "score",
  5203. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5204. // "onresize": function() {}
  5205. // }, {
  5206. // closecallback: function() {}
  5207. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5208. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5209. // break;
  5210. case "mind":
  5211. _formdiv = new U.UF.UI.form(
  5212. "思维导图",
  5213. $$("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"
  5214. "id": "mind",
  5215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5221. break;
  5222. case "doc":
  5223. // U.MD.D.I.isRoom();
  5224. _formdiv = new U.UF.UI.form(
  5225. "协同文档",
  5226. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5227. "id": "doc",
  5228. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5229. "onresize": function () { }
  5230. }, {
  5231. closecallback: function () { }
  5232. }, { "style": { "height": "36px" } }).form; //创建窗体
  5233. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5234. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5235. // })
  5236. _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); } }
  5237. break;
  5238. case "studentStudy":
  5239. _formdiv = new U.UF.UI.form(
  5240. "课程中心",
  5241. $$("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
  5242. "id": "studentStudy",
  5243. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "train": //好友打开
  5251. _formdiv = new U.UF.UI.form(
  5252. "训练平台",
  5253. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5254. "id": "train",
  5255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. _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); } }
  5261. break;
  5262. case "mindNetwork": //好友打开
  5263. _formdiv = new U.UF.UI.form(
  5264. "思维网格",
  5265. $$("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 }), {
  5266. "id": "mindNetwork",
  5267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. case "studentClassRoom": //好友打开
  5275. _formdiv = new U.UF.UI.form(
  5276. "实时课堂",
  5277. $$("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 }), {
  5278. "id": "studentClassRoom",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5285. setTimeout(() => {
  5286. U.UF.F.windowZooming(_formdiv)
  5287. }, 0);
  5288. break;
  5289. }
  5290. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5291. switch (str) {
  5292. case "studnetProject": //好友打开
  5293. _formdiv = new U.UF.UI.form(
  5294. "我的项目",
  5295. $$("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 }), {
  5296. "id": "studnetProject",
  5297. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. case "studentEvaluate": //好友打开
  5305. _formdiv = new U.UF.UI.form(
  5306. "我的评价",
  5307. $$("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 }), {
  5308. "id": "studentEvaluate",
  5309. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5310. "onresize": function () { }
  5311. }, {
  5312. closecallback: function () { }
  5313. }, { "style": { "height": "36px" } }).form; //创建窗体
  5314. _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); } }
  5315. break;
  5316. case "my":
  5317. _formdiv = new U.UF.UI.form(
  5318. "我的资料",
  5319. $$("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 }), {
  5320. "id": "my",
  5321. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. case "program":
  5329. _formdiv = new U.UF.UI.form(
  5330. "编程平台",
  5331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5332. "id": "program",
  5333. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5334. "onresize": function () { }
  5335. }, {
  5336. closecallback: function () { }
  5337. }, { "style": { "height": "36px" } }).form; //创建窗体
  5338. _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); } }
  5339. break;
  5340. case "library":
  5341. _formdiv = new U.UF.UI.form(
  5342. "素材库",
  5343. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5344. "id": "library",
  5345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5346. "onresize": function () { }
  5347. }, {
  5348. closecallback: function () { }
  5349. }, { "style": { "height": "36px" } }).form; //创建窗体
  5350. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5351. break;
  5352. case "whiteboard":
  5353. _formdiv = new U.UF.UI.form(
  5354. "电子白板",
  5355. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5356. "id": "whiteboard",
  5357. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _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); } }
  5363. break;
  5364. case "investigation":
  5365. _formdiv = new U.UF.UI.form(
  5366. "问卷调查",
  5367. $$("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 }), {
  5368. "id": "investigation",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. _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); } }
  5375. break;
  5376. case "note":
  5377. _formdiv = new U.UF.UI.form(
  5378. "便签分类",
  5379. $$("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 }), {
  5380. "id": "note",
  5381. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5382. "onresize": function () { }
  5383. }, {
  5384. closecallback: function () { }
  5385. }, { "style": { "height": "36px" } }).form; //创建窗体
  5386. _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); } }
  5387. break;
  5388. // case "score":
  5389. // _formdiv = new U.UF.UI.form(
  5390. // "量规评分",
  5391. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5392. // "id": "score",
  5393. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. // "onresize": function() {}
  5395. // }, {
  5396. // closecallback: function() {}
  5397. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. // _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); } }
  5399. // break;
  5400. case "mind":
  5401. _formdiv = new U.UF.UI.form(
  5402. "思维导图",
  5403. $$("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"
  5404. "id": "mind",
  5405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. break;
  5412. case "doc":
  5413. // U.MD.D.I.isRoom();
  5414. _formdiv = new U.UF.UI.form(
  5415. "协同文档",
  5416. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5417. "id": "doc",
  5418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5419. "onresize": function () { }
  5420. }, {
  5421. closecallback: function () { }
  5422. }, { "style": { "height": "36px" } }).form; //创建窗体
  5423. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5424. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5425. })
  5426. _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); } }
  5427. break;
  5428. case "train": //好友打开
  5429. _formdiv = new U.UF.UI.form(
  5430. "训练平台",
  5431. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5432. "id": "train",
  5433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5434. "onresize": function () { }
  5435. }, {
  5436. closecallback: function () { }
  5437. }, { "style": { "height": "36px" } }).form; //创建窗体
  5438. _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); } }
  5439. break;
  5440. case "studentStudy":
  5441. _formdiv = new U.UF.UI.form(
  5442. "课程中心",
  5443. $$("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
  5444. "id": "studentStudy",
  5445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. _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); } }
  5451. break;
  5452. case "mindNetwork": //好友打开
  5453. _formdiv = new U.UF.UI.form(
  5454. "思维网格",
  5455. $$("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 }), {
  5456. "id": "mindNetwork",
  5457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. _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); } }
  5463. break;
  5464. case "studentClassRoom": //好友打开
  5465. _formdiv = new U.UF.UI.form(
  5466. "实时课堂",
  5467. $$("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 }), {
  5468. "id": "studentClassRoom",
  5469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. _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); } }
  5475. setTimeout(() => {
  5476. U.UF.F.windowZooming(_formdiv)
  5477. }, 0);
  5478. break;
  5479. }
  5480. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5481. //选择应用处理
  5482. switch (str) {
  5483. case "project": //好友打开
  5484. _formdiv = new U.UF.UI.form(
  5485. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5486. $$("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 }), {
  5487. "id": "project",
  5488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5489. "onresize": function () { }
  5490. }, {
  5491. closecallback: function () { }
  5492. }, { "style": { "height": "36px" } }).form; //创建窗体
  5493. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5494. break;
  5495. case "student":
  5496. _formdiv = new U.UF.UI.form(
  5497. "学生管理",
  5498. $$("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 }), {
  5499. "id": "student",
  5500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5501. "onresize": function () { }
  5502. }, {
  5503. closecallback: function () { }
  5504. }, { "style": { "height": "36px" } }).form; //创建窗体
  5505. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5506. break;
  5507. case "evaluate":
  5508. _formdiv = new U.UF.UI.form(
  5509. "学生评价",
  5510. $$("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 }), {
  5511. "id": "evaluate",
  5512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5513. "onresize": function () { }
  5514. }, {
  5515. closecallback: function () { }
  5516. }, { "style": { "height": "36px" } }).form; //创建窗体
  5517. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5518. break;
  5519. case "sys":
  5520. _formdiv = new U.UF.UI.form(
  5521. "目标管理",
  5522. $$("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 }), {
  5523. "id": "sys",
  5524. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5525. "onresize": function () { }
  5526. }, {
  5527. closecallback: function () { }
  5528. }, { "style": { "height": "36px" } }).form; //创建窗体
  5529. _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); } }
  5530. break;
  5531. case "courseDesign":
  5532. _formdiv = new U.UF.UI.form(
  5533. "项目设计",
  5534. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5535. "id": "courseDesign",
  5536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5537. "onresize": function () { }
  5538. }, {
  5539. closecallback: function () { }
  5540. }, { "style": { "height": "36px" } }).form; //创建窗体
  5541. _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); } }
  5542. break;
  5543. case "program":
  5544. _formdiv = new U.UF.UI.form(
  5545. "编程平台",
  5546. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5547. "id": "program",
  5548. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5549. "onresize": function () { }
  5550. }, {
  5551. closecallback: function () { }
  5552. }, { "style": { "height": "36px" } }).form; //创建窗体
  5553. _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); } }
  5554. break;
  5555. case "class":
  5556. _formdiv = new U.UF.UI.form(
  5557. "班级管理",
  5558. $$("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 }), {
  5559. "id": "class",
  5560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5561. "onresize": function () { }
  5562. }, {
  5563. closecallback: function () { }
  5564. }, { "style": { "height": "36px" } }).form; //创建窗体
  5565. _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); } }
  5566. break;
  5567. case "Grade":
  5568. _formdiv = new U.UF.UI.form(
  5569. "年级管理",
  5570. $$("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 }), {
  5571. "id": "Grade",
  5572. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5573. "onresize": function () { }
  5574. }, {
  5575. closecallback: function () { }
  5576. }, { "style": { "height": "36px" } }).form; //创建窗体
  5577. _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); } }
  5578. break;
  5579. case "teacherOffice":
  5580. _formdiv = new U.UF.UI.form(
  5581. "教研室",
  5582. $$("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 }), {
  5583. "id": "teacherOffice",
  5584. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5585. "onresize": function () { }
  5586. }, {
  5587. closecallback: function () { }
  5588. }, { "style": { "height": "36px" } }).form; //创建窗体
  5589. _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); } }
  5590. break;
  5591. case "my":
  5592. _formdiv = new U.UF.UI.form(
  5593. "我的资料",
  5594. $$("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 }), {
  5595. "id": "my",
  5596. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5597. "onresize": function () { }
  5598. }, {
  5599. closecallback: function () { }
  5600. }, { "style": { "height": "36px" } }).form; //创建窗体
  5601. _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); } }
  5602. break;
  5603. case "notice":
  5604. _formdiv = new U.UF.UI.form(
  5605. "通知公告",
  5606. $$("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 }), {
  5607. "id": "notice",
  5608. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5609. "onresize": function () { }
  5610. }, {
  5611. closecallback: function () { }
  5612. }, { "style": { "height": "36px" } }).form; //创建窗体
  5613. _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); } }
  5614. break;
  5615. case "library":
  5616. _formdiv = new U.UF.UI.form(
  5617. "素材库",
  5618. $$("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 }), {
  5619. "id": "library",
  5620. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5621. "onresize": function () { }
  5622. }, {
  5623. closecallback: function () { }
  5624. }, { "style": { "height": "36px" } }).form; //创建窗体
  5625. _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); } }
  5626. break;
  5627. case "whiteboard":
  5628. _formdiv = new U.UF.UI.form(
  5629. "电子白板",
  5630. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5631. "id": "whiteboard",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _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); } }
  5638. break;
  5639. case "investigation":
  5640. _formdiv = new U.UF.UI.form(
  5641. "问卷调查",
  5642. $$("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 }), {
  5643. "id": "investigation",
  5644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _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); } }
  5650. break;
  5651. case "note":
  5652. _formdiv = new U.UF.UI.form(
  5653. "便签分类",
  5654. $$("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 }), {
  5655. "id": "note",
  5656. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _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); } }
  5662. break;
  5663. // case "score":
  5664. // _formdiv = new U.UF.UI.form(
  5665. // "量规评分",
  5666. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5667. // "id": "score",
  5668. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. // "onresize": function() {}
  5670. // }, {
  5671. // closecallback: function() {}
  5672. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. // _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); } }
  5674. // break;
  5675. case "mind":
  5676. _formdiv = new U.UF.UI.form(
  5677. "思维导图",
  5678. $$("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"
  5679. "id": "mind",
  5680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. case "doc":
  5688. // U.MD.D.I.isRoom();
  5689. _formdiv = new U.UF.UI.form(
  5690. "协同文档",
  5691. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5692. "id": "doc",
  5693. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5694. "onresize": function () { }
  5695. }, {
  5696. closecallback: function () { }
  5697. }, { "style": { "height": "36px" } }).form; //创建窗体
  5698. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5699. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5700. })
  5701. _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); } }
  5702. break;
  5703. case "study":
  5704. _formdiv = new U.UF.UI.form(
  5705. "课程中心",
  5706. $$("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
  5707. "id": "study",
  5708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5709. "onresize": function () { }
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _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); } }
  5714. break;
  5715. case "mindNetwork": //好友打开
  5716. _formdiv = new U.UF.UI.form(
  5717. "思维网格",
  5718. $$("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 }), {
  5719. "id": "mindNetwork",
  5720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. _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); } }
  5726. break;
  5727. case "train": //好友打开
  5728. _formdiv = new U.UF.UI.form(
  5729. "训练平台",
  5730. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5731. "id": "mindNetwork",
  5732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _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); } }
  5738. break;
  5739. case "teacherClassRoom": //好友打开
  5740. _formdiv = new U.UF.UI.form(
  5741. "实时课堂",
  5742. $$("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 }), {
  5743. "id": "teacherClassRoom",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5750. setTimeout(() => {
  5751. U.UF.F.windowZooming(_formdiv)
  5752. }, 0);
  5753. break;
  5754. }
  5755. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5756. switch (str) {
  5757. case "project": //好友打开
  5758. _formdiv = new U.UF.UI.form(
  5759. "课程管理",
  5760. $$("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 }), {
  5761. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5768. break;
  5769. case "evaluate":
  5770. _formdiv = new U.UF.UI.form(
  5771. "学生评价",
  5772. $$("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 }), {
  5773. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5780. break;
  5781. case "notice":
  5782. _formdiv = new U.UF.UI.form(
  5783. "通知公告",
  5784. $$("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 }), {
  5785. "id": "notice",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. case "stuLibrary":
  5794. _formdiv = new U.UF.UI.form(
  5795. "学习资料",
  5796. $$("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 }), {
  5797. "id": "stuLibrary",
  5798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5799. "onresize": function () { }
  5800. }, {
  5801. closecallback: function () { }
  5802. }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. _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); } }
  5804. break;
  5805. case "program":
  5806. _formdiv = new U.UF.UI.form(
  5807. "编程平台",
  5808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5809. "id": "program",
  5810. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "whiteboard":
  5818. _formdiv = new U.UF.UI.form(
  5819. "电子白板",
  5820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5821. "id": "whiteboard",
  5822. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. case "investigation":
  5830. _formdiv = new U.UF.UI.form(
  5831. "问卷调查",
  5832. $$("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 }), {
  5833. "id": "investigation",
  5834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. _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); } }
  5840. break;
  5841. case "mind":
  5842. _formdiv = new U.UF.UI.form(
  5843. "思维导图",
  5844. $$("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"
  5845. "id": "mind",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. _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); } }
  5852. break;
  5853. case "doc":
  5854. // U.MD.D.I.isRoom();
  5855. _formdiv = new U.UF.UI.form(
  5856. "协同文档",
  5857. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5858. "id": "doc",
  5859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5865. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5866. })
  5867. _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); } }
  5868. break;
  5869. case "study":
  5870. _formdiv = new U.UF.UI.form(
  5871. "课程中心",
  5872. $$("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
  5873. "id": "study",
  5874. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5875. "onresize": function () { }
  5876. }, {
  5877. closecallback: function () { }
  5878. }, { "style": { "height": "36px" } }).form; //创建窗体
  5879. _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); } }
  5880. break;
  5881. case "mindNetwork": //好友打开
  5882. _formdiv = new U.UF.UI.form(
  5883. "思维网格",
  5884. $$("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 }), {
  5885. "id": "mindNetwork",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. _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); } }
  5892. break;
  5893. case "train": //好友打开
  5894. _formdiv = new U.UF.UI.form(
  5895. "训练平台",
  5896. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5897. "id": "train",
  5898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _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); } }
  5904. break;
  5905. case "sys":
  5906. _formdiv = new U.UF.UI.form(
  5907. "目标管理",
  5908. $$("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 }), {
  5909. "id": "sys",
  5910. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5911. "onresize": function () { }
  5912. }, {
  5913. closecallback: function () { }
  5914. }, { "style": { "height": "36px" } }).form; //创建窗体
  5915. _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); } }
  5916. break;
  5917. case "courseDesign":
  5918. _formdiv = new U.UF.UI.form(
  5919. "项目设计",
  5920. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5921. "id": "courseDesign",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. }
  5930. } else if (!_type) {
  5931. switch (str) {
  5932. case "my":
  5933. _formdiv = new U.UF.UI.form(
  5934. "我的资料",
  5935. $$("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 }), {
  5936. "id": "my",
  5937. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. }
  5945. }
  5946. switch (str) {
  5947. // AIprogram2 AI体验 aihub.cocorobo.cn
  5948. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5949. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5950. case "formulaEdi": //公式编辑
  5951. _formdiv = new U.UF.UI.form(
  5952. "公式编辑",
  5953. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5954. "id": "formulaEdi",
  5955. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. case "molStr": //分子结构
  5963. _formdiv = new U.UF.UI.form(
  5964. "分子结构",
  5965. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5966. "id": "molStr",
  5967. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //创建窗体
  5972. _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); } }
  5973. break;
  5974. case "timeAxis": //时间轴
  5975. _formdiv = new U.UF.UI.form(
  5976. "时间轴",
  5977. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5978. "id": "timeAxis",
  5979. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _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); } }
  5985. break;
  5986. case "AIprogram2": //AI体验
  5987. _formdiv = new U.UF.UI.form(
  5988. "AI体验",
  5989. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5990. "id": "AIprogram2",
  5991. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _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); } }
  5997. break;
  5998. case "Pythonprogram": //python编程
  5999. _formdiv = new U.UF.UI.form(
  6000. "Python编程",
  6001. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6002. "id": "Pythonprogram",
  6003. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "AIprogram": //ai编程
  6011. _formdiv = new U.UF.UI.form(
  6012. "AI编程平台",
  6013. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6014. "id": "AIprogram",
  6015. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. case "CocoPi": //CocoPi
  6023. _formdiv = new U.UF.UI.form(
  6024. "CocoPi",
  6025. $$("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" }), {
  6026. "id": "CocoPi",
  6027. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _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); } }
  6033. break;
  6034. case "Wood": //Wood
  6035. _formdiv = new U.UF.UI.form(
  6036. "海龟编程",
  6037. $$("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/" }), {
  6038. "id": "Wood",
  6039. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "car": //模拟驾驶
  6047. _formdiv = new U.UF.UI.form(
  6048. "模拟驾驶",
  6049. $$("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/" }), {
  6050. "id": "car",
  6051. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _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); } }
  6057. break;
  6058. case "lineSearch": //路径搜索
  6059. _formdiv = new U.UF.UI.form(
  6060. "路径搜索",
  6061. $$("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/" }), {
  6062. "id": "lineSearch",
  6063. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _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); } }
  6069. break;
  6070. case "deepLearning": //深度学习
  6071. _formdiv = new U.UF.UI.form(
  6072. "深度学习",
  6073. $$("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/#" }), {
  6074. "id": "deepLearning",
  6075. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "allHistory": //深度学习
  6083. _formdiv = new U.UF.UI.form(
  6084. "全历史",
  6085. $$("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/" }), {
  6086. "id": "allHistory",
  6087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "chatPDF": //ai编程
  6095. _formdiv = new U.UF.UI.form(
  6096. "chatPDF",
  6097. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6098. "id": "chatPDF",
  6099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "resources": //国家教育
  6107. _formdiv = new U.UF.UI.form(
  6108. "国家教育",
  6109. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6110. "id": "resources",
  6111. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "codeEdit": //源码编辑
  6119. _formdiv = new U.UF.UI.form(
  6120. "源码编辑",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6122. "id": "codeEdit",
  6123. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break; //
  6130. case "MindMap": //MindMap
  6131. _formdiv = new U.UF.UI.form(
  6132. "MindMap",
  6133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6134. "id": "MindMap",
  6135. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "netWorkPanel": //netWorkPanel
  6143. _formdiv = new U.UF.UI.form(
  6144. "netWorkPanel",
  6145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6146. "id": "netWorkPanel",
  6147. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. case "GeoGebra": //GeoGebra
  6155. _formdiv = new U.UF.UI.form(
  6156. "GeoGebra",
  6157. $$("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" }), {
  6158. "id": "GeoGebra",
  6159. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. case "translation": //翻译
  6167. _formdiv = new U.UF.UI.form(
  6168. "翻译",
  6169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6170. "id": "translation",
  6171. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "mohe": //魔盒
  6179. _formdiv = new U.UF.UI.form(
  6180. "魔盒识字",
  6181. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6182. "id": "mohe",
  6183. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. case "24game": //24点
  6191. _formdiv = new U.UF.UI.form(
  6192. "24点",
  6193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6194. "id": "24game",
  6195. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6196. "onresize": function () { }
  6197. }, {
  6198. closecallback: function () { }
  6199. }, { "style": { "height": "36px" } }).form; //创建窗体
  6200. _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); } }
  6201. break;
  6202. case "case":
  6203. _formdiv = new U.UF.UI.form(
  6204. "课程进展",
  6205. $$("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 }), {
  6206. "id": "case",
  6207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6208. "onresize": function () { }
  6209. }, {
  6210. closecallback: function () { }
  6211. }, { "style": { "height": "36px" } }).form; //创建窗体
  6212. _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); } }
  6213. break;
  6214. case "snf":
  6215. _formdiv = new U.UF.UI.form(
  6216. "赛诺梵",
  6217. $$("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" }), {
  6218. "id": "snf",
  6219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6220. "onresize": function () { }
  6221. }, {
  6222. closecallback: function () { }
  6223. }, { "style": { "height": "36px" } }).form; //创建窗体
  6224. _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); } }
  6225. break;
  6226. case "hanFamily":
  6227. _formdiv = new U.UF.UI.form(
  6228. "汉字家族",
  6229. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6230. "id": "hanFamily",
  6231. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6232. "onresize": function () { }
  6233. }, {
  6234. closecallback: function () { }
  6235. }, { "style": { "height": "36px" } }).form; //创建窗体
  6236. _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); } }
  6237. break;
  6238. case "hanClassics":
  6239. _formdiv = new U.UF.UI.form(
  6240. "国学经典",
  6241. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6242. "id": "hanClassics",
  6243. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6244. "onresize": function () { }
  6245. }, {
  6246. closecallback: function () { }
  6247. }, { "style": { "height": "36px" } }).form; //创建窗体
  6248. _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); } }
  6249. break;
  6250. case "hanTraining":
  6251. _formdiv = new U.UF.UI.form(
  6252. "笔画训练",
  6253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6254. "id": "hanTraining",
  6255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6256. "onresize": function () { }
  6257. }, {
  6258. closecallback: function () { }
  6259. }, { "style": { "height": "36px" } }).form; //创建窗体
  6260. _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); } }
  6261. break;
  6262. case "hanClass":
  6263. _formdiv = new U.UF.UI.form(
  6264. "书法课堂",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6266. "id": "hanClass",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. _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); } }
  6273. break;
  6274. case "han":
  6275. _formdiv = new U.UF.UI.form(
  6276. "汉字宫",
  6277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6278. "id": "han",
  6279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6280. "onresize": function () { }
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _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); } }
  6285. break;
  6286. case "projectGM": //课程管理
  6287. _formdiv = new U.UF.UI.form(
  6288. "课程管理",
  6289. $$("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 }), {
  6290. "id": "projectGM",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _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); } }
  6297. break;
  6298. case "studyGM": //课程中心
  6299. _formdiv = new U.UF.UI.form(
  6300. "课程中心",
  6301. $$("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
  6302. "id": "study",
  6303. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. // studentGM
  6311. case "studentGM": //学生管理
  6312. _formdiv = new U.UF.UI.form(
  6313. "学生管理",
  6314. $$("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 }), {
  6315. "id": "studentGM",
  6316. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. break;
  6323. case "evaluateGM": //学生评价
  6324. _formdiv = new U.UF.UI.form(
  6325. "学生评价",
  6326. $$("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 }), {
  6327. "id": "evaluateGM",
  6328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. // classGM
  6336. case "classGM": //班级管理
  6337. _formdiv = new U.UF.UI.form(
  6338. "班级管理",
  6339. $$("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 }), {
  6340. "id": "classGM",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _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); } }
  6347. break;
  6348. // dataGM
  6349. case "dataGM":
  6350. _formdiv = new U.UF.UI.form(
  6351. "我的资料",
  6352. $$("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 }), {
  6353. "id": "dataGM",
  6354. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. // caseGM
  6362. case "caseGM": //课程进展
  6363. _formdiv = new U.UF.UI.form(
  6364. "课程进展",
  6365. $$("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 }), {
  6366. "id": "caseGM",
  6367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. _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); } }
  6373. break;
  6374. // meterialGM
  6375. case "meterialGM": //素材库
  6376. _formdiv = new U.UF.UI.form(
  6377. "素材库",
  6378. $$("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 }), {
  6379. "id": "meterialGM",
  6380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _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); } }
  6386. break;
  6387. // evaluateSGM
  6388. case "evaluateSGM": //我的评价
  6389. _formdiv = new U.UF.UI.form(
  6390. "我的评价",
  6391. $$("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 }), {
  6392. "id": "evaluateSGM",
  6393. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "jupyter": //jupyter
  6401. _formdiv = new U.UF.UI.form(
  6402. "jupyter",
  6403. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6404. "id": "jupyter",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "number": //数字实验室
  6413. _formdiv = new U.UF.UI.form(
  6414. "数字实验室",
  6415. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6416. "id": "number",
  6417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "studentCourse": //项目管理 学生
  6425. _formdiv = new U.UF.UI.form(
  6426. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6427. $$("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 }), {
  6428. "id": "studentCourse",
  6429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. case "studentCourseS": //项目管理 老师
  6437. _formdiv = new U.UF.UI.form(
  6438. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6439. $$("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 }), {
  6440. "id": "studentCourseS",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _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); } }
  6447. break;
  6448. case "studentIndex": //项目中心
  6449. _formdiv = new U.UF.UI.form(
  6450. "项目中心",
  6451. $$("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 }), {
  6452. "id": "studentIndex",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _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); } }
  6459. break;
  6460. case "CaseDesignS":
  6461. _formdiv = new U.UF.UI.form(
  6462. "项目进展",
  6463. $$("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 }), {
  6464. "id": "case",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. break;
  6472. case "tcStudent": //腾讯学生管理
  6473. _formdiv = new U.UF.UI.form(
  6474. "学生管理",
  6475. $$("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 }), {
  6476. "id": "tcStudent",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. break;
  6484. case "tcSchool": //腾讯学校管理
  6485. _formdiv = new U.UF.UI.form(
  6486. "学校管理",
  6487. $$("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 }), {
  6488. "id": "tcSchool",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. _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); } }
  6495. break;
  6496. case "tcTeacher": //腾讯学校管理
  6497. _formdiv = new U.UF.UI.form(
  6498. "教师管理",
  6499. $$("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 }), {
  6500. "id": "tcTeacher",
  6501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _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); } }
  6507. break;
  6508. case "teacher":
  6509. _formdiv = new U.UF.UI.form(
  6510. "教师管理",
  6511. $$("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 }), {
  6512. "id": "teacher",
  6513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _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); } }
  6519. break;
  6520. case "tcData": //腾讯我的资料
  6521. _formdiv = new U.UF.UI.form(
  6522. "我的资料",
  6523. $$("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 }), {
  6524. "id": "tcData",
  6525. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "tcNotice": //腾讯消息通知
  6533. _formdiv = new U.UF.UI.form(
  6534. "消息通知",
  6535. $$("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 }), {
  6536. "id": "tcNotice",
  6537. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () { }
  6541. }, { "style": { "height": "36px" } }).form; //创建窗体
  6542. _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); } }
  6543. break;
  6544. case "myReport": //好友打开
  6545. _formdiv = new U.UF.UI.form(
  6546. "我的评价",
  6547. $$("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 }), {
  6548. "id": "myReport",
  6549. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6550. "onresize": function () { }
  6551. }, {
  6552. closecallback: function () { }
  6553. }, { "style": { "height": "36px" } }).form; //创建窗体
  6554. _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); } }
  6555. break;
  6556. case "learnAna": //好友打开
  6557. _formdiv = new U.UF.UI.form(
  6558. "学习分析",
  6559. $$("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 }), {
  6560. "id": "learnAna",
  6561. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6562. "onresize": function () { }
  6563. }, {
  6564. closecallback: function () { }
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "AIChat": //AI共创
  6569. _formdiv = new U.UF.UI.form(
  6570. "AI共创",
  6571. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6572. "id": "AIChat",
  6573. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. istop: true,
  6577. closecallback: function () { $("#aichat_icon").remove(); },
  6578. narrowcallback: function () {
  6579. if (!$("#aichat_icon")[0]) {
  6580. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6581. }
  6582. },
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "ainew": //AI共创
  6587. _formdiv = new U.UF.UI.form(
  6588. "AI协同",
  6589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6590. "id": "ainew",
  6591. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. _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); } }
  6597. break;
  6598. case "gpt4": //gpt4
  6599. _formdiv = new U.UF.UI.form(
  6600. "AI助手",
  6601. $$("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 }), {
  6602. "id": "gpt4",
  6603. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6604. "onresize": function () { }
  6605. }, {
  6606. closecallback: function () { }
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "aigpt": //gpt4
  6611. _formdiv = new U.UF.UI.form(
  6612. "AI助手+",
  6613. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6614. "id": "aigpt",
  6615. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () {
  6619. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6620. }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6624. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6625. })
  6626. break;
  6627. case "aiKnowledge": //aiKnowledge
  6628. _formdiv = new U.UF.UI.form(
  6629. "知识建构",
  6630. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6631. "id": "aiKnowledge",
  6632. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, { "style": { "height": "36px" } }).form; //创建窗体
  6637. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6638. break;
  6639. case "futureClass": //AI共创
  6640. _formdiv = new U.UF.UI.form(
  6641. "协同建构",
  6642. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6643. "id": "synergyCourse",
  6644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () {
  6648. $("iframe", _formdiv)[0].contentWindow.loginout();
  6649. }
  6650. }, { "style": { "height": "36px" } }).form; //创建窗体
  6651. _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); } }
  6652. break;
  6653. case "aiagent": //ai agent
  6654. _formdiv = new U.UF.UI.form(
  6655. "AI Agent",
  6656. $$("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" }), {
  6657. "id": "AIAgent",
  6658. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _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); } }
  6664. break;
  6665. case "dataBoard": //数据看板
  6666. _formdiv = new U.UF.UI.form(
  6667. "数据看板",
  6668. $$("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 }), {
  6669. "id": "dataBoard",
  6670. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. break;
  6677. case "dataBoardSies": //数据融合
  6678. _formdiv = new U.UF.UI.form(
  6679. "数据融合",
  6680. $$("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 }), {
  6681. "id": "dataBoardSies",
  6682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _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); } }
  6688. break;
  6689. case "dataBoardNew": //数据看板
  6690. _formdiv = new U.UF.UI.form(
  6691. "综合看板",
  6692. $$("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 }), {
  6693. "id": "dataBoardNew",
  6694. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //创建窗体
  6699. _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); } }
  6700. break;
  6701. case "dataBoardTest": //数据看板
  6702. _formdiv = new U.UF.UI.form(
  6703. "评测看板",
  6704. $$("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 }), {
  6705. "id": "dataBoardTest",
  6706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _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); } }
  6712. break;
  6713. case "AIAnalyse": //AI共创
  6714. _formdiv = new U.UF.UI.form(
  6715. "AI分析",
  6716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6717. "id": "AIAnalyse",
  6718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _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); } }
  6724. break;
  6725. case "studioCourse": //AI共创
  6726. _formdiv = new U.UF.UI.form(
  6727. "工作管理",
  6728. $$("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 }), {
  6729. "id": "studioCourse",
  6730. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, { "style": { "height": "36px" } }).form; //创建窗体
  6735. _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); } }
  6736. break;
  6737. case "studioIndex": //AI共创
  6738. _formdiv = new U.UF.UI.form(
  6739. "工作中心",
  6740. $$("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 }), {
  6741. "id": "studioIndex",
  6742. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6743. "onresize": function () { }
  6744. }, {
  6745. closecallback: function () { }
  6746. }, { "style": { "height": "36px" } }).form; //创建窗体
  6747. _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); } }
  6748. break;
  6749. case "source":
  6750. _formdiv = new U.UF.UI.form(
  6751. "教学资源",
  6752. $$("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 }), {
  6753. "id": "source",
  6754. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6755. "onresize": function () { }
  6756. }, {
  6757. closecallback: function () { }
  6758. }, { "style": { "height": "36px" } }).form; //创建窗体
  6759. _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); } }
  6760. break;
  6761. case "testTeacher":
  6762. _formdiv = new U.UF.UI.form(
  6763. "教师管理",
  6764. $$("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 }), {
  6765. "id": "testTeacher",
  6766. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6767. "onresize": function () { }
  6768. }, {
  6769. closecallback: function () { }
  6770. }, { "style": { "height": "36px" } }).form; //创建窗体
  6771. _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); } }
  6772. break;
  6773. case "testStudent":
  6774. _formdiv = new U.UF.UI.form(
  6775. "教师中心",
  6776. $$("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 }), {
  6777. "id": "testStudent",
  6778. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. case "testTeacherSies":
  6786. _formdiv = new U.UF.UI.form(
  6787. "教师管理",
  6788. $$("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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6789. "id": "testTeacherSies",
  6790. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _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); } }
  6796. break;
  6797. case "testStudentSies":
  6798. _formdiv = new U.UF.UI.form(
  6799. "教师中心",
  6800. $$("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 }), {
  6801. "id": "testStudentSies",
  6802. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _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); } }
  6808. break;
  6809. case "ytpbl": //消息通知
  6810. _formdiv = new U.UF.UI.form(
  6811. "案例征集",
  6812. $$("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 }), {
  6813. "id": "ytpbl",
  6814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. // 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");
  6821. break;
  6822. case "aiCourseResource": //人工智能窗体
  6823. _formdiv = new U.UF.UI.form(
  6824. false,
  6825. $$("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 }), {
  6826. "id": "aiCourseResource",
  6827. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6828. "onresize": function () { },
  6829. "isdrag": false,
  6830. }, {
  6831. closecallback: function () { }
  6832. }, { "style": { "height": "36px" } }).form; //创建窗体
  6833. _taskbar = ''
  6834. break;
  6835. case "szdjgCocooroboX": //图形化编程
  6836. _formdiv = new U.UF.UI.form(
  6837. "图形化编程",
  6838. $$("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" }), {
  6839. "id": "szdjgCocooroboX",
  6840. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6841. "onresize": function () { }
  6842. }, {
  6843. closecallback: function () { }
  6844. }, { "style": { "height": "36px" } }).form; //创建窗体
  6845. _taskbar = ''
  6846. break;
  6847. case "szdjgPython": //python编程
  6848. _formdiv = new U.UF.UI.form(
  6849. "Python编程",
  6850. $$("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" }), {
  6851. "id": "szdjgPython",
  6852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6853. "onresize": function () { }
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //创建窗体
  6857. _taskbar = ''
  6858. break;
  6859. case "Record":
  6860. _formdiv = new U.UF.UI.form(
  6861. "观察记录",
  6862. $$("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 }), {
  6863. "id": "Record",
  6864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //创建窗体
  6869. _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); } }
  6870. break;
  6871. case "aigptCourse":
  6872. _formdiv = new U.UF.UI.form(
  6873. "AI智能体",
  6874. $$("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' }), {
  6875. "id": "aigptCourse",
  6876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () { }
  6880. }, { "style": { "height": "36px" } }).form; //创建窗体
  6881. _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); } }
  6882. break;
  6883. case "classroomObservation":
  6884. _formdiv = new U.UF.UI.form(
  6885. "课堂观察",
  6886. $$("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 }), {
  6887. "id": "classroomObservation",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _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); } }
  6894. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6895. break;
  6896. case "pblCourse":
  6897. _formdiv = new U.UF.UI.form(
  6898. "学生PBL",
  6899. $$("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 }), {
  6900. "id": "pblCourse",
  6901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6902. "onresize": function () { }
  6903. }, {
  6904. closecallback: function () { }
  6905. }, { "style": { "height": "36px" } }).form; //创建窗体
  6906. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6907. break;
  6908. case "appStore":
  6909. _formdiv = new U.UF.UI.form(
  6910. "应用中心",
  6911. $$("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/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6912. "id": "pblCourse",
  6913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6919. break;
  6920. }
  6921. //U.MD.D.I.openClick(str);
  6922. //如果有任务栏信息
  6923. if (_taskbar) {
  6924. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6925. }
  6926. }
  6927. // U.MD.D.I.openClick = function(str){
  6928. // var click = '';
  6929. // switch(str){
  6930. // case 'friend':
  6931. // click = '我的好友';
  6932. // break;
  6933. // case 'domain':
  6934. // click = '域名管理';
  6935. // break;
  6936. // case 'disk':
  6937. // click = '我的云盘';
  6938. // break;
  6939. // case 'word':
  6940. // click = 'Word';
  6941. // break;
  6942. // case 'excel':
  6943. // click = 'Execl';
  6944. // break;
  6945. // case 'txt':
  6946. // click = '文本文件';
  6947. // break;
  6948. // case 'lookupFriend':
  6949. // click = '查找好友';
  6950. // break;
  6951. // case 'ftp':
  6952. // click = 'FTP';
  6953. // break;
  6954. // case 'group':
  6955. // click = '群组';
  6956. // break;
  6957. // case 'set':
  6958. // click = '我的设置';
  6959. // break;
  6960. // case 'systemSet':
  6961. // click = '系统设置';
  6962. // break;
  6963. // case 'boomYun':
  6964. // click = '互联办公';
  6965. // break;
  6966. // case 'xz':
  6967. // click = '云端下载';
  6968. // break;
  6969. // case 'client':
  6970. // click = '有思浏览器';
  6971. // break;
  6972. // case 'backEndProgramming':
  6973. // click = '在线后台编程';
  6974. // break;
  6975. // case 'frontEndProgramming':
  6976. // click = '在线前端编程';
  6977. // break;
  6978. // default: break;
  6979. // }
  6980. // if(U.MD.D.I.Ip && click){
  6981. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6982. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6983. // })
  6984. // }
  6985. // }
  6986. /**
  6987. *函数作用:ajax简易函数,使用post格式
  6988. *@param url {data} 后台地址
  6989. *@param data {data} 参数json
  6990. *@param fn {data} 回调函数
  6991. *
  6992. */
  6993. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6994. // var xhr = new XMLHttpRequest();
  6995. // xhr.open("GET",url,true);
  6996. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6997. // xhr.onreadystatechange = function(){
  6998. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6999. // fn.call(this,xhr.responseText);
  7000. // }
  7001. // };
  7002. // xhr.send();
  7003. // }
  7004. /*判断是否是内网IP*/
  7005. // U.MD.D.I.isInnerIPFn = function(str){
  7006. // var curPageUrl = str;
  7007. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7008. // curPageUrl =curPageUrl.replace(reg1,'');
  7009. // // console.log('curPageUrl-1 '+curPageUrl);
  7010. // var reg2 = /\:+/g;//替换冒号为一点
  7011. // curPageUrl =curPageUrl.replace(reg2,'.');
  7012. // // console.log('curPageUrl-2 '+curPageUrl);
  7013. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7014. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7015. // if(curPageUrl[2] != '16'){
  7016. // return ipAddress;
  7017. // }else{
  7018. // return false;
  7019. // }
  7020. // }
  7021. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7022. // //compatibility for firefox and chrome
  7023. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7024. // var pc = new myPeerConnection({
  7025. // iceServers: []
  7026. // }),
  7027. // noop = function() {},
  7028. // localIPs = {},
  7029. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7030. // key;
  7031. // function iterateIP(ip) {
  7032. // if (!localIPs[ip]) onNewIP(ip);
  7033. // localIPs[ip] = true;
  7034. // }
  7035. // //create a bogus data channel
  7036. // pc.createDataChannel("");
  7037. // // create offer and set local description
  7038. // pc.createOffer().then(function(sdp) {
  7039. // sdp.sdp.split('\n').forEach(function(line) {
  7040. // if (line.indexOf('candidate') < 0) return;
  7041. // line.match(ipRegex).forEach(iterateIP);
  7042. // });
  7043. // pc.setLocalDescription(sdp, noop, noop);
  7044. // }).catch(function(reason) {
  7045. // // An error occurred, so handle the failure to connect
  7046. // });
  7047. // //sten for candidate events
  7048. // pc.onicecandidate = function(ice) {
  7049. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7050. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7051. // };
  7052. // }
  7053. // U.MD.D.I.getUserIpBool = function(callback){
  7054. // U.MD.D.I.getUserIP(function(ip){
  7055. // alert("Got IP! :" + ip);
  7056. // });
  7057. //}
  7058. //#endregion
  7059. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7060. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7061. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7062. _userinfo = US.userInfo, //登录用户信息
  7063. _userid = US.userInfo.userid //登录用户id
  7064. let _iframe;
  7065. let _cid = cid,
  7066. _stage = stage,
  7067. _task = task,
  7068. _tool = tool;
  7069. var _jie = $$("div", {
  7070. "style": {
  7071. "position": "absolute",
  7072. "bottom": "50px",
  7073. "right": "50px",
  7074. "zIndex": "9999",
  7075. "backgroundColor": "#2268bc",
  7076. "color": "#fff",
  7077. "padding": "12px 20px",
  7078. "cursor": "pointer",
  7079. "borderRadius": "4px",
  7080. },
  7081. "innerHTML": "提交作业"
  7082. })
  7083. let aTool = ''
  7084. let _loading = document.createElement('div')
  7085. _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;"
  7086. // _loading.id = "";
  7087. let _lchild = document.createElement('div')
  7088. let _limg = document.createElement('img')
  7089. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7090. _limg.style = "width: 26px;margin-right: 10px;"
  7091. _lchild.appendChild(_limg)
  7092. let _lspan = document.createElement('span')
  7093. _lspan.innerHTML = "上传中..."
  7094. _lchild.appendChild(_lspan)
  7095. _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%);"
  7096. _loading.appendChild(_lchild)
  7097. var _box = $$('div', {
  7098. "style": {
  7099. "position": "relative",
  7100. "width": "100%",
  7101. "height": "100%",
  7102. },
  7103. })
  7104. _box.appendChild(_loading)
  7105. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7106. switch (str) {
  7107. case "whiteboard":
  7108. aTool = 1;
  7109. _iframe = $$("iframe", {
  7110. "frameborder": "no",
  7111. "border": "0",
  7112. "scrolling ": "no",
  7113. "style": {
  7114. "cssText": "border:0;width:100%;height:100%"
  7115. },
  7116. "src": "https://beta.iwb.cocorobo.cn/"
  7117. })
  7118. _box.appendChild(_iframe);
  7119. _box.appendChild(_jie);
  7120. _formdiv = new U.UF.UI.form(
  7121. "电子白板",
  7122. _box, {
  7123. "id": "whiteboard" + cid + stage + task + tool,
  7124. "style": {
  7125. "width": "90%",
  7126. "height": "90%",
  7127. "overflow": 'hidden'
  7128. },
  7129. "onresize": function () { }
  7130. }, {
  7131. closecallback: function () { }
  7132. }, {
  7133. "style": {
  7134. "height": "36px"
  7135. }
  7136. }).form; //创建窗体
  7137. _taskbar = {
  7138. "id": str + _formdiv.id,
  7139. "style": {
  7140. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7141. },
  7142. "name": "电子白板",
  7143. "forms": _formdiv,
  7144. "click": function () {
  7145. U.MD.D.I.openApplication(str, obj, info);
  7146. }
  7147. }
  7148. break;
  7149. case "mind":
  7150. aTool = 3;
  7151. _iframe = $$("iframe", {
  7152. "frameborder": "no",
  7153. "border": "0",
  7154. "scrolling ": "no",
  7155. "style": {
  7156. "cssText": "border:0;width:100%;height:100%"
  7157. },
  7158. "src": "/kityminder-editor/dist/index.html"
  7159. })
  7160. _box.appendChild(_iframe);
  7161. _box.appendChild(_jie);
  7162. _formdiv = new U.UF.UI.form(
  7163. "思维导图",
  7164. _box, { //"/jsmind/example/demo.html"
  7165. "id": "mind" + cid + stage + task + tool,
  7166. "style": {
  7167. "width": "90%",
  7168. "height": "90%",
  7169. "overflow": 'hidden'
  7170. },
  7171. "onresize": function () { }
  7172. }, {
  7173. closecallback: function () { }
  7174. }, {
  7175. "style": {
  7176. "height": "36px"
  7177. }
  7178. }).form; //创建窗体
  7179. _taskbar = {
  7180. "id": str + _formdiv.id,
  7181. "style": {
  7182. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7183. },
  7184. "name": "思维导图",
  7185. "forms": _formdiv,
  7186. "click": function () {
  7187. U.MD.D.I.openApplication(str, obj, info);
  7188. }
  7189. }
  7190. break;
  7191. case "MindMap":
  7192. aTool = 3;
  7193. _iframe = $$("iframe", {
  7194. "frameborder": "no",
  7195. "border": "0",
  7196. "scrolling ": "no",
  7197. "style": {
  7198. "cssText": "border:0;width:100%;height:100%"
  7199. },
  7200. "src": "//cloud.cocorobo.cn/mind/"
  7201. })
  7202. _box.appendChild(_iframe);
  7203. _box.appendChild(_jie);
  7204. _formdiv = new U.UF.UI.form(
  7205. "思维导图",
  7206. _box, { //"/jsmind/example/demo.html"
  7207. "id": "mind" + cid + stage + task + tool,
  7208. "style": {
  7209. "width": "90%",
  7210. "height": "90%",
  7211. "overflow": 'hidden'
  7212. },
  7213. "onresize": function () { }
  7214. }, {
  7215. closecallback: function () { }
  7216. }, {
  7217. "style": {
  7218. "height": "36px"
  7219. }
  7220. }).form; //创建窗体
  7221. _taskbar = {
  7222. "id": str + _formdiv.id,
  7223. "style": {
  7224. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7225. },
  7226. "name": "思维导图",
  7227. "forms": _formdiv,
  7228. "click": function () {
  7229. U.MD.D.I.openApplication(str, obj, info);
  7230. }
  7231. }
  7232. break;
  7233. case "doc":
  7234. aTool = 6;
  7235. _iframe = $$("iframe", {
  7236. "frameborder": "no",
  7237. "border": "0",
  7238. "scrolling ": "no",
  7239. "style": {
  7240. "cssText": "border:0;width:100%;height:100%"
  7241. },
  7242. "src": "/Office/Word/WordEditArea.htm"
  7243. })
  7244. _box.appendChild(_iframe);
  7245. _box.appendChild(_jie);
  7246. _formdiv = new U.UF.UI.form(
  7247. "协同文档",
  7248. _box, {
  7249. "id": "doc" + cid + stage + task + tool,
  7250. "style": {
  7251. "width": "90%",
  7252. "height": "90%",
  7253. "overflow": 'hidden'
  7254. },
  7255. "onresize": function () { }
  7256. }, {
  7257. closecallback: function () { }
  7258. }, {
  7259. "style": {
  7260. "height": "36px"
  7261. }
  7262. }).form; //创建窗体
  7263. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7264. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7265. })
  7266. _taskbar = {
  7267. "id": str + _formdiv.id,
  7268. "style": {
  7269. "backgroundImage": "url(/img/icon/doc.png)"
  7270. },
  7271. "name": "协同文档",
  7272. "forms": _formdiv,
  7273. "click": function () {
  7274. U.MD.D.I.openApplication(str, obj, info);
  7275. }
  7276. }
  7277. break;
  7278. case "mindNetwork": //好友打开
  7279. aTool = 7;
  7280. _iframe = $$("iframe", {
  7281. "webkitallowfullscreen": "",
  7282. "mozallowfullscreen": "",
  7283. "allowfullscreen": "",
  7284. "frameborder": "no",
  7285. "border": "0",
  7286. "scrolling ": "no",
  7287. "style": {
  7288. "cssText": "border:0; width:100%; height:100%;"
  7289. },
  7290. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7291. })
  7292. _box.appendChild(_iframe);
  7293. _box.appendChild(_jie);
  7294. _formdiv = new U.UF.UI.form(
  7295. "思维网格",
  7296. _box, {
  7297. "id": "mindNetwork" + cid + stage + task + tool,
  7298. "style": {
  7299. "width": "90%",
  7300. "height": "90%",
  7301. "overflow": 'hidden'
  7302. },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, {
  7307. "style": {
  7308. "height": "36px"
  7309. }
  7310. }).form; //创建窗体
  7311. _taskbar = {
  7312. "id": str + _formdiv.id,
  7313. "style": {
  7314. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7315. },
  7316. "name": "思维网格",
  7317. "forms": _formdiv,
  7318. "click": function () {
  7319. U.MD.D.I.openApplication(str, obj, info);
  7320. }
  7321. }
  7322. break;
  7323. case "courseDesign":
  7324. _iframe = $$("iframe", {
  7325. "webkitallowfullscreen": "",
  7326. "mozallowfullscreen": "",
  7327. "allowfullscreen": "",
  7328. "frameborder": "no",
  7329. "border": "0",
  7330. "scrolling ": "no",
  7331. "style": {
  7332. "cssText": "border:0; width:100%; height:100%;"
  7333. },
  7334. "src": "/course-design-vue"
  7335. })
  7336. _box.appendChild(_iframe);
  7337. _box.appendChild(_jie);
  7338. _formdiv = new U.UF.UI.form(
  7339. "项目设计",
  7340. _box, {
  7341. "id": "courseDesign" + cid + stage + task + tool,
  7342. "style": {
  7343. "width": "90%",
  7344. "height": "90%",
  7345. "overflow": 'hidden'
  7346. },
  7347. "onresize": function () { }
  7348. }, {
  7349. closecallback: function () { }
  7350. }, {
  7351. "style": {
  7352. "height": "36px"
  7353. }
  7354. }).form; //创建窗体
  7355. _taskbar = {
  7356. "id": str + _formdiv.id,
  7357. "style": {
  7358. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7359. },
  7360. "name": "项目设计",
  7361. "forms": _formdiv,
  7362. "click": function () {
  7363. U.MD.D.I.openApplication(str, obj, info);
  7364. }
  7365. }
  7366. break;
  7367. }
  7368. const script1 = document.createElement("script");
  7369. script1.type = "text/javascript";
  7370. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7371. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7372. const script2 = document.createElement("script");
  7373. script2.type = "text/javascript";
  7374. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7375. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7376. const script3 = document.createElement("script");
  7377. script3.type = "text/javascript";
  7378. script3.charset = "UTF-8";
  7379. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7380. const script4 = document.createElement("script");
  7381. script4.type = "text/javascript";
  7382. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7383. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7384. if (_iframe) {
  7385. if (str == 'doc') {
  7386. _iframe = _formdiv.querySelector('iframe')
  7387. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7388. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7389. _iframe.contentWindow.document.body.appendChild(script1);
  7390. _iframe.contentWindow.document.body.appendChild(script2);
  7391. // _iframe.contentWindow.document.body.appendChild(script3);
  7392. _iframe.contentWindow.document.body.appendChild(script4);
  7393. })
  7394. if (onloadListener) {
  7395. _iframe.contentDocument.location.reload()
  7396. } else {
  7397. _iframe.contentDocument.location.reload()
  7398. }
  7399. } else if (str == 'courseDesign') {
  7400. U.UF.DL.iframeLoad(_iframe, function () {
  7401. // _iframe.contentWindow.U.MD.O.W.load();
  7402. // _iframe.contentWindow.document.body.appendChild(script1);
  7403. _iframe.contentWindow.document.body.appendChild(script2);
  7404. _iframe.contentWindow.document.body.appendChild(script4);
  7405. })
  7406. } else if (str == 'mind') {
  7407. _iframe = _formdiv.querySelector('iframe')
  7408. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7409. //
  7410. _iframe.contentWindow.document.body.appendChild(script1);
  7411. _iframe.contentWindow.document.body.appendChild(script2);
  7412. _iframe.contentWindow.document.body.appendChild(script4);
  7413. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7414. })
  7415. if (onloadListener) {
  7416. _iframe.contentDocument.location.reload()
  7417. } else {
  7418. _iframe.contentDocument.location.reload()
  7419. }
  7420. } else if (str == 'whiteboard') {
  7421. _iframe = _formdiv.querySelector('iframe')
  7422. let onloadListener = _iframe.onload = () => {
  7423. _iframe.contentWindow.document.body.appendChild(script1);
  7424. _iframe.contentWindow.document.body.appendChild(script2);
  7425. _iframe.contentWindow.document.body.appendChild(script4);
  7426. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7427. };
  7428. // if (onloadListener) {
  7429. // try {
  7430. // _iframe.src += "?cocorobo="+new Date().getTime()
  7431. // _iframe.contentWindow.document.location.reload()
  7432. // } catch (error) {
  7433. // }
  7434. // } else {
  7435. // _iframe.contentDocument.location.reload()
  7436. // }
  7437. } else {
  7438. _iframe.onload = () => {
  7439. _iframe.contentWindow.document.body.appendChild(script1);
  7440. _iframe.contentWindow.document.body.appendChild(script2);
  7441. // _iframe.contentWindow.document.body.appendChild(script3);
  7442. _iframe.contentWindow.document.body.appendChild(script4);
  7443. };
  7444. }
  7445. _jie.onclick = async () => {
  7446. let text = ''
  7447. if (aTool == 1) {
  7448. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7449. } else if (aTool == 6) {
  7450. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7451. } else if (aTool == 3) {
  7452. text = await U.MD.D.I.getEditorContent(_iframe);
  7453. }
  7454. _loading.style.display = 'flex'
  7455. console.log(_loading);
  7456. var _ajs = _iframe.contentWindow.document.createElement("script");
  7457. _ajs.type = "text/javascript";
  7458. _ajs.innerHTML =
  7459. // 'console.log(' + _loading + ');\n' +
  7460. 'var _js = document.createElement("script");\n' +
  7461. '_js.type="text/javascript";\n' +
  7462. '_js.charset="UTF-8";\n' +
  7463. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7464. "_js.onload = function(){\n" +
  7465. ' var a = document.getElementsByTagName("img")\n' +
  7466. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7467. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7468. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7469. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7470. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7471. "beforeUpload_shishi(file," +
  7472. "'" +
  7473. _userid +
  7474. "'" +
  7475. ", " +
  7476. "'" +
  7477. _cid +
  7478. "'" +
  7479. ", " +
  7480. "'" +
  7481. _stage +
  7482. "'" +
  7483. ", " +
  7484. "'" +
  7485. _task +
  7486. "'" +
  7487. ", " +
  7488. "'" +
  7489. _tool +
  7490. "'" +
  7491. ", " +
  7492. "'" +
  7493. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7494. "'" +
  7495. ", " +
  7496. "'" +
  7497. aTool +
  7498. "'" +
  7499. ", " +
  7500. "`" +
  7501. text +
  7502. "`" +
  7503. ")\n" +
  7504. " });\n" +
  7505. "}\n" +
  7506. "document.head.appendChild(_js);\n";
  7507. _iframe.contentWindow.document.head.appendChild(_ajs);
  7508. }
  7509. }
  7510. //U.MD.D.I.openClick(str);
  7511. //如果有任务栏信息
  7512. // if (_taskbar) {
  7513. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7514. // }
  7515. }
  7516. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7517. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7518. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7519. _userinfo = US.userInfo, //登录用户信息
  7520. _userid = US.userInfo.userid //登录用户id
  7521. let _iframe;
  7522. let _cid = cid,
  7523. _stage = stage,
  7524. _task = task,
  7525. _tool = tool;
  7526. var _jie = $$("div", {
  7527. "style": {
  7528. "position": "absolute",
  7529. "bottom": "50px",
  7530. "right": "50px",
  7531. "zIndex": "9999",
  7532. "backgroundColor": "#2268bc",
  7533. "color": "#fff",
  7534. "padding": "12px 20px",
  7535. "cursor": "pointer",
  7536. "borderRadius": "4px",
  7537. },
  7538. "innerHTML": "提交作业"
  7539. })
  7540. let aTool = ''
  7541. let _loading = document.createElement('div')
  7542. _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;"
  7543. // _loading.id = "";
  7544. let _lchild = document.createElement('div')
  7545. let _limg = document.createElement('img')
  7546. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7547. _limg.style = "width: 26px;margin-right: 10px;"
  7548. _lchild.appendChild(_limg)
  7549. let _lspan = document.createElement('span')
  7550. _lspan.innerHTML = "上传中..."
  7551. _lchild.appendChild(_lspan)
  7552. _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%);"
  7553. _loading.appendChild(_lchild)
  7554. let _box = $$('div', {
  7555. "style": {
  7556. "position": "relative",
  7557. "width": "100%",
  7558. "height": "100%",
  7559. },
  7560. })
  7561. _box.appendChild(_loading)
  7562. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7563. switch (str) {
  7564. case "whiteboard":
  7565. aTool = 1;
  7566. _iframe = $$("iframe", {
  7567. "frameborder": "no",
  7568. "border": "0",
  7569. "scrolling ": "no",
  7570. "style": {
  7571. "cssText": "border:0;width:100%;height:100%"
  7572. },
  7573. "src": "https://beta.iwb.cocorobo.cn/"
  7574. })
  7575. _box.appendChild(_iframe);
  7576. _box.appendChild(_jie);
  7577. _formdiv = new U.UF.UI.form(
  7578. "电子白板",
  7579. _box, {
  7580. "id": "whiteboard" + cid + stage + task + tool,
  7581. "style": {
  7582. "width": "90%",
  7583. "height": "90%",
  7584. "overflow": 'hidden'
  7585. },
  7586. "onresize": function () { }
  7587. }, {
  7588. closecallback: function () { }
  7589. }, {
  7590. "style": {
  7591. "height": "36px"
  7592. }
  7593. }).form; //创建窗体
  7594. _taskbar = {
  7595. "id": str + _formdiv.id,
  7596. "style": {
  7597. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7598. },
  7599. "name": "电子白板",
  7600. "forms": _formdiv,
  7601. "click": function () {
  7602. U.MD.D.I.openApplication(str, obj, info);
  7603. }
  7604. }
  7605. break;
  7606. case "mind":
  7607. aTool = 3;
  7608. _iframe = $$("iframe", {
  7609. "frameborder": "no",
  7610. "border": "0",
  7611. "scrolling ": "no",
  7612. "style": {
  7613. "cssText": "border:0;width:100%;height:100%"
  7614. },
  7615. "src": "/kityminder-editor/dist/index.html"
  7616. })
  7617. _box.appendChild(_iframe);
  7618. _box.appendChild(_jie);
  7619. _formdiv = new U.UF.UI.form(
  7620. "思维导图",
  7621. _box, { //"/jsmind/example/demo.html"
  7622. "id": "mind" + cid + stage + task + tool,
  7623. "style": {
  7624. "width": "90%",
  7625. "height": "90%",
  7626. "overflow": 'hidden'
  7627. },
  7628. "onresize": function () { }
  7629. }, {
  7630. closecallback: function () { }
  7631. }, {
  7632. "style": {
  7633. "height": "36px"
  7634. }
  7635. }).form; //创建窗体
  7636. _taskbar = {
  7637. "id": str + _formdiv.id,
  7638. "style": {
  7639. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7640. },
  7641. "name": "思维导图",
  7642. "forms": _formdiv,
  7643. "click": function () {
  7644. U.MD.D.I.openApplication(str, obj, info);
  7645. }
  7646. }
  7647. break;
  7648. case "MindMap":
  7649. aTool = 3;
  7650. _iframe = $$("iframe", {
  7651. "frameborder": "no",
  7652. "border": "0",
  7653. "scrolling ": "no",
  7654. "style": {
  7655. "cssText": "border:0;width:100%;height:100%"
  7656. },
  7657. "src": "//cloud.cocorobo.cn/mind/"
  7658. })
  7659. _box.appendChild(_iframe);
  7660. _box.appendChild(_jie);
  7661. _formdiv = new U.UF.UI.form(
  7662. "思维导图",
  7663. _box, { //"/jsmind/example/demo.html"
  7664. "id": "mind" + cid + stage + task + tool,
  7665. "style": {
  7666. "width": "90%",
  7667. "height": "90%",
  7668. "overflow": 'hidden'
  7669. },
  7670. "onresize": function () { }
  7671. }, {
  7672. closecallback: function () { }
  7673. }, {
  7674. "style": {
  7675. "height": "36px"
  7676. }
  7677. }).form; //创建窗体
  7678. _taskbar = {
  7679. "id": str + _formdiv.id,
  7680. "style": {
  7681. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7682. },
  7683. "name": "思维导图",
  7684. "forms": _formdiv,
  7685. "click": function () {
  7686. U.MD.D.I.openApplication(str, obj, info);
  7687. }
  7688. }
  7689. break;
  7690. case "doc":
  7691. aTool = 6;
  7692. _iframe = $$("iframe", {
  7693. "frameborder": "no",
  7694. "border": "0",
  7695. "scrolling ": "no",
  7696. "style": {
  7697. "cssText": "border:0;width:100%;height:100%"
  7698. },
  7699. "src": "/Office/Word/WordEditArea.htm"
  7700. })
  7701. _box.appendChild(_iframe);
  7702. _box.appendChild(_jie);
  7703. _formdiv = new U.UF.UI.form(
  7704. "协同文档",
  7705. _box, {
  7706. "id": "doc" + cid + stage + task + tool,
  7707. "style": {
  7708. "width": "90%",
  7709. "height": "90%",
  7710. "overflow": 'hidden'
  7711. },
  7712. "onresize": function () { }
  7713. }, {
  7714. closecallback: function () { }
  7715. }, {
  7716. "style": {
  7717. "height": "36px"
  7718. }
  7719. }).form; //创建窗体
  7720. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7721. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7722. })
  7723. _taskbar = {
  7724. "id": str + _formdiv.id,
  7725. "style": {
  7726. "backgroundImage": "url(/img/icon/doc.png)"
  7727. },
  7728. "name": "协同文档",
  7729. "forms": _formdiv,
  7730. "click": function () {
  7731. U.MD.D.I.openApplication(str, obj, info);
  7732. }
  7733. }
  7734. break;
  7735. case "mindNetwork": //好友打开
  7736. aTool = 7;
  7737. _iframe = $$("iframe", {
  7738. "webkitallowfullscreen": "",
  7739. "mozallowfullscreen": "",
  7740. "allowfullscreen": "",
  7741. "frameborder": "no",
  7742. "border": "0",
  7743. "scrolling ": "no",
  7744. "style": {
  7745. "cssText": "border:0; width:100%; height:100%;"
  7746. },
  7747. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7748. })
  7749. _box.appendChild(_iframe);
  7750. _box.appendChild(_jie);
  7751. _formdiv = new U.UF.UI.form(
  7752. "思维网格",
  7753. _box, {
  7754. "id": "mindNetwork" + cid + stage + task + tool,
  7755. "style": {
  7756. "width": "90%",
  7757. "height": "90%",
  7758. "overflow": 'hidden'
  7759. },
  7760. "onresize": function () { }
  7761. }, {
  7762. closecallback: function () { }
  7763. }, {
  7764. "style": {
  7765. "height": "36px"
  7766. }
  7767. }).form; //创建窗体
  7768. _taskbar = {
  7769. "id": str + _formdiv.id,
  7770. "style": {
  7771. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7772. },
  7773. "name": "思维网格",
  7774. "forms": _formdiv,
  7775. "click": function () {
  7776. U.MD.D.I.openApplication(str, obj, info);
  7777. }
  7778. }
  7779. break;
  7780. case "courseDesign":
  7781. _iframe = $$("iframe", {
  7782. "webkitallowfullscreen": "",
  7783. "mozallowfullscreen": "",
  7784. "allowfullscreen": "",
  7785. "frameborder": "no",
  7786. "border": "0",
  7787. "scrolling ": "no",
  7788. "style": {
  7789. "cssText": "border:0; width:100%; height:100%;"
  7790. },
  7791. "src": "/course-design-vue"
  7792. })
  7793. _box.appendChild(_iframe);
  7794. _box.appendChild(_jie);
  7795. _formdiv = new U.UF.UI.form(
  7796. "项目设计",
  7797. _box, {
  7798. "id": "courseDesign" + cid + stage + task + tool,
  7799. "style": {
  7800. "width": "90%",
  7801. "height": "90%",
  7802. "overflow": 'hidden'
  7803. },
  7804. "onresize": function () { }
  7805. }, {
  7806. closecallback: function () { }
  7807. }, {
  7808. "style": {
  7809. "height": "36px"
  7810. }
  7811. }).form; //创建窗体
  7812. _taskbar = {
  7813. "id": str + _formdiv.id,
  7814. "style": {
  7815. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7816. },
  7817. "name": "项目设计",
  7818. "forms": _formdiv,
  7819. "click": function () {
  7820. U.MD.D.I.openApplication(str, obj, info);
  7821. }
  7822. }
  7823. break;
  7824. }
  7825. const script1 = document.createElement("script");
  7826. script1.type = "text/javascript";
  7827. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7828. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7829. const script2 = document.createElement("script");
  7830. script2.type = "text/javascript";
  7831. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7832. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7833. const script3 = document.createElement("script");
  7834. script3.type = "text/javascript";
  7835. script3.charset = "UTF-8";
  7836. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7837. const script4 = document.createElement("script");
  7838. script4.type = "text/javascript";
  7839. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7840. script4.src = window.origin + "/js/Common/jietu2E.js";
  7841. if (_iframe) {
  7842. if (str == 'doc') {
  7843. _iframe = _formdiv.querySelector('iframe')
  7844. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7845. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7846. _iframe.contentWindow.document.body.appendChild(script1);
  7847. _iframe.contentWindow.document.body.appendChild(script2);
  7848. // _iframe.contentWindow.document.body.appendChild(script3);
  7849. _iframe.contentWindow.document.body.appendChild(script4);
  7850. })
  7851. if (onloadListener) {
  7852. _iframe.contentDocument.location.reload()
  7853. } else {
  7854. _iframe.contentDocument.location.reload()
  7855. }
  7856. } else if (str == 'courseDesign') {
  7857. U.UF.DL.iframeLoad(_iframe, function () {
  7858. // _iframe.contentWindow.U.MD.O.W.load();
  7859. // _iframe.contentWindow.document.body.appendChild(script1);
  7860. _iframe.contentWindow.document.body.appendChild(script2);
  7861. _iframe.contentWindow.document.body.appendChild(script4);
  7862. })
  7863. } else if (str == 'mind') {
  7864. _iframe = _formdiv.querySelector('iframe')
  7865. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7866. //
  7867. _iframe.contentWindow.document.body.appendChild(script1);
  7868. _iframe.contentWindow.document.body.appendChild(script2);
  7869. _iframe.contentWindow.document.body.appendChild(script4);
  7870. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7871. })
  7872. if (onloadListener) {
  7873. _iframe.contentDocument.location.reload()
  7874. } else {
  7875. _iframe.contentDocument.location.reload()
  7876. }
  7877. } else if (str == 'whiteboard') {
  7878. _iframe = _formdiv.querySelector('iframe')
  7879. let onloadListener = _iframe.onload = () => {
  7880. _iframe.contentWindow.document.body.appendChild(script1);
  7881. _iframe.contentWindow.document.body.appendChild(script2);
  7882. _iframe.contentWindow.document.body.appendChild(script4);
  7883. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7884. };
  7885. // if (onloadListener) {
  7886. // try {
  7887. // _iframe.src += "?cocorobo="+new Date().getTime()
  7888. // _iframe.contentWindow.document.location.reload()
  7889. // } catch (error) {
  7890. // }
  7891. // } else {
  7892. // _iframe.contentDocument.location.reload()
  7893. // }
  7894. } else {
  7895. _iframe.onload = () => {
  7896. _iframe.contentWindow.document.body.appendChild(script1);
  7897. _iframe.contentWindow.document.body.appendChild(script2);
  7898. // _iframe.contentWindow.document.body.appendChild(script3);
  7899. _iframe.contentWindow.document.body.appendChild(script4);
  7900. };
  7901. }
  7902. _jie.onclick = async () => {
  7903. let text = ''
  7904. if (aTool == 1) {
  7905. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7906. } else if (aTool == 6) {
  7907. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7908. } else if (aTool == 3) {
  7909. text = await U.MD.D.I.getEditorContent(_iframe);
  7910. }
  7911. _loading.style.display = 'flex'
  7912. console.log(_loading);
  7913. var _ajs = _iframe.contentWindow.document.createElement("script");
  7914. _ajs.type = "text/javascript";
  7915. _ajs.innerHTML =
  7916. // 'console.log(' + _loading + ');\n' +
  7917. 'var _js = document.createElement("script");\n' +
  7918. '_js.type="text/javascript";\n' +
  7919. '_js.charset="UTF-8";\n' +
  7920. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7921. "_js.onload = function(){\n" +
  7922. ' var a = document.getElementsByTagName("img")\n' +
  7923. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7924. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7925. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7926. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7927. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7928. "beforeUpload_shishi(file," +
  7929. "'" +
  7930. _userid +
  7931. "'" +
  7932. ", " +
  7933. "'" +
  7934. _cid +
  7935. "'" +
  7936. ", " +
  7937. "'" +
  7938. _stage +
  7939. "'" +
  7940. ", " +
  7941. "'" +
  7942. _task +
  7943. "'" +
  7944. ", " +
  7945. "'" +
  7946. _tool +
  7947. "'" +
  7948. ", " +
  7949. "'" +
  7950. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7951. "'" +
  7952. ", " +
  7953. "'" +
  7954. aTool +
  7955. "'" +
  7956. ", " +
  7957. "`" +
  7958. text +
  7959. "`" +
  7960. ")\n" +
  7961. " });\n" +
  7962. "}\n" +
  7963. "document.head.appendChild(_js);\n";
  7964. _iframe.contentWindow.document.head.appendChild(_ajs);
  7965. }
  7966. }
  7967. //U.MD.D.I.openClick(str);
  7968. //如果有任务栏信息
  7969. // if (_taskbar) {
  7970. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7971. // }
  7972. }
  7973. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7974. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7975. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7976. _userid = student.userid, //登录用户id
  7977. _username = student.student //用户名字
  7978. let _iframe;
  7979. let _cid = cid,
  7980. _stage = stage,
  7981. _task = task,
  7982. _tool = tool;
  7983. var _jie = $$("div", {
  7984. "style": {
  7985. "position": "absolute",
  7986. "bottom": "50px",
  7987. "right": "50px",
  7988. "zIndex": "9999",
  7989. "backgroundColor": "#2268bc",
  7990. "color": "#fff",
  7991. "padding": "12px 20px",
  7992. "cursor": "pointer",
  7993. "borderRadius": "4px",
  7994. },
  7995. "innerHTML": "提交作业"
  7996. })
  7997. let aTool = ''
  7998. let _loading = document.createElement('div')
  7999. _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;"
  8000. // _loading.id = "";
  8001. let _lchild = document.createElement('div')
  8002. let _limg = document.createElement('img')
  8003. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8004. _limg.style = "width: 26px;margin-right: 10px;"
  8005. _lchild.appendChild(_limg)
  8006. let _lspan = document.createElement('span')
  8007. _lspan.innerHTML = "上传中..."
  8008. _lchild.appendChild(_lspan)
  8009. _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%);"
  8010. _loading.appendChild(_lchild)
  8011. var _box = $$('div', {
  8012. "style": {
  8013. "position": "relative",
  8014. "width": "100%",
  8015. "height": "100%",
  8016. },
  8017. })
  8018. _box.appendChild(_loading)
  8019. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8020. switch (str) {
  8021. case "whiteboard":
  8022. aTool = 1;
  8023. _iframe = $$("iframe", {
  8024. "frameborder": "no",
  8025. "border": "0",
  8026. "scrolling ": "no",
  8027. "style": {
  8028. "cssText": "border:0;width:100%;height:100%"
  8029. },
  8030. "src": "https://beta.iwb.cocorobo.cn/"
  8031. })
  8032. _box.appendChild(_iframe);
  8033. _box.appendChild(_jie);
  8034. _formdiv = new U.UF.UI.form(
  8035. "电子白板-" + _username,
  8036. _box, {
  8037. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8038. "style": {
  8039. "width": "90%",
  8040. "height": "90%",
  8041. "overflow": 'hidden'
  8042. },
  8043. "onresize": function () { }
  8044. }, {
  8045. closecallback: function () { }
  8046. }, {
  8047. "style": {
  8048. "height": "36px"
  8049. }
  8050. }).form; //创建窗体
  8051. _taskbar = {
  8052. "id": str + _formdiv.id,
  8053. "style": {
  8054. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8055. },
  8056. "name": "电子白板",
  8057. "forms": _formdiv,
  8058. "click": function () {
  8059. U.MD.D.I.openApplication(str, obj, info);
  8060. }
  8061. }
  8062. break;
  8063. case "mind":
  8064. aTool = 3;
  8065. _iframe = $$("iframe", {
  8066. "frameborder": "no",
  8067. "border": "0",
  8068. "scrolling ": "no",
  8069. "style": {
  8070. "cssText": "border:0;width:100%;height:100%"
  8071. },
  8072. "src": "/kityminder-editor/dist/index.html"
  8073. })
  8074. _box.appendChild(_iframe);
  8075. _box.appendChild(_jie);
  8076. _formdiv = new U.UF.UI.form(
  8077. "思维导图-" + _username,
  8078. _box, { //"/jsmind/example/demo.html"
  8079. "id": "mind" + cid + stage + task + tool + _userid,
  8080. "style": {
  8081. "width": "90%",
  8082. "height": "90%",
  8083. "overflow": 'hidden'
  8084. },
  8085. "onresize": function () { }
  8086. }, {
  8087. closecallback: function () { }
  8088. }, {
  8089. "style": {
  8090. "height": "36px"
  8091. }
  8092. }).form; //创建窗体
  8093. _taskbar = {
  8094. "id": str + _formdiv.id,
  8095. "style": {
  8096. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8097. },
  8098. "name": "思维导图",
  8099. "forms": _formdiv,
  8100. "click": function () {
  8101. U.MD.D.I.openApplication(str, obj, info);
  8102. }
  8103. }
  8104. break;
  8105. case "MindMap":
  8106. aTool = 3;
  8107. _iframe = $$("iframe", {
  8108. "frameborder": "no",
  8109. "border": "0",
  8110. "scrolling ": "no",
  8111. "style": {
  8112. "cssText": "border:0;width:100%;height:100%"
  8113. },
  8114. "src": "//cloud.cocorobo.cn/mind/"
  8115. })
  8116. _box.appendChild(_iframe);
  8117. _box.appendChild(_jie);
  8118. _formdiv = new U.UF.UI.form(
  8119. "思维导图-" + _username,
  8120. _box, { //"/jsmind/example/demo.html"
  8121. "id": "mind" + cid + stage + task + tool + _userid,
  8122. "style": {
  8123. "width": "90%",
  8124. "height": "90%",
  8125. "overflow": 'hidden'
  8126. },
  8127. "onresize": function () { }
  8128. }, {
  8129. closecallback: function () { }
  8130. }, {
  8131. "style": {
  8132. "height": "36px"
  8133. }
  8134. }).form; //创建窗体
  8135. _taskbar = {
  8136. "id": str + _formdiv.id,
  8137. "style": {
  8138. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8139. },
  8140. "name": "思维导图",
  8141. "forms": _formdiv,
  8142. "click": function () {
  8143. U.MD.D.I.openApplication(str, obj, info);
  8144. }
  8145. }
  8146. break;
  8147. case "doc":
  8148. aTool = 6;
  8149. _iframe = $$("iframe", {
  8150. "frameborder": "no",
  8151. "border": "0",
  8152. "scrolling ": "no",
  8153. "style": {
  8154. "cssText": "border:0;width:100%;height:100%"
  8155. },
  8156. "src": "/Office/Word/WordEditArea.htm"
  8157. })
  8158. _box.appendChild(_iframe);
  8159. _box.appendChild(_jie);
  8160. _formdiv = new U.UF.UI.form(
  8161. "协同文档-" + _username,
  8162. _box, {
  8163. "id": "doc" + cid + stage + task + tool + _userid,
  8164. "style": {
  8165. "width": "90%",
  8166. "height": "90%",
  8167. "overflow": 'hidden'
  8168. },
  8169. "onresize": function () { }
  8170. }, {
  8171. closecallback: function () { }
  8172. }, {
  8173. "style": {
  8174. "height": "36px"
  8175. }
  8176. }).form; //创建窗体
  8177. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8178. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8179. })
  8180. _taskbar = {
  8181. "id": str + _formdiv.id,
  8182. "style": {
  8183. "backgroundImage": "url(/img/icon/doc.png)"
  8184. },
  8185. "name": "协同文档",
  8186. "forms": _formdiv,
  8187. "click": function () {
  8188. U.MD.D.I.openApplication(str, obj, info);
  8189. }
  8190. }
  8191. break;
  8192. case "mindNetwork": //好友打开
  8193. aTool = 7;
  8194. _iframe = $$("iframe", {
  8195. "webkitallowfullscreen": "",
  8196. "mozallowfullscreen": "",
  8197. "allowfullscreen": "",
  8198. "frameborder": "no",
  8199. "border": "0",
  8200. "scrolling ": "no",
  8201. "style": {
  8202. "cssText": "border:0; width:100%; height:100%;"
  8203. },
  8204. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8205. })
  8206. _box.appendChild(_iframe);
  8207. _box.appendChild(_jie);
  8208. _formdiv = new U.UF.UI.form(
  8209. "思维网格-" + _username,
  8210. _box, {
  8211. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8212. "style": {
  8213. "width": "90%",
  8214. "height": "90%",
  8215. "overflow": 'hidden'
  8216. },
  8217. "onresize": function () { }
  8218. }, {
  8219. closecallback: function () { }
  8220. }, {
  8221. "style": {
  8222. "height": "36px"
  8223. }
  8224. }).form; //创建窗体
  8225. _taskbar = {
  8226. "id": str + _formdiv.id,
  8227. "style": {
  8228. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8229. },
  8230. "name": "思维网格",
  8231. "forms": _formdiv,
  8232. "click": function () {
  8233. U.MD.D.I.openApplication(str, obj, info);
  8234. }
  8235. }
  8236. break;
  8237. case "courseDesign":
  8238. _iframe = $$("iframe", {
  8239. "webkitallowfullscreen": "",
  8240. "mozallowfullscreen": "",
  8241. "allowfullscreen": "",
  8242. "frameborder": "no",
  8243. "border": "0",
  8244. "scrolling ": "no",
  8245. "style": {
  8246. "cssText": "border:0; width:100%; height:100%;"
  8247. },
  8248. "src": "/course-design-vue"
  8249. })
  8250. _box.appendChild(_iframe);
  8251. _box.appendChild(_jie);
  8252. _formdiv = new U.UF.UI.form(
  8253. "项目设计-" + _username,
  8254. _box, {
  8255. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8256. "style": {
  8257. "width": "90%",
  8258. "height": "90%",
  8259. "overflow": 'hidden'
  8260. },
  8261. "onresize": function () { }
  8262. }, {
  8263. closecallback: function () { }
  8264. }, {
  8265. "style": {
  8266. "height": "36px"
  8267. }
  8268. }).form; //创建窗体
  8269. _taskbar = {
  8270. "id": str + _formdiv.id,
  8271. "style": {
  8272. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8273. },
  8274. "name": "项目设计",
  8275. "forms": _formdiv,
  8276. "click": function () {
  8277. U.MD.D.I.openApplication(str, obj, info);
  8278. }
  8279. }
  8280. break;
  8281. }
  8282. const script1 = document.createElement("script");
  8283. script1.type = "text/javascript";
  8284. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8285. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8286. const script2 = document.createElement("script");
  8287. script2.type = "text/javascript";
  8288. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8289. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8290. const script3 = document.createElement("script");
  8291. script3.type = "text/javascript";
  8292. script3.charset = "UTF-8";
  8293. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8294. const script4 = document.createElement("script");
  8295. script4.type = "text/javascript";
  8296. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8297. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8298. if (_iframe) {
  8299. if (str == 'doc') {
  8300. _iframe = _formdiv.querySelector('iframe')
  8301. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8302. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8303. _iframe.contentWindow.document.body.appendChild(script1);
  8304. _iframe.contentWindow.document.body.appendChild(script2);
  8305. // _iframe.contentWindow.document.body.appendChild(script3);
  8306. _iframe.contentWindow.document.body.appendChild(script4);
  8307. })
  8308. if (onloadListener) {
  8309. _iframe.contentDocument.location.reload()
  8310. } else {
  8311. _iframe.contentDocument.location.reload()
  8312. }
  8313. } else if (str == 'courseDesign') {
  8314. U.UF.DL.iframeLoad(_iframe, function () {
  8315. // _iframe.contentWindow.U.MD.O.W.load();
  8316. // _iframe.contentWindow.document.body.appendChild(script1);
  8317. _iframe.contentWindow.document.body.appendChild(script2);
  8318. _iframe.contentWindow.document.body.appendChild(script4);
  8319. })
  8320. } else if (str == 'mind') {
  8321. _iframe = _formdiv.querySelector('iframe')
  8322. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8323. //
  8324. _iframe.contentWindow.document.body.appendChild(script1);
  8325. _iframe.contentWindow.document.body.appendChild(script2);
  8326. _iframe.contentWindow.document.body.appendChild(script4);
  8327. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8328. })
  8329. if (onloadListener) {
  8330. _iframe.contentDocument.location.reload()
  8331. } else {
  8332. _iframe.contentDocument.location.reload()
  8333. }
  8334. } else if (str == 'whiteboard') {
  8335. _iframe = _formdiv.querySelector('iframe')
  8336. let onloadListener = _iframe.onload = () => {
  8337. _iframe.contentWindow.document.body.appendChild(script1);
  8338. _iframe.contentWindow.document.body.appendChild(script2);
  8339. _iframe.contentWindow.document.body.appendChild(script4);
  8340. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8341. };
  8342. // if (onloadListener) {
  8343. // try {
  8344. // _iframe.src += "?cocorobo="+new Date().getTime()
  8345. // _iframe.contentWindow.document.location.reload()
  8346. // } catch (error) {
  8347. // }
  8348. // } else {
  8349. // _iframe.contentDocument.location.reload()
  8350. // }
  8351. } else {
  8352. _iframe.onload = () => {
  8353. _iframe.contentWindow.document.body.appendChild(script1);
  8354. _iframe.contentWindow.document.body.appendChild(script2);
  8355. // _iframe.contentWindow.document.body.appendChild(script3);
  8356. _iframe.contentWindow.document.body.appendChild(script4);
  8357. };
  8358. }
  8359. _jie.onclick = async () => {
  8360. let text = ''
  8361. if (aTool == 1) {
  8362. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8363. } else if (aTool == 6) {
  8364. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8365. } else if (aTool == 3) {
  8366. text = await U.MD.D.I.getEditorContent(_iframe);
  8367. }
  8368. _loading.style.display = 'flex'
  8369. console.log(_loading);
  8370. var _ajs = _iframe.contentWindow.document.createElement("script");
  8371. _ajs.type = "text/javascript";
  8372. _ajs.innerHTML =
  8373. // 'console.log(' + _loading + ');\n' +
  8374. 'var _js = document.createElement("script");\n' +
  8375. '_js.type="text/javascript";\n' +
  8376. '_js.charset="UTF-8";\n' +
  8377. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8378. "_js.onload = function(){\n" +
  8379. ' var a = document.getElementsByTagName("img")\n' +
  8380. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8381. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8382. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8383. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8384. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8385. "beforeUpload_shishi(file," +
  8386. "'" +
  8387. _userid +
  8388. "'" +
  8389. ", " +
  8390. "'" +
  8391. _cid +
  8392. "'" +
  8393. ", " +
  8394. "'" +
  8395. _stage +
  8396. "'" +
  8397. ", " +
  8398. "'" +
  8399. _task +
  8400. "'" +
  8401. ", " +
  8402. "'" +
  8403. _tool +
  8404. "'" +
  8405. ", " +
  8406. "'" +
  8407. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8408. "'" +
  8409. ", " +
  8410. "'" +
  8411. aTool +
  8412. "'" +
  8413. ", " +
  8414. "`" +
  8415. text +
  8416. "`" +
  8417. ")\n" +
  8418. " });\n" +
  8419. "}\n" +
  8420. "document.head.appendChild(_js);\n";
  8421. _iframe.contentWindow.document.head.appendChild(_ajs);
  8422. }
  8423. }
  8424. }
  8425. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8426. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8427. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8428. _userid = student.userid, //登录用户id
  8429. _username = student.student //用户名字
  8430. let _iframe;
  8431. let _cid = cid,
  8432. _stage = stage,
  8433. _task = task,
  8434. _tool = tool;
  8435. var _jie = $$("div", {
  8436. "style": {
  8437. "position": "absolute",
  8438. "bottom": "50px",
  8439. "right": "50px",
  8440. "zIndex": "9999",
  8441. "backgroundColor": "#2268bc",
  8442. "color": "#fff",
  8443. "padding": "12px 20px",
  8444. "cursor": "pointer",
  8445. "borderRadius": "4px",
  8446. },
  8447. "innerHTML": "提交作业"
  8448. })
  8449. let aTool = ''
  8450. let _loading = document.createElement('div')
  8451. _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;"
  8452. // _loading.id = "";
  8453. let _lchild = document.createElement('div')
  8454. let _limg = document.createElement('img')
  8455. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8456. _limg.style = "width: 26px;margin-right: 10px;"
  8457. _lchild.appendChild(_limg)
  8458. let _lspan = document.createElement('span')
  8459. _lspan.innerHTML = "上传中..."
  8460. _lchild.appendChild(_lspan)
  8461. _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%);"
  8462. _loading.appendChild(_lchild)
  8463. var _box = $$('div', {
  8464. "style": {
  8465. "position": "relative",
  8466. "width": "100%",
  8467. "height": "100%",
  8468. },
  8469. })
  8470. _box.appendChild(_loading)
  8471. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8472. switch (str) {
  8473. case "whiteboard":
  8474. aTool = 1;
  8475. _iframe = $$("iframe", {
  8476. "frameborder": "no",
  8477. "border": "0",
  8478. "scrolling ": "no",
  8479. "style": {
  8480. "cssText": "border:0;width:100%;height:100%"
  8481. },
  8482. "src": "https://beta.iwb.cocorobo.cn/"
  8483. })
  8484. _box.appendChild(_iframe);
  8485. _box.appendChild(_jie);
  8486. _formdiv = new U.UF.UI.form(
  8487. "电子白板-" + _username,
  8488. _box, {
  8489. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8490. "style": {
  8491. "width": "90%",
  8492. "height": "90%",
  8493. "overflow": 'hidden'
  8494. },
  8495. "onresize": function () { }
  8496. }, {
  8497. closecallback: function () { }
  8498. }, {
  8499. "style": {
  8500. "height": "36px"
  8501. }
  8502. }).form; //创建窗体
  8503. _taskbar = {
  8504. "id": str + _formdiv.id,
  8505. "style": {
  8506. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8507. },
  8508. "name": "电子白板",
  8509. "forms": _formdiv,
  8510. "click": function () {
  8511. U.MD.D.I.openApplication(str, obj, info);
  8512. }
  8513. }
  8514. break;
  8515. case "mind":
  8516. aTool = 3;
  8517. _iframe = $$("iframe", {
  8518. "frameborder": "no",
  8519. "border": "0",
  8520. "scrolling ": "no",
  8521. "style": {
  8522. "cssText": "border:0;width:100%;height:100%"
  8523. },
  8524. "src": "/kityminder-editor/dist/index.html"
  8525. })
  8526. _box.appendChild(_iframe);
  8527. _box.appendChild(_jie);
  8528. _formdiv = new U.UF.UI.form(
  8529. "思维导图-" + _username,
  8530. _box, { //"/jsmind/example/demo.html"
  8531. "id": "mind" + cid + stage + task + tool + _userid,
  8532. "style": {
  8533. "width": "90%",
  8534. "height": "90%",
  8535. "overflow": 'hidden'
  8536. },
  8537. "onresize": function () { }
  8538. }, {
  8539. closecallback: function () { }
  8540. }, {
  8541. "style": {
  8542. "height": "36px"
  8543. }
  8544. }).form; //创建窗体
  8545. _taskbar = {
  8546. "id": str + _formdiv.id,
  8547. "style": {
  8548. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8549. },
  8550. "name": "思维导图",
  8551. "forms": _formdiv,
  8552. "click": function () {
  8553. U.MD.D.I.openApplication(str, obj, info);
  8554. }
  8555. }
  8556. break;
  8557. case "MindMap":
  8558. aTool = 3;
  8559. _iframe = $$("iframe", {
  8560. "frameborder": "no",
  8561. "border": "0",
  8562. "scrolling ": "no",
  8563. "style": {
  8564. "cssText": "border:0;width:100%;height:100%"
  8565. },
  8566. "src": "//cloud.cocorobo.cn/mind/"
  8567. })
  8568. _box.appendChild(_iframe);
  8569. _box.appendChild(_jie);
  8570. _formdiv = new U.UF.UI.form(
  8571. "思维导图-" + _username,
  8572. _box, { //"/jsmind/example/demo.html"
  8573. "id": "mind" + cid + stage + task + tool + _userid,
  8574. "style": {
  8575. "width": "90%",
  8576. "height": "90%",
  8577. "overflow": 'hidden'
  8578. },
  8579. "onresize": function () { }
  8580. }, {
  8581. closecallback: function () { }
  8582. }, {
  8583. "style": {
  8584. "height": "36px"
  8585. }
  8586. }).form; //创建窗体
  8587. _taskbar = {
  8588. "id": str + _formdiv.id,
  8589. "style": {
  8590. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8591. },
  8592. "name": "思维导图",
  8593. "forms": _formdiv,
  8594. "click": function () {
  8595. U.MD.D.I.openApplication(str, obj, info);
  8596. }
  8597. }
  8598. break;
  8599. case "doc":
  8600. aTool = 6;
  8601. _iframe = $$("iframe", {
  8602. "frameborder": "no",
  8603. "border": "0",
  8604. "scrolling ": "no",
  8605. "style": {
  8606. "cssText": "border:0;width:100%;height:100%"
  8607. },
  8608. "src": "/Office/Word/WordEditArea.htm"
  8609. })
  8610. _box.appendChild(_iframe);
  8611. _box.appendChild(_jie);
  8612. _formdiv = new U.UF.UI.form(
  8613. "协同文档-" + _username,
  8614. _box, {
  8615. "id": "doc" + cid + stage + task + tool + _userid,
  8616. "style": {
  8617. "width": "90%",
  8618. "height": "90%",
  8619. "overflow": 'hidden'
  8620. },
  8621. "onresize": function () { }
  8622. }, {
  8623. closecallback: function () { }
  8624. }, {
  8625. "style": {
  8626. "height": "36px"
  8627. }
  8628. }).form; //创建窗体
  8629. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8630. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8631. })
  8632. _taskbar = {
  8633. "id": str + _formdiv.id,
  8634. "style": {
  8635. "backgroundImage": "url(/img/icon/doc.png)"
  8636. },
  8637. "name": "协同文档",
  8638. "forms": _formdiv,
  8639. "click": function () {
  8640. U.MD.D.I.openApplication(str, obj, info);
  8641. }
  8642. }
  8643. break;
  8644. case "mindNetwork": //好友打开
  8645. aTool = 7;
  8646. _iframe = $$("iframe", {
  8647. "webkitallowfullscreen": "",
  8648. "mozallowfullscreen": "",
  8649. "allowfullscreen": "",
  8650. "frameborder": "no",
  8651. "border": "0",
  8652. "scrolling ": "no",
  8653. "style": {
  8654. "cssText": "border:0; width:100%; height:100%;"
  8655. },
  8656. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8657. })
  8658. _box.appendChild(_iframe);
  8659. _box.appendChild(_jie);
  8660. _formdiv = new U.UF.UI.form(
  8661. "思维网格-" + _username,
  8662. _box, {
  8663. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8664. "style": {
  8665. "width": "90%",
  8666. "height": "90%",
  8667. "overflow": 'hidden'
  8668. },
  8669. "onresize": function () { }
  8670. }, {
  8671. closecallback: function () { }
  8672. }, {
  8673. "style": {
  8674. "height": "36px"
  8675. }
  8676. }).form; //创建窗体
  8677. _taskbar = {
  8678. "id": str + _formdiv.id,
  8679. "style": {
  8680. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8681. },
  8682. "name": "思维网格",
  8683. "forms": _formdiv,
  8684. "click": function () {
  8685. U.MD.D.I.openApplication(str, obj, info);
  8686. }
  8687. }
  8688. break;
  8689. case "courseDesign":
  8690. _iframe = $$("iframe", {
  8691. "webkitallowfullscreen": "",
  8692. "mozallowfullscreen": "",
  8693. "allowfullscreen": "",
  8694. "frameborder": "no",
  8695. "border": "0",
  8696. "scrolling ": "no",
  8697. "style": {
  8698. "cssText": "border:0; width:100%; height:100%;"
  8699. },
  8700. "src": "/course-design-vue"
  8701. })
  8702. _box.appendChild(_iframe);
  8703. _box.appendChild(_jie);
  8704. _formdiv = new U.UF.UI.form(
  8705. "项目设计-" + _username,
  8706. _box, {
  8707. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8708. "style": {
  8709. "width": "90%",
  8710. "height": "90%",
  8711. "overflow": 'hidden'
  8712. },
  8713. "onresize": function () { }
  8714. }, {
  8715. closecallback: function () { }
  8716. }, {
  8717. "style": {
  8718. "height": "36px"
  8719. }
  8720. }).form; //创建窗体
  8721. _taskbar = {
  8722. "id": str + _formdiv.id,
  8723. "style": {
  8724. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8725. },
  8726. "name": "项目设计",
  8727. "forms": _formdiv,
  8728. "click": function () {
  8729. U.MD.D.I.openApplication(str, obj, info);
  8730. }
  8731. }
  8732. break;
  8733. }
  8734. const script1 = document.createElement("script");
  8735. script1.type = "text/javascript";
  8736. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8737. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8738. const script2 = document.createElement("script");
  8739. script2.type = "text/javascript";
  8740. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8741. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8742. const script3 = document.createElement("script");
  8743. script3.type = "text/javascript";
  8744. script3.charset = "UTF-8";
  8745. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8746. const script4 = document.createElement("script");
  8747. script4.type = "text/javascript";
  8748. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8749. script4.src = window.origin + "/js/Common/jietu2E.js";
  8750. if (_iframe) {
  8751. if (str == 'doc') {
  8752. _iframe = _formdiv.querySelector('iframe')
  8753. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8754. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8755. _iframe.contentWindow.document.body.appendChild(script1);
  8756. _iframe.contentWindow.document.body.appendChild(script2);
  8757. // _iframe.contentWindow.document.body.appendChild(script3);
  8758. _iframe.contentWindow.document.body.appendChild(script4);
  8759. })
  8760. if (onloadListener) {
  8761. _iframe.contentDocument.location.reload()
  8762. } else {
  8763. _iframe.contentDocument.location.reload()
  8764. }
  8765. } else if (str == 'courseDesign') {
  8766. U.UF.DL.iframeLoad(_iframe, function () {
  8767. // _iframe.contentWindow.U.MD.O.W.load();
  8768. // _iframe.contentWindow.document.body.appendChild(script1);
  8769. _iframe.contentWindow.document.body.appendChild(script2);
  8770. _iframe.contentWindow.document.body.appendChild(script4);
  8771. })
  8772. } else if (str == 'mind') {
  8773. _iframe = _formdiv.querySelector('iframe')
  8774. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8775. //
  8776. _iframe.contentWindow.document.body.appendChild(script1);
  8777. _iframe.contentWindow.document.body.appendChild(script2);
  8778. _iframe.contentWindow.document.body.appendChild(script4);
  8779. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8780. })
  8781. if (onloadListener) {
  8782. _iframe.contentDocument.location.reload()
  8783. } else {
  8784. _iframe.contentDocument.location.reload()
  8785. }
  8786. } else if (str == 'whiteboard') {
  8787. _iframe = _formdiv.querySelector('iframe')
  8788. let onloadListener = _iframe.onload = () => {
  8789. _iframe.contentWindow.document.body.appendChild(script1);
  8790. _iframe.contentWindow.document.body.appendChild(script2);
  8791. _iframe.contentWindow.document.body.appendChild(script4);
  8792. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8793. };
  8794. // if (onloadListener) {
  8795. // try {
  8796. // _iframe.src += "?cocorobo="+new Date().getTime()
  8797. // _iframe.contentWindow.document.location.reload()
  8798. // } catch (error) {
  8799. // }
  8800. // } else {
  8801. // _iframe.contentDocument.location.reload()
  8802. // }
  8803. } else {
  8804. _iframe.onload = () => {
  8805. _iframe.contentWindow.document.body.appendChild(script1);
  8806. _iframe.contentWindow.document.body.appendChild(script2);
  8807. // _iframe.contentWindow.document.body.appendChild(script3);
  8808. _iframe.contentWindow.document.body.appendChild(script4);
  8809. };
  8810. }
  8811. _jie.onclick = async () => {
  8812. let text = ''
  8813. if (aTool == 1) {
  8814. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8815. } else if (aTool == 6) {
  8816. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8817. } else if (aTool == 3) {
  8818. text = await U.MD.D.I.getEditorContent(_iframe);
  8819. }
  8820. _loading.style.display = 'flex'
  8821. console.log(_loading);
  8822. var _ajs = _iframe.contentWindow.document.createElement("script");
  8823. _ajs.type = "text/javascript";
  8824. _ajs.innerHTML =
  8825. // 'console.log(' + _loading + ');\n' +
  8826. 'var _js = document.createElement("script");\n' +
  8827. '_js.type="text/javascript";\n' +
  8828. '_js.charset="UTF-8";\n' +
  8829. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8830. "_js.onload = function(){\n" +
  8831. ' var a = document.getElementsByTagName("img")\n' +
  8832. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8833. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8834. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8835. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8836. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8837. "beforeUpload_shishi(file," +
  8838. "'" +
  8839. _userid +
  8840. "'" +
  8841. ", " +
  8842. "'" +
  8843. _cid +
  8844. "'" +
  8845. ", " +
  8846. "'" +
  8847. _stage +
  8848. "'" +
  8849. ", " +
  8850. "'" +
  8851. _task +
  8852. "'" +
  8853. ", " +
  8854. "'" +
  8855. _tool +
  8856. "'" +
  8857. ", " +
  8858. "'" +
  8859. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8860. "'" +
  8861. ", " +
  8862. "'" +
  8863. aTool +
  8864. "'" +
  8865. ", " +
  8866. "`" +
  8867. text +
  8868. "`" +
  8869. ")\n" +
  8870. " });\n" +
  8871. "}\n" +
  8872. "document.head.appendChild(_js);\n";
  8873. _iframe.contentWindow.document.head.appendChild(_ajs);
  8874. }
  8875. }
  8876. }
  8877. U.MD.D.I.getEditorContent = function (iframe) {
  8878. return new Promise((resolve, reject) => {
  8879. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8880. console.log(content);
  8881. resolve(content)
  8882. });
  8883. });
  8884. }
  8885. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8886. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8887. // if (res.value[0].length > 0) {
  8888. // // resolve(res.value[0][0].text);
  8889. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8890. // $(fileInput).val('');
  8891. // });
  8892. // }
  8893. // }, [], { "type": "GET", "withCredentials": true });
  8894. var xmlhttp;
  8895. var Mac, Sn, DeviceId
  8896. if (window.XMLHttpRequest) {
  8897. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8898. xmlhttp = new XMLHttpRequest();
  8899. } else {
  8900. // IE6, IE5 浏览器执行代码
  8901. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8902. }
  8903. xmlhttp.onreadystatechange = function () {
  8904. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8905. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8906. // resolve(res.value[0][0].text);
  8907. if (type == '2') {
  8908. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8909. } else if (type == '3') {
  8910. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8911. }
  8912. } else {
  8913. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8914. }
  8915. }
  8916. }
  8917. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8918. xmlhttp.send();
  8919. }
  8920. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8921. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8922. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8923. _userinfo = US.userInfo, //登录用户信息
  8924. _userid = US.userInfo.userid //登录用户id
  8925. let _iframe;
  8926. let _cid = cid,
  8927. _stage = stage,
  8928. _task = task,
  8929. _tool = tool;
  8930. var _jie = $$("div", {
  8931. "style": {
  8932. "position": "absolute",
  8933. "bottom": "50px",
  8934. "right": "50px",
  8935. "zIndex": "9999",
  8936. "backgroundColor": "#2268bc",
  8937. "color": "#fff",
  8938. "padding": "12px 20px",
  8939. "cursor": "pointer",
  8940. "borderRadius": "4px",
  8941. },
  8942. "innerHTML": "确认并提交"
  8943. })
  8944. let aTool = ''
  8945. let _loading = document.createElement('div')
  8946. _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;"
  8947. // _loading.id = "";
  8948. let _lchild = document.createElement('div')
  8949. let _limg = document.createElement('img')
  8950. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8951. _limg.style = "width: 26px;margin-right: 10px;"
  8952. _lchild.appendChild(_limg)
  8953. let _lspan = document.createElement('span')
  8954. _lspan.innerHTML = "上传中..."
  8955. _lchild.appendChild(_lspan)
  8956. _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%);"
  8957. _loading.appendChild(_lchild)
  8958. var _box = $$('div', {
  8959. "style": {
  8960. "position": "relative",
  8961. "width": "100%",
  8962. "height": "100%",
  8963. },
  8964. })
  8965. _box.appendChild(_loading)
  8966. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8967. switch (str) {
  8968. case "whiteboard":
  8969. aTool = 1;
  8970. _iframe = $$("iframe", {
  8971. "frameborder": "no",
  8972. "border": "0",
  8973. "scrolling ": "no",
  8974. "style": {
  8975. "cssText": "border:0;width:100%;height:100%"
  8976. },
  8977. "src": "https://beta.iwb.cocorobo.cn/"
  8978. })
  8979. _box.appendChild(_iframe);
  8980. _box.appendChild(_jie);
  8981. _formdiv = new U.UF.UI.form(
  8982. "电子白板",
  8983. _box, {
  8984. "id": "whiteboards" + cid + stage + task + tool,
  8985. "style": {
  8986. "width": "90%",
  8987. "height": "90%",
  8988. "overflow": 'hidden'
  8989. },
  8990. "onresize": function () { }
  8991. }, {
  8992. closecallback: function () { }
  8993. }, {
  8994. "style": {
  8995. "height": "36px"
  8996. }
  8997. }).form; //创建窗体
  8998. _taskbar = {
  8999. "id": str + _formdiv.id,
  9000. "style": {
  9001. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9002. },
  9003. "name": "电子白板",
  9004. "forms": _formdiv,
  9005. "click": function () {
  9006. U.MD.D.I.openApplication(str, obj, info);
  9007. }
  9008. }
  9009. break;
  9010. case "mind":
  9011. aTool = 3;
  9012. _iframe = $$("iframe", {
  9013. "frameborder": "no",
  9014. "border": "0",
  9015. "scrolling ": "no",
  9016. "style": {
  9017. "cssText": "border:0;width:100%;height:100%"
  9018. },
  9019. "src": "/kityminder-editor/dist/index.html"
  9020. });
  9021. _box.appendChild(_iframe);
  9022. _box.appendChild(_jie);
  9023. _formdiv = new U.UF.UI.form(
  9024. "思维导图",
  9025. _box, { //"/jsmind/example/demo.html"
  9026. "id": "minds" + cid + stage + task + tool,
  9027. "style": {
  9028. "width": "90%",
  9029. "height": "90%",
  9030. "overflow": 'hidden'
  9031. },
  9032. "onresize": function () { }
  9033. }, {
  9034. closecallback: function () { }
  9035. }, {
  9036. "style": {
  9037. "height": "36px"
  9038. }
  9039. }).form; //创建窗体
  9040. _taskbar = {
  9041. "id": str + _formdiv.id,
  9042. "style": {
  9043. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9044. },
  9045. "name": "思维导图",
  9046. "forms": _formdiv,
  9047. "click": function () {
  9048. U.MD.D.I.openApplication(str, obj, info);
  9049. }
  9050. }
  9051. break;
  9052. case "doc":
  9053. aTool = 6;
  9054. _iframe = $$("iframe", {
  9055. "frameborder": "no",
  9056. "border": "0",
  9057. "scrolling ": "no",
  9058. "style": {
  9059. "cssText": "border:0;width:100%;height:100%"
  9060. },
  9061. "src": "/Office/Word/WordEditArea.htm"
  9062. })
  9063. _box.appendChild(_iframe);
  9064. _box.appendChild(_jie);
  9065. _formdiv = new U.UF.UI.form(
  9066. "协同文档",
  9067. _box, {
  9068. "id": "docs" + cid + stage + task + tool,
  9069. "style": {
  9070. "width": "90%",
  9071. "height": "90%",
  9072. "overflow": 'hidden'
  9073. },
  9074. "onresize": function () { }
  9075. }, {
  9076. closecallback: function () { }
  9077. }, {
  9078. "style": {
  9079. "height": "36px"
  9080. }
  9081. }).form; //创建窗体
  9082. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9083. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9084. })
  9085. _taskbar = {
  9086. "id": str + _formdiv.id,
  9087. "style": {
  9088. "backgroundImage": "url(/img/icon/doc.png)"
  9089. },
  9090. "name": "协同文档",
  9091. "forms": _formdiv,
  9092. "click": function () {
  9093. U.MD.D.I.openApplication(str, obj, info);
  9094. }
  9095. }
  9096. break;
  9097. }
  9098. const script1 = document.createElement("script");
  9099. script1.type = "text/javascript";
  9100. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9101. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9102. const script2 = document.createElement("script");
  9103. script2.type = "text/javascript";
  9104. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9105. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9106. const script3 = document.createElement("script");
  9107. script3.type = "text/javascript";
  9108. script3.charset = "UTF-8";
  9109. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9110. const script4 = document.createElement("script");
  9111. script4.type = "text/javascript";
  9112. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9113. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9114. if (_iframe) {
  9115. if (str == 'doc') {
  9116. _iframe = _formdiv.querySelector('iframe')
  9117. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9118. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9119. _iframe.contentWindow.document.body.appendChild(script1);
  9120. _iframe.contentWindow.document.body.appendChild(script2);
  9121. // _iframe.contentWindow.document.body.appendChild(script3);
  9122. _iframe.contentWindow.document.body.appendChild(script4);
  9123. })
  9124. if (onloadListener) {
  9125. _iframe.contentDocument.location.reload()
  9126. } else {
  9127. _iframe.contentDocument.location.reload()
  9128. }
  9129. } else if (str == 'mind') {
  9130. _iframe = _formdiv.querySelector('iframe')
  9131. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9132. _iframe.contentWindow.document.body.appendChild(script1);
  9133. _iframe.contentWindow.document.body.appendChild(script2);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9136. })
  9137. if (onloadListener) {
  9138. _iframe.contentDocument.location.reload()
  9139. } else {
  9140. _iframe.contentDocument.location.reload()
  9141. }
  9142. } else {
  9143. _iframe.onload = () => {
  9144. _iframe.contentWindow.document.body.appendChild(script1);
  9145. _iframe.contentWindow.document.body.appendChild(script2);
  9146. // _iframe.contentWindow.document.body.appendChild(script3);
  9147. _iframe.contentWindow.document.body.appendChild(script4);
  9148. };
  9149. }
  9150. _jie.onclick = async () => {
  9151. let text = ''
  9152. if (aTool == 6) {
  9153. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9154. } else if (aTool == 3) {
  9155. text = await U.MD.D.I.getEditorContent(_iframe);
  9156. }
  9157. _loading.style.display = 'flex'
  9158. console.log(_loading);
  9159. var _ajs = _iframe.contentWindow.document.createElement("script");
  9160. _ajs.type = "text/javascript";
  9161. _ajs.innerHTML =
  9162. // 'console.log(' + _loading + ');\n' +
  9163. 'var _js = document.createElement("script");\n' +
  9164. '_js.type="text/javascript";\n' +
  9165. '_js.charset="UTF-8";\n' +
  9166. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9167. "_js.onload = function(){\n" +
  9168. ' var a = document.getElementsByTagName("img")\n' +
  9169. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9170. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9171. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9172. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9173. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9174. "beforeUpload_shishi(file," +
  9175. "'" +
  9176. _userid +
  9177. "'" +
  9178. ", " +
  9179. "'" +
  9180. _cid +
  9181. "'" +
  9182. ", " +
  9183. "'" +
  9184. _stage +
  9185. "'" +
  9186. ", " +
  9187. "'" +
  9188. _task +
  9189. "'" +
  9190. ", " +
  9191. "'" +
  9192. _tool +
  9193. "'" +
  9194. ", " +
  9195. "'" +
  9196. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9197. "'" +
  9198. ", " +
  9199. "'" +
  9200. aTool +
  9201. "'" +
  9202. ", " +
  9203. "`" +
  9204. text +
  9205. "`" +
  9206. ")\n" +
  9207. " });\n" +
  9208. "}\n" +
  9209. "document.head.appendChild(_js);\n";
  9210. _iframe.contentWindow.document.head.appendChild(_ajs);
  9211. }
  9212. }
  9213. //U.MD.D.I.openClick(str);
  9214. //如果有任务栏信息
  9215. // if (_taskbar) {
  9216. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9217. // }
  9218. }
  9219. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9220. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9221. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9222. _userinfo = US.userInfo, //登录用户信息
  9223. _userid = US.userInfo.userid //登录用户id
  9224. let _iframe;
  9225. let _cid = cid,
  9226. _stage = stage,
  9227. _task = task,
  9228. _tool = tool;
  9229. var _jie = $$("div", {
  9230. "style": {
  9231. "position": "absolute",
  9232. "bottom": "50px",
  9233. "right": "50px",
  9234. "zIndex": "9999",
  9235. "backgroundColor": "#2268bc",
  9236. "color": "#fff",
  9237. "padding": "12px 20px",
  9238. "cursor": "pointer",
  9239. "borderRadius": "4px",
  9240. },
  9241. "innerHTML": "确认并提交"
  9242. })
  9243. let aTool = ''
  9244. let _loading = document.createElement('div')
  9245. _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;"
  9246. // _loading.id = "";
  9247. let _lchild = document.createElement('div')
  9248. let _limg = document.createElement('img')
  9249. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9250. _limg.style = "width: 26px;margin-right: 10px;"
  9251. _lchild.appendChild(_limg)
  9252. let _lspan = document.createElement('span')
  9253. _lspan.innerHTML = "上传中..."
  9254. _lchild.appendChild(_lspan)
  9255. _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%);"
  9256. _loading.appendChild(_lchild)
  9257. var _box = $$('div', {
  9258. "style": {
  9259. "position": "relative",
  9260. "width": "100%",
  9261. "height": "100%",
  9262. },
  9263. })
  9264. _box.appendChild(_loading)
  9265. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9266. switch (str) {
  9267. case "whiteboard":
  9268. aTool = 1;
  9269. _iframe = $$("iframe", {
  9270. "frameborder": "no",
  9271. "border": "0",
  9272. "scrolling ": "no",
  9273. "style": {
  9274. "cssText": "border:0;width:100%;height:100%"
  9275. },
  9276. "src": "https://beta.iwb.cocorobo.cn/"
  9277. })
  9278. _box.appendChild(_iframe);
  9279. _box.appendChild(_jie);
  9280. _formdiv = new U.UF.UI.form(
  9281. "电子白板",
  9282. _box, {
  9283. "id": "whiteboards" + cid + stage + task + tool,
  9284. "style": {
  9285. "width": "90%",
  9286. "height": "90%",
  9287. "overflow": 'hidden'
  9288. },
  9289. "onresize": function () { }
  9290. }, {
  9291. closecallback: function () { }
  9292. }, {
  9293. "style": {
  9294. "height": "36px"
  9295. }
  9296. }).form; //创建窗体
  9297. _taskbar = {
  9298. "id": str + _formdiv.id,
  9299. "style": {
  9300. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9301. },
  9302. "name": "电子白板",
  9303. "forms": _formdiv,
  9304. "click": function () {
  9305. U.MD.D.I.openApplication(str, obj, info);
  9306. }
  9307. }
  9308. break;
  9309. case "mind":
  9310. aTool = 3;
  9311. _iframe = $$("iframe", {
  9312. "frameborder": "no",
  9313. "border": "0",
  9314. "scrolling ": "no",
  9315. "style": {
  9316. "cssText": "border:0;width:100%;height:100%"
  9317. },
  9318. "src": "/kityminder-editor/dist/index.html"
  9319. });
  9320. _box.appendChild(_iframe);
  9321. _box.appendChild(_jie);
  9322. _formdiv = new U.UF.UI.form(
  9323. "思维导图",
  9324. _box, { //"/jsmind/example/demo.html"
  9325. "id": "minds" + cid + stage + task + tool,
  9326. "style": {
  9327. "width": "90%",
  9328. "height": "90%",
  9329. "overflow": 'hidden'
  9330. },
  9331. "onresize": function () { }
  9332. }, {
  9333. closecallback: function () { }
  9334. }, {
  9335. "style": {
  9336. "height": "36px"
  9337. }
  9338. }).form; //创建窗体
  9339. _taskbar = {
  9340. "id": str + _formdiv.id,
  9341. "style": {
  9342. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9343. },
  9344. "name": "思维导图",
  9345. "forms": _formdiv,
  9346. "click": function () {
  9347. U.MD.D.I.openApplication(str, obj, info);
  9348. }
  9349. }
  9350. break;
  9351. case "doc":
  9352. aTool = 6;
  9353. _iframe = $$("iframe", {
  9354. "frameborder": "no",
  9355. "border": "0",
  9356. "scrolling ": "no",
  9357. "style": {
  9358. "cssText": "border:0;width:100%;height:100%"
  9359. },
  9360. "src": "/Office/Word/WordEditArea.htm"
  9361. })
  9362. _box.appendChild(_iframe);
  9363. _box.appendChild(_jie);
  9364. _formdiv = new U.UF.UI.form(
  9365. "协同文档",
  9366. _box, {
  9367. "id": "docs" + cid + stage + task + tool,
  9368. "style": {
  9369. "width": "90%",
  9370. "height": "90%",
  9371. "overflow": 'hidden'
  9372. },
  9373. "onresize": function () { }
  9374. }, {
  9375. closecallback: function () { }
  9376. }, {
  9377. "style": {
  9378. "height": "36px"
  9379. }
  9380. }).form; //创建窗体
  9381. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9382. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9383. })
  9384. _taskbar = {
  9385. "id": str + _formdiv.id,
  9386. "style": {
  9387. "backgroundImage": "url(/img/icon/doc.png)"
  9388. },
  9389. "name": "协同文档",
  9390. "forms": _formdiv,
  9391. "click": function () {
  9392. U.MD.D.I.openApplication(str, obj, info);
  9393. }
  9394. }
  9395. break;
  9396. }
  9397. const script1 = document.createElement("script");
  9398. script1.type = "text/javascript";
  9399. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9400. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9401. const script2 = document.createElement("script");
  9402. script2.type = "text/javascript";
  9403. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9404. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9405. const script3 = document.createElement("script");
  9406. script3.type = "text/javascript";
  9407. script3.charset = "UTF-8";
  9408. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9409. const script4 = document.createElement("script");
  9410. script4.type = "text/javascript";
  9411. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9412. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9413. if (_iframe) {
  9414. if (str == 'doc') {
  9415. _iframe = _formdiv.querySelector('iframe')
  9416. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9417. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9418. _iframe.contentWindow.document.body.appendChild(script1);
  9419. _iframe.contentWindow.document.body.appendChild(script2);
  9420. // _iframe.contentWindow.document.body.appendChild(script3);
  9421. _iframe.contentWindow.document.body.appendChild(script4);
  9422. })
  9423. if (onloadListener) {
  9424. _iframe.contentDocument.location.reload()
  9425. } else {
  9426. _iframe.contentDocument.location.reload()
  9427. }
  9428. } else if (str == 'mind') {
  9429. _iframe = _formdiv.querySelector('iframe')
  9430. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9431. _iframe.contentWindow.document.body.appendChild(script1);
  9432. _iframe.contentWindow.document.body.appendChild(script2);
  9433. _iframe.contentWindow.document.body.appendChild(script4);
  9434. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9435. })
  9436. if (onloadListener) {
  9437. _iframe.contentDocument.location.reload()
  9438. } else {
  9439. _iframe.contentDocument.location.reload()
  9440. }
  9441. } else {
  9442. _iframe.onload = () => {
  9443. _iframe.contentWindow.document.body.appendChild(script1);
  9444. _iframe.contentWindow.document.body.appendChild(script2);
  9445. // _iframe.contentWindow.document.body.appendChild(script3);
  9446. _iframe.contentWindow.document.body.appendChild(script4);
  9447. };
  9448. }
  9449. _jie.onclick = async () => {
  9450. let text = ''
  9451. if (aTool == 6) {
  9452. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9453. } else if (aTool == 3) {
  9454. text = await U.MD.D.I.getEditorContent(_iframe);
  9455. }
  9456. _loading.style.display = 'flex'
  9457. console.log(_loading);
  9458. var _ajs = _iframe.contentWindow.document.createElement("script");
  9459. _ajs.type = "text/javascript";
  9460. _ajs.innerHTML =
  9461. // 'console.log(' + _loading + ');\n' +
  9462. 'var _js = document.createElement("script");\n' +
  9463. '_js.type="text/javascript";\n' +
  9464. '_js.charset="UTF-8";\n' +
  9465. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9466. "_js.onload = function(){\n" +
  9467. ' var a = document.getElementsByTagName("img")\n' +
  9468. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9469. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9470. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9471. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9472. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9473. "beforeUpload_shishi(file," +
  9474. "'" +
  9475. _userid +
  9476. "'" +
  9477. ", " +
  9478. "'" +
  9479. _cid +
  9480. "'" +
  9481. ", " +
  9482. "'" +
  9483. _stage +
  9484. "'" +
  9485. ", " +
  9486. "'" +
  9487. _task +
  9488. "'" +
  9489. ", " +
  9490. "'" +
  9491. _tool +
  9492. "'" +
  9493. ", " +
  9494. "'" +
  9495. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9496. "'" +
  9497. ", " +
  9498. "'" +
  9499. aTool +
  9500. "'" +
  9501. ", " +
  9502. "`" +
  9503. text +
  9504. "`" +
  9505. ")\n" +
  9506. " });\n" +
  9507. "}\n" +
  9508. "document.head.appendChild(_js);\n";
  9509. _iframe.contentWindow.document.head.appendChild(_ajs);
  9510. }
  9511. }
  9512. //U.MD.D.I.openClick(str);
  9513. //如果有任务栏信息
  9514. // if (_taskbar) {
  9515. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9516. // }
  9517. }
  9518. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9519. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9520. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9521. _userinfo = US.userInfo, //登录用户信息
  9522. _userid = US.userInfo.userid //登录用户id
  9523. let _iframe;
  9524. let _cid = cid,
  9525. _stage = stage,
  9526. _task = task,
  9527. _tool = tool;
  9528. var _jie = $$("div", {
  9529. "style": {
  9530. "position": "absolute",
  9531. "bottom": "50px",
  9532. "right": "50px",
  9533. "zIndex": "9999",
  9534. "backgroundColor": "#2268bc",
  9535. "color": "#fff",
  9536. "padding": "12px 20px",
  9537. "cursor": "pointer",
  9538. "borderRadius": "4px",
  9539. },
  9540. "innerHTML": "上传模板"
  9541. })
  9542. let aTool = ''
  9543. let _loading = document.createElement('div')
  9544. _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;"
  9545. // _loading.id = "";
  9546. let _lchild = document.createElement('div')
  9547. let _limg = document.createElement('img')
  9548. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9549. _limg.style = "width: 26px;margin-right: 10px;"
  9550. _lchild.appendChild(_limg)
  9551. let _lspan = document.createElement('span')
  9552. _lspan.innerHTML = "上传中..."
  9553. _lchild.appendChild(_lspan)
  9554. _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%);"
  9555. _loading.appendChild(_lchild)
  9556. var _box = $$('div', {
  9557. "style": {
  9558. "position": "relative",
  9559. "width": "100%",
  9560. "height": "100%",
  9561. },
  9562. })
  9563. _box.appendChild(_loading)
  9564. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9565. switch (str) {
  9566. case "whiteboard":
  9567. aTool = 1;
  9568. _iframe = $$("iframe", {
  9569. "frameborder": "no",
  9570. "border": "0",
  9571. "scrolling ": "no",
  9572. "style": {
  9573. "cssText": "border:0;width:100%;height:100%"
  9574. },
  9575. "src": "https://beta.iwb.cocorobo.cn/"
  9576. })
  9577. _box.appendChild(_iframe);
  9578. _box.appendChild(_jie);
  9579. _formdiv = new U.UF.UI.form(
  9580. "电子白板",
  9581. _box, {
  9582. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9583. "style": {
  9584. "width": "90%",
  9585. "height": "90%",
  9586. "overflow": 'hidden'
  9587. },
  9588. "onresize": function () { }
  9589. }, {
  9590. closecallback: function () { }
  9591. }, {
  9592. "style": {
  9593. "height": "36px"
  9594. }
  9595. }).form; //创建窗体
  9596. _taskbar = {
  9597. "id": str + _formdiv.id,
  9598. "style": {
  9599. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9600. },
  9601. "name": "电子白板",
  9602. "forms": _formdiv,
  9603. "click": function () {
  9604. U.MD.D.I.openApplication(str, obj, info);
  9605. }
  9606. }
  9607. break;
  9608. case "mind":
  9609. aTool = 3;
  9610. _iframe = $$("iframe", {
  9611. "frameborder": "no",
  9612. "border": "0",
  9613. "scrolling ": "no",
  9614. "style": {
  9615. "cssText": "border:0;width:100%;height:100%"
  9616. },
  9617. "src": "/kityminder-editor/dist/index.html"
  9618. });
  9619. _box.appendChild(_iframe);
  9620. _box.appendChild(_jie);
  9621. _formdiv = new U.UF.UI.form(
  9622. "思维导图",
  9623. _box, { //"/jsmind/example/demo.html"
  9624. "id": "minds_Yu" + cid + stage + task + tool,
  9625. "style": {
  9626. "width": "90%",
  9627. "height": "90%",
  9628. "overflow": 'hidden'
  9629. },
  9630. "onresize": function () { }
  9631. }, {
  9632. closecallback: function () { }
  9633. }, {
  9634. "style": {
  9635. "height": "36px"
  9636. }
  9637. }).form; //创建窗体
  9638. _taskbar = {
  9639. "id": str + _formdiv.id,
  9640. "style": {
  9641. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9642. },
  9643. "name": "思维导图",
  9644. "forms": _formdiv,
  9645. "click": function () {
  9646. U.MD.D.I.openApplication(str, obj, info);
  9647. }
  9648. }
  9649. break;
  9650. case "doc":
  9651. aTool = 6;
  9652. _iframe = $$("iframe", {
  9653. "frameborder": "no",
  9654. "border": "0",
  9655. "scrolling ": "no",
  9656. "style": {
  9657. "cssText": "border:0;width:100%;height:100%"
  9658. },
  9659. "src": "/Office/Word/WordEditArea.htm"
  9660. })
  9661. _box.appendChild(_iframe);
  9662. _box.appendChild(_jie);
  9663. _formdiv = new U.UF.UI.form(
  9664. "协同文档",
  9665. _box, {
  9666. "id": "docs_Yu" + cid + stage + task + tool,
  9667. "style": {
  9668. "width": "90%",
  9669. "height": "90%",
  9670. "overflow": 'hidden'
  9671. },
  9672. "onresize": function () { }
  9673. }, {
  9674. closecallback: function () { }
  9675. }, {
  9676. "style": {
  9677. "height": "36px"
  9678. }
  9679. }).form; //创建窗体
  9680. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9681. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9682. })
  9683. _taskbar = {
  9684. "id": str + _formdiv.id,
  9685. "style": {
  9686. "backgroundImage": "url(/img/icon/doc.png)"
  9687. },
  9688. "name": "协同文档",
  9689. "forms": _formdiv,
  9690. "click": function () {
  9691. U.MD.D.I.openApplication(str, obj, info);
  9692. }
  9693. }
  9694. break;
  9695. case "CocoPi":
  9696. aTool = 57;
  9697. _iframe = $$("iframe", {
  9698. "allowpaymentrequest": "allowpaymentrequest",
  9699. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9700. "webkitallowfullscreen": "",
  9701. "mozallowfullscreen": "",
  9702. "frameborder": "no",
  9703. "border": "0",
  9704. "scrolling ": "no",
  9705. "style": {
  9706. "cssText": "border:0;width:100%;height:100%"
  9707. },
  9708. "src": "https://pi.cocorobo.cn/"
  9709. })
  9710. _box.appendChild(_iframe);
  9711. _box.appendChild(_jie);
  9712. _formdiv = new U.UF.UI.form(
  9713. "CocoPi",
  9714. _box, {
  9715. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9716. "style": {
  9717. "width": "90%",
  9718. "height": "90%",
  9719. "overflow": 'hidden'
  9720. },
  9721. "onresize": function () { }
  9722. }, {
  9723. closecallback: function () { }
  9724. }, {
  9725. "style": {
  9726. "height": "36px"
  9727. }
  9728. }).form; //创建窗体
  9729. _taskbar = {
  9730. "id": str + _formdiv.id,
  9731. "style": {
  9732. "backgroundImage": "url(/img/icon/cocopi.png)"
  9733. },
  9734. "name": "CocoPi",
  9735. "forms": _formdiv,
  9736. "click": function () {
  9737. U.MD.D.I.openApplication(str, obj, info);
  9738. }
  9739. }
  9740. break;
  9741. }
  9742. if (_iframe) {
  9743. if (str == 'doc') {
  9744. _iframe = _formdiv.querySelector('iframe')
  9745. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9746. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9747. })
  9748. if (onloadListener) {
  9749. _iframe.contentDocument.location.reload()
  9750. } else {
  9751. _iframe.contentDocument.location.reload()
  9752. }
  9753. } else if (str == 'mind') {
  9754. _iframe = _formdiv.querySelector('iframe')
  9755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9756. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9757. })
  9758. if (onloadListener) {
  9759. _iframe.contentDocument.location.reload()
  9760. } else {
  9761. _iframe.contentDocument.location.reload()
  9762. }
  9763. } else if (str == 'whiteboard') {
  9764. _iframe = _formdiv.querySelector('iframe')
  9765. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9766. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9767. })
  9768. // if (onloadListener) {
  9769. // try {
  9770. // _iframe.src += "?cocorobo="+new Date().getTime()
  9771. // _iframe.contentWindow.document.location.reload()
  9772. // } catch (error) {
  9773. // }
  9774. // } else {
  9775. // _iframe.contentDocument.location.reload()
  9776. // }
  9777. } else if (str == 'CocoPi') {
  9778. _iframe = _formdiv.querySelector('iframe')
  9779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9780. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9781. })
  9782. if (onloadListener) {
  9783. _iframe.contentDocument.location.reload()
  9784. } else {
  9785. _iframe.contentDocument.location.reload()
  9786. }
  9787. } else {
  9788. _iframe.onload = () => { };
  9789. }
  9790. _jie.onclick = async () => {
  9791. let text = ''
  9792. let type = '2'
  9793. if (aTool == 1) {
  9794. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9795. type = '3'
  9796. } else if (aTool == 6) {
  9797. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9798. type = '1'
  9799. } else if (aTool == 3) {
  9800. text = await U.MD.D.I.getEditorContent(_iframe);
  9801. type = '2'
  9802. } else if (aTool == 57) {
  9803. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9804. type = '4'
  9805. }
  9806. _loading.style.display = 'flex'
  9807. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9808. }
  9809. }
  9810. //U.MD.D.I.openClick(str);
  9811. //如果有任务栏信息
  9812. // if (_taskbar) {
  9813. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9814. // }
  9815. }
  9816. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9817. var xmlhttp;
  9818. var Mac, Sn, DeviceId
  9819. if (window.XMLHttpRequest) {
  9820. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9821. xmlhttp = new XMLHttpRequest();
  9822. } else {
  9823. // IE6, IE5 浏览器执行代码
  9824. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9825. }
  9826. xmlhttp.onreadystatechange = function () {
  9827. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9828. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9829. // resolve(res.value[0][0].text);
  9830. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9831. }
  9832. }
  9833. }
  9834. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9835. xmlhttp.send();
  9836. }
  9837. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9838. var xmlhttp;
  9839. var Mac, Sn, DeviceId
  9840. if (window.XMLHttpRequest) {
  9841. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9842. xmlhttp = new XMLHttpRequest();
  9843. } else {
  9844. // IE6, IE5 浏览器执行代码
  9845. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9846. }
  9847. xmlhttp.onreadystatechange = function () {
  9848. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9849. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9850. // resolve(res.value[0][0].text);
  9851. if (type == '2') {
  9852. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9853. } else if (type == '3') {
  9854. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9855. } else if (type == '4') {
  9856. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9857. }
  9858. } else {
  9859. if (type == '2') {
  9860. iframe.contentWindow.editor.minder.importData('json', '')
  9861. } else if (type == '3') {
  9862. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9863. } else if (type == '4') {
  9864. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9865. }
  9866. }
  9867. }
  9868. }
  9869. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9870. xmlhttp.send();
  9871. }
  9872. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9873. var xmlhttp;
  9874. var Mac, Sn, DeviceId
  9875. if (window.XMLHttpRequest) {
  9876. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9877. xmlhttp = new XMLHttpRequest();
  9878. } else {
  9879. // IE6, IE5 浏览器执行代码
  9880. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9881. }
  9882. xmlhttp.onreadystatechange = function () {
  9883. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9884. if (xmlhttp.response) {
  9885. // resolve(res.value[0][0].text);
  9886. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9887. // $(fileInput).val('');
  9888. // });
  9889. span.innerHTML = '上传成功'
  9890. setTimeout(() => {
  9891. loading.style.display = 'none'
  9892. }, 1000);
  9893. }
  9894. }
  9895. }
  9896. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9897. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9898. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9899. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9900. // 设置请求头,表示请求体的编码格式
  9901. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9902. // 设置请求体,使用url-encoded格式的数据
  9903. }
  9904. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9905. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9906. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9907. _userinfo = US.userInfo, //登录用户信息
  9908. _userid = US.userInfo.userid //登录用户id
  9909. let _iframe;
  9910. let _cid = cid,
  9911. _stage = stage,
  9912. _task = task,
  9913. _tool = tool;
  9914. var _jie = $$("div", {
  9915. "style": {
  9916. "position": "absolute",
  9917. "bottom": "50px",
  9918. "right": "50px",
  9919. "zIndex": "9999",
  9920. "backgroundColor": "#2268bc",
  9921. "color": "#fff",
  9922. "padding": "12px 20px",
  9923. "cursor": "pointer",
  9924. "borderRadius": "4px",
  9925. },
  9926. "innerHTML": "提交作业"
  9927. })
  9928. let aTool = ''
  9929. let _loading = document.createElement('div')
  9930. _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;"
  9931. // _loading.id = "";
  9932. let _lchild = document.createElement('div')
  9933. let _limg = document.createElement('img')
  9934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9935. _limg.style = "width: 26px;margin-right: 10px;"
  9936. _lchild.appendChild(_limg)
  9937. let _lspan = document.createElement('span')
  9938. _lspan.innerHTML = "上传中..."
  9939. _lchild.appendChild(_lspan)
  9940. _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%);"
  9941. _loading.appendChild(_lchild)
  9942. var _box = $$('div', {
  9943. "style": {
  9944. "position": "relative",
  9945. "width": "100%",
  9946. "height": "100%",
  9947. },
  9948. })
  9949. _box.appendChild(_loading)
  9950. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9951. switch (str) {
  9952. case "CocoPi":
  9953. aTool = 57;
  9954. _iframe = $$("iframe", {
  9955. "allowpaymentrequest": "allowpaymentrequest",
  9956. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9957. "webkitallowfullscreen": "",
  9958. "mozallowfullscreen": "",
  9959. "frameborder": "no",
  9960. "border": "0",
  9961. "scrolling ": "no",
  9962. "style": {
  9963. "cssText": "border:0;width:100%;height:100%"
  9964. },
  9965. "src": "https://pi.cocorobo.cn/"
  9966. })
  9967. _box.appendChild(_iframe);
  9968. _box.appendChild(_jie);
  9969. _formdiv = new U.UF.UI.form(
  9970. "CocoPi",
  9971. _box, {
  9972. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9973. "style": {
  9974. "width": "90%",
  9975. "height": "90%",
  9976. "overflow": 'hidden'
  9977. },
  9978. "onresize": function () { }
  9979. }, {
  9980. closecallback: function () { }
  9981. }, {
  9982. "style": {
  9983. "height": "36px"
  9984. }
  9985. }).form; //创建窗体
  9986. _taskbar = {
  9987. "id": str + _formdiv.id,
  9988. "style": {
  9989. "backgroundImage": "url(/img/icon/cocopi.png)"
  9990. },
  9991. "name": "CocoPi",
  9992. "forms": _formdiv,
  9993. "click": function () {
  9994. U.MD.D.I.openApplication(str, obj, info);
  9995. }
  9996. }
  9997. break;
  9998. }
  9999. if (_iframe) {
  10000. if (str == 'CocoPi') {
  10001. _iframe = _formdiv.querySelector('iframe')
  10002. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10003. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10004. })
  10005. if (onloadListener) {
  10006. _iframe.contentDocument.location.reload()
  10007. } else {
  10008. _iframe.contentDocument.location.reload()
  10009. }
  10010. }
  10011. _jie.onclick = async () => {
  10012. let text = ''
  10013. if (aTool == 57) {
  10014. text = _iframe.contentWindow.getLoadXmlStr()
  10015. }
  10016. _loading.style.display = 'flex'
  10017. console.log(_loading);
  10018. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10019. _loading.style.display = 'none'
  10020. let _div = document.createElement('div')
  10021. _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;"
  10022. let _inner = document.createElement('div')
  10023. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10024. _inner.innerHTML = "上传成功"
  10025. _div.appendChild(_inner)
  10026. _iframe.contentWindow.window.document.body.appendChild(_div)
  10027. _div.onclick = () => {
  10028. _iframe.contentWindow.window.document.body.removeChild(_div)
  10029. }
  10030. setTimeout(() => {
  10031. _iframe.contentWindow.window.document.body.removeChild(_div)
  10032. }, 1000);
  10033. }, [], { "type": "POST", "withCredentials": true });
  10034. }
  10035. }
  10036. }
  10037. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10038. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10039. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10040. _userid = student.userid, //登录用户id
  10041. _username = student.student //用户名字
  10042. let _iframe;
  10043. let _cid = cid,
  10044. _stage = stage,
  10045. _task = task,
  10046. _tool = tool;
  10047. var _jie = $$("div", {
  10048. "style": {
  10049. "position": "absolute",
  10050. "bottom": "50px",
  10051. "right": "50px",
  10052. "zIndex": "9999",
  10053. "backgroundColor": "#2268bc",
  10054. "color": "#fff",
  10055. "padding": "12px 20px",
  10056. "cursor": "pointer",
  10057. "borderRadius": "4px",
  10058. },
  10059. "innerHTML": "提交作业"
  10060. })
  10061. let aTool = ''
  10062. let _loading = document.createElement('div')
  10063. _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;"
  10064. // _loading.id = "";
  10065. let _lchild = document.createElement('div')
  10066. let _limg = document.createElement('img')
  10067. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10068. _limg.style = "width: 26px;margin-right: 10px;"
  10069. _lchild.appendChild(_limg)
  10070. let _lspan = document.createElement('span')
  10071. _lspan.innerHTML = "上传中..."
  10072. _lchild.appendChild(_lspan)
  10073. _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%);"
  10074. _loading.appendChild(_lchild)
  10075. var _box = $$('div', {
  10076. "style": {
  10077. "position": "relative",
  10078. "width": "100%",
  10079. "height": "100%",
  10080. },
  10081. })
  10082. _box.appendChild(_loading)
  10083. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10084. switch (str) {
  10085. case "CocoPi":
  10086. aTool = 57;
  10087. _iframe = $$("iframe", {
  10088. "allowpaymentrequest": "allowpaymentrequest",
  10089. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10090. "webkitallowfullscreen": "",
  10091. "mozallowfullscreen": "",
  10092. "frameborder": "no",
  10093. "border": "0",
  10094. "scrolling ": "no",
  10095. "style": {
  10096. "cssText": "border:0;width:100%;height:100%"
  10097. },
  10098. "src": "https://pi.cocorobo.cn/"
  10099. })
  10100. _box.appendChild(_iframe);
  10101. _box.appendChild(_jie);
  10102. _formdiv = new U.UF.UI.form(
  10103. "CocoPi-" + _username,
  10104. _box, {
  10105. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10106. "style": {
  10107. "width": "90%",
  10108. "height": "90%",
  10109. "overflow": 'hidden'
  10110. },
  10111. "onresize": function () { }
  10112. }, {
  10113. closecallback: function () { }
  10114. }, {
  10115. "style": {
  10116. "height": "36px"
  10117. }
  10118. }).form; //创建窗体
  10119. _taskbar = {
  10120. "id": str + _formdiv.id,
  10121. "style": {
  10122. "backgroundImage": "url(/img/icon/cocopi.png)"
  10123. },
  10124. "name": "CocoPi",
  10125. "forms": _formdiv,
  10126. "click": function () {
  10127. U.MD.D.I.openApplication(str, obj, info);
  10128. }
  10129. }
  10130. break;
  10131. }
  10132. if (_iframe) {
  10133. if (str == 'CocoPi') {
  10134. _iframe = _formdiv.querySelector('iframe')
  10135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10136. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10137. })
  10138. if (onloadListener) {
  10139. _iframe.contentDocument.location.reload()
  10140. } else {
  10141. _iframe.contentDocument.location.reload()
  10142. }
  10143. }
  10144. _jie.onclick = async () => {
  10145. let text = ''
  10146. if (aTool == 57) {
  10147. text = _iframe.contentWindow.getLoadXmlStr()
  10148. }
  10149. _loading.style.display = 'flex'
  10150. console.log(_loading);
  10151. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10152. _loading.style.display = 'none'
  10153. let _div = document.createElement('div')
  10154. _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;"
  10155. let _inner = document.createElement('div')
  10156. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10157. _inner.innerHTML = "上传成功"
  10158. _div.appendChild(_inner)
  10159. _iframe.contentWindow.window.document.body.appendChild(_div)
  10160. _div.onclick = () => {
  10161. _iframe.contentWindow.window.document.body.removeChild(_div)
  10162. }
  10163. setTimeout(() => {
  10164. _iframe.contentWindow.window.document.body.removeChild(_div)
  10165. }, 1000);
  10166. }, [], { "type": "POST", "withCredentials": true });
  10167. }
  10168. }
  10169. }
  10170. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10171. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10172. if (res.value[0].length > 0) {
  10173. if (atool == 57) {
  10174. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10175. }
  10176. } else {
  10177. if (atool == 57) {
  10178. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10179. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10180. }
  10181. }
  10182. }, [], { "type": "POST", "withCredentials": true });
  10183. }