DeskTop.js 656 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528
  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. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1520. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1525. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503StudentDeskIcon = [
  1529. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1533. ];
  1534. //SPROUT Lab
  1535. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1536. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1537. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1538. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1539. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1540. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1543. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1545. ];
  1546. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. ];
  1552. //010204
  1553. U.MD.D.I.x010204TeacherDeskIcon = [
  1554. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1555. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //trail
  1565. U.MD.D.I.trailTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailStudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //010504
  1577. U.MD.D.I.x010504TeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1581. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1585. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504StudentDeskIcon = [
  1589. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //SCNUET
  1595. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1601. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1602. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1603. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1604. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1605. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1606. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1607. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1608. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1609. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1610. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1611. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1613. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1614. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1615. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1616. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1617. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1618. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1619. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1620. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1621. ];
  1622. //SCNUET
  1623. U.MD.D.I.SCNUETAdminDeskIcon = [
  1624. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1628. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1629. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1630. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1631. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1635. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1636. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1637. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1638. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1641. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1642. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1643. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1644. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1645. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1646. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1647. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1648. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1649. ];
  1650. //SCNUET
  1651. U.MD.D.I.SCNUETStudentDeskIcon = [
  1652. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1655. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1656. ];
  1657. //x020201
  1658. U.MD.D.I.x020201TeacherDeskIcon = [
  1659. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1660. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1662. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1663. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1669. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1670. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1671. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1672. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1673. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1674. ];
  1675. //x020201
  1676. U.MD.D.I.x020201AdminDeskIcon = [
  1677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. ];
  1694. //020201
  1695. U.MD.D.I.x020201StudentDeskIcon = [
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1698. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010611
  1702. U.MD.D.I.x010611TeacherDeskIcon = [
  1703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. ];
  1713. //010611
  1714. U.MD.D.I.x010611StudentDeskIcon = [
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //tianyuan
  1721. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1725. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1729. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1730. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1731. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1732. ];
  1733. //010611
  1734. U.MD.D.I.tianyuanStudentDeskIcon = [
  1735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1737. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1739. ];
  1740. //#region 桌面初始化a
  1741. /**
  1742. * 初始化桌面的起始函数
  1743. *
  1744. */
  1745. U.MD.D.I.init = function () {
  1746. if ($("#U_MD_D_K")[0]) {
  1747. //初始化桌面图标
  1748. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1749. // var clickUrl = ':12588/requestIp.php';
  1750. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1751. // U.MD.D.I.Ip = data;
  1752. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1753. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1754. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1755. // })
  1756. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1757. // })
  1758. }
  1759. }
  1760. /**
  1761. * 模式切换
  1762. *
  1763. */
  1764. U.MD.D.I.ModeCheck = function (type) {
  1765. if (US.Config.type == type) {
  1766. return
  1767. }
  1768. US.Config.type = type
  1769. $('.U_PBL_Check .active')[0].className = ''
  1770. if (type == 1) {
  1771. $('.U_PBL_Check div')[0].className = 'active'
  1772. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1773. } else {
  1774. $('.U_PBL_Check div')[1].className = 'active'
  1775. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1776. }
  1777. //初始化桌面图标
  1778. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1779. if (type == 2) {
  1780. U.MD.D.I.openApplication("project")
  1781. }
  1782. }
  1783. /**
  1784. * 隐藏任务栏
  1785. *
  1786. * @param {element} 桌面元素
  1787. */
  1788. U.MD.D.I.hiddenTaskbar = function (el) {
  1789. //任务栏位置变小
  1790. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1791. //桌面的位置变大
  1792. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1793. }
  1794. /**
  1795. * 隐藏任务栏
  1796. *
  1797. * @param {element} 桌面元素
  1798. */
  1799. U.MD.D.I.hiddenTaskbarout = function (el) {
  1800. //任务栏位置变小
  1801. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1802. //任务栏位置变化
  1803. U.selectEl(el).css({ "bottom": "-60px" });
  1804. //桌面的位置变大
  1805. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1806. }
  1807. }
  1808. /**
  1809. * 初始化打印桌面图标
  1810. *
  1811. * @param {element} 桌面元素
  1812. */
  1813. U.MD.D.I.initDesktopIcons = function (el, type) {
  1814. var i, //用于循环
  1815. _content, //桌面图标元素
  1816. _iconcontent, //桌面图标元素
  1817. _frag = $$("frag"), //定义一个碎片元素
  1818. _type = US.userInfo.type,
  1819. _org = US.userInfo.org,
  1820. _oid = US.userInfo.organizeid,
  1821. _role = US.userInfo.role,
  1822. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1823. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1824. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1825. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1826. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1827. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1828. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1829. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1830. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1831. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1832. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1833. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1834. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1835. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1836. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1837. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1838. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1839. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1840. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1841. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1842. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1843. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1844. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1845. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1846. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1847. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1848. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1849. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1850. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1851. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1852. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1853. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1854. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1855. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1856. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1857. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1858. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1859. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1860. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1861. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1862. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1863. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1864. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1865. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1866. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1867. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1868. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1869. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1870. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1871. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1872. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1873. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1874. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1875. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1876. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1877. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1878. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1879. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1880. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1881. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1882. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1883. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1884. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1885. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1886. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1887. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1888. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1889. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1890. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1891. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1892. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1893. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1894. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1895. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1896. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1897. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1898. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1899. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1900. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1901. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1902. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1903. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1904. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1905. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1906. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1907. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1908. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1909. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1910. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1911. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1912. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1913. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1914. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1915. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1916. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1917. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1918. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1919. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1920. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1921. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1922. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1923. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1924. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1925. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1926. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1927. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1928. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1929. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1930. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1931. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1932. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1933. 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'];
  1934. 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'];
  1935. //清楚桌面图标
  1936. el.innerHTML = "";
  1937. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1938. _teacherDesktopIconInfo.push(
  1939. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1940. { "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)" } },
  1941. )
  1942. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1943. }
  1944. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1945. _teacherDesktopIconInfo.push(
  1946. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1947. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1948. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1949. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1950. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1951. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1952. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1953. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1954. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1955. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1956. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1957. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1958. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1959. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1960. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1963. // { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1964. )
  1965. }
  1966. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1967. _teacherDesktopIconInfo.push(
  1968. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1969. )
  1970. }
  1971. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1972. // _teacherDesktopIconInfo.push(
  1973. // )
  1974. // }
  1975. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1976. _teacherDesktopIconInfo.push(
  1977. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1978. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1979. )
  1980. }
  1981. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1982. _teacherDesktopIconInfo.push(
  1983. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1984. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1985. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1986. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1987. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1988. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1989. )
  1990. _studentDesktopIconInfo.push(
  1991. )
  1992. }
  1993. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1994. _teacherDesktopIconInfo.push(
  1995. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1996. )
  1997. _studentDesktopIconInfo.push(
  1998. )
  1999. }
  2000. //010606 组织
  2001. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2002. _teacherDesktopIconInfo.push(
  2003. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2004. )
  2005. _studentDesktopIconInfo.push(
  2006. )
  2007. }
  2008. //麒麟二中 和 民新小学
  2009. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2010. _teacherDesktopIconInfo.push(
  2011. )
  2012. }
  2013. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2014. _teacherDesktopIconInfo.push(
  2015. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2016. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2017. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2018. )
  2019. }
  2020. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2021. _hkTeacherDeskIconInfo.push(
  2022. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2023. )
  2024. }
  2025. //北师大附中(010601)
  2026. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2027. // _teacherDesktopIconInfo.push(
  2028. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2029. // )
  2030. // _studentDesktopIconInfo.push(
  2031. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2032. // )
  2033. // }
  2034. //樂善堂余近卿中學
  2035. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2036. _teacherDesktopIconInfo.push(
  2037. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2038. )
  2039. }
  2040. // Education Artificial Intelligence
  2041. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2042. _teacherDesktopIconInfo.push(
  2043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2044. )
  2045. }
  2046. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2047. _teacherDesktopIconInfo.push(
  2048. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2049. )
  2050. }
  2051. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2052. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2053. _teacherDesktopIconInfo.push(
  2054. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2056. )
  2057. }
  2058. //麒麟二中
  2059. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2060. _studentDesktopIconInfo.push(
  2061. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2062. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2063. )
  2064. }
  2065. //万科双语
  2066. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2067. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2068. if (el.Name == '项目管理') {
  2069. el.Name = 'PBL项目'
  2070. }
  2071. return el
  2072. })
  2073. _studentDesktopIconInfo3.push(
  2074. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2075. )
  2076. }
  2077. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2078. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2079. return el.Name != '魔盒识字' && el.Name != '24点'
  2080. })
  2081. }
  2082. 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) {
  2083. _studentDesktopIconInfo.push(
  2084. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2085. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2086. )
  2087. }
  2088. //循环创建桌面图标
  2089. if (type == 1) {
  2090. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2091. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_studentDesktopIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_studentDesktopIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2108. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_hkZJLSStudentDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2123. } //
  2124. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2125. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_ytyStudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_ytyStudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2140. } //
  2141. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2142. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_jccssylStudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_jccssylStudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2159. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_scnuaiStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_scnuaiStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. }
  2175. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2176. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_caleStudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_caleStudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2193. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_thuioeStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_thuioeStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2210. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_tpcStudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_tpcStudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2225. } //
  2226. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2227. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_chjyjStudentDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_chjyjStudentDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2244. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_szjkyStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_szjkyStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2261. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_x020201StudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_x020201StudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2278. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_SCNUETStudentDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_SCNUETStudentDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2295. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_dseiStudentDeskIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_dseiStudentDeskIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2312. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2329. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_nsfxStudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_nsfxStudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2346. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_stiaStudentDeskIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_stiaStudentDeskIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2363. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_szdjgStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_szdjgStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2380. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_x010607StudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_x010607StudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2397. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_xhlyStudentDeskIconInfo[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_xhlyStudentDeskIconInfo[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2414. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2429. }
  2430. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2431. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2432. _content = $$("div", {
  2433. className: "U_MD_D_KO",
  2434. "onmousedown": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_x010503StudentDeskIconInfo[i]]),
  2438. "onclick": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_x010503StudentDeskIconInfo[i]])
  2442. }, _frag); //
  2443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2446. }
  2447. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2448. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2449. _content = $$("div", {
  2450. className: "U_MD_D_KO",
  2451. "onmousedown": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_x010504StudentDeskIconInfo[i]]),
  2455. "onclick": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_x010504StudentDeskIconInfo[i]])
  2459. }, _frag); //
  2460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2463. }
  2464. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2465. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2466. _content = $$("div", {
  2467. className: "U_MD_D_KO",
  2468. "onmousedown": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x010204StudentDeskIconInfo[i]]),
  2472. "onclick": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_x010204StudentDeskIconInfo[i]])
  2476. }, _frag); //
  2477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2480. }
  2481. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2482. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2483. _content = $$("div", {
  2484. className: "U_MD_D_KO",
  2485. "onmousedown": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_trailStudentDeskIconInfo[i]]),
  2489. "onclick": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_trailStudentDeskIconInfo[i]])
  2493. }, _frag); //
  2494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2497. }
  2498. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2499. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2500. _content = $$("div", {
  2501. className: "U_MD_D_KO",
  2502. "onmousedown": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2506. "onclick": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2510. }, _frag); //
  2511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2514. }
  2515. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2516. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2517. _content = $$("div", {
  2518. className: "U_MD_D_KO",
  2519. "onmousedown": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_x010608StudentDeskIconInfo[i]]),
  2523. "onclick": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_x010608StudentDeskIconInfo[i]])
  2527. }, _frag); //
  2528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2531. }
  2532. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2533. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_x010611StudentDeskIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_x010611StudentDeskIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2550. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_tianyuantudentDeskIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_tianyuantudentDeskIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2567. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2568. _content = $$("div", {
  2569. className: "U_MD_D_KO",
  2570. "onmousedown": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_siesStudentDeskIconInfo[i]]),
  2574. "onclick": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_siesStudentDeskIconInfo[i]])
  2578. }, _frag); //
  2579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2582. }
  2583. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2584. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2585. _content = $$("div", {
  2586. className: "U_MD_D_KO",
  2587. "onmousedown": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_guzmsStudentDeskIconInfo[i]]),
  2591. "onclick": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_guzmsStudentDeskIconInfo[i]])
  2595. }, _frag); //
  2596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2599. }
  2600. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2601. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2602. _content = $$("div", {
  2603. className: "U_MD_D_KO",
  2604. "onmousedown": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_hkStudentDeskIconInfo[i]]),
  2608. "onclick": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_hkStudentDeskIconInfo[i]])
  2612. }, _frag); //
  2613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2616. }
  2617. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2618. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2619. _content = $$("div", {
  2620. className: "U_MD_D_KO",
  2621. "onmousedown": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_hkaceStudentDeskIconInfo[i]]),
  2625. "onclick": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_hkaceStudentDeskIconInfo[i]])
  2629. }, _frag); //
  2630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2633. }
  2634. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2635. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2636. _content = $$("div", {
  2637. className: "U_MD_D_KO",
  2638. "onmousedown": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2642. "onclick": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_BSDNSstudentDesktopIconInfo[i]])
  2646. }, _frag); //
  2647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2650. }
  2651. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2652. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2653. _content = $$("div", {
  2654. className: "U_MD_D_KO",
  2655. "onmousedown": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_cocobizStudentDeskIconInfo[i]]),
  2659. "onclick": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_cocobizStudentDeskIconInfo[i]])
  2663. }, _frag); //
  2664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2667. }
  2668. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2669. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2670. _content = $$("div", {
  2671. className: "U_MD_D_KO",
  2672. "onmousedown": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2676. "onclick": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_xxzjkyStudentDeskIconInfo[i]])
  2680. }, _frag); //
  2681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2684. }
  2685. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2686. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2687. _content = $$("div", {
  2688. className: "U_MD_D_KO",
  2689. "onmousedown": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_studentDesktopIconInfo[i]]),
  2693. "onclick": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_studentDesktopIconInfo[i]])
  2697. }, _frag); //
  2698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2701. }
  2702. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2703. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2704. _content = $$("div", {
  2705. className: "U_MD_D_KO",
  2706. "onmousedown": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_tcStudentDeskIconInfo[i]]),
  2710. "onclick": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_tcStudentDeskIconInfo[i]])
  2714. }, _frag); //
  2715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2718. }
  2719. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2720. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2721. _content = $$("div", {
  2722. className: "U_MD_D_KO",
  2723. "onmousedown": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_szscStudentDeskIconInfo[i]]),
  2727. "onclick": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_szscStudentDeskIconInfo[i]])
  2731. }, _frag); //
  2732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2735. }
  2736. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2737. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2738. _content = $$("div", {
  2739. className: "U_MD_D_KO",
  2740. "onmousedown": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_studentDesktopIconInfo3[i]]),
  2744. "onclick": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_studentDesktopIconInfo3[i]])
  2748. }, _frag); //
  2749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2752. }
  2753. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2754. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2755. _content = $$("div", {
  2756. className: "U_MD_D_KO",
  2757. "onmousedown": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_studentDesktopIconInfo2[i]]),
  2761. "onclick": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_studentDesktopIconInfo2[i]])
  2765. }, _frag); //
  2766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2769. }
  2770. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2771. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2772. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2773. continue
  2774. }
  2775. _content = $$("div", {
  2776. className: "U_MD_D_KO",
  2777. "onmousedown": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_wanketeacherDesktopIconInfo[i]]),
  2781. "onclick": U.UF.C.closure(function (obj) {
  2782. //防止拖动图标即打开了桌面应用
  2783. U.MD.D.click(this, obj);
  2784. }, [_wanketeacherDesktopIconInfo[i]])
  2785. }, _frag); //
  2786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2789. }
  2790. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2791. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_wankeAdminDesktopIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_wankeAdminDesktopIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2808. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2809. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2810. continue
  2811. }
  2812. _content = $$("div", {
  2813. className: "U_MD_D_KO",
  2814. "onmousedown": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2818. "onclick": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_scnuaiTeacherDeskIconInfo[i]])
  2822. }, _frag); //
  2823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2826. }
  2827. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2828. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2829. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2830. continue
  2831. }
  2832. _content = $$("div", {
  2833. className: "U_MD_D_KO",
  2834. "onmousedown": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_BSDNSteacherDesktopIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2848. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_scnuaiAdminDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_scnuaiAdminDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2865. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2866. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2867. continue
  2868. }
  2869. _content = $$("div", {
  2870. className: "U_MD_D_KO",
  2871. "onmousedown": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_jccssylTeacherDeskIconInfo[i]]),
  2875. "onclick": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_jccssylTeacherDeskIconInfo[i]])
  2879. }, _frag); //
  2880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2883. }
  2884. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2885. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2886. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2887. continue
  2888. }
  2889. _content = $$("div", {
  2890. className: "U_MD_D_KO",
  2891. "onmousedown": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_caleTeacherDeskIconInfo[i]]),
  2895. "onclick": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_caleTeacherDeskIconInfo[i]])
  2899. }, _frag); //
  2900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2903. }
  2904. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2905. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_tpcOrganizerDeskIconInfo[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_tpcOrganizerDeskIconInfo[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2920. }
  2921. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2922. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2923. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2924. continue
  2925. }
  2926. _content = $$("div", {
  2927. className: "U_MD_D_KO",
  2928. "onmousedown": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_tpcTeacherDeskIconInfo[i]]),
  2932. "onclick": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_tpcTeacherDeskIconInfo[i]])
  2936. }, _frag); //
  2937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2940. }
  2941. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2942. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2943. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2944. continue
  2945. }
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_teacherDesktopIconInfo2[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_teacherDesktopIconInfo2[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2960. }
  2961. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2962. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2963. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2964. continue
  2965. }
  2966. _content = $$("div", {
  2967. className: "U_MD_D_KO",
  2968. "onmousedown": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_thuioeTeacherDeskIconInfo[i]]),
  2972. "onclick": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_thuioeTeacherDeskIconInfo[i]])
  2976. }, _frag); //
  2977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2980. }
  2981. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2982. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2983. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2984. continue
  2985. }
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_lotechTeacherDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_lotechTeacherDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3000. }//
  3001. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3002. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3003. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3004. continue
  3005. }
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3022. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3023. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3024. continue
  3025. }
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_siesTeacherDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_siesTeacherDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3042. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3043. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3044. continue
  3045. }
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_guzmsTeacherDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_guzmsTeacherDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3062. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3063. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_longhuaTeacherDeskIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_longhuaTeacherDeskIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3080. }
  3081. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3082. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3083. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3084. continue
  3085. }
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_ytyTeacherDeskIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_ytyTeacherDeskIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3102. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3103. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3104. continue
  3105. }
  3106. _content = $$("div", {
  3107. className: "U_MD_D_KO",
  3108. "onmousedown": U.UF.C.closure(function (obj) {
  3109. //防止拖动图标即打开了桌面应用
  3110. U.MD.D.click(this, obj);
  3111. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3112. "onclick": U.UF.C.closure(function (obj) {
  3113. //防止拖动图标即打开了桌面应用
  3114. U.MD.D.click(this, obj);
  3115. }, [_yunhaiTeacherDeskIconInfo[i]])
  3116. }, _frag); //
  3117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3120. } //_hkStudentDeskIconInfo
  3121. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3122. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3123. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3124. continue
  3125. }
  3126. _content = $$("div", {
  3127. className: "U_MD_D_KO",
  3128. "onmousedown": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3132. "onclick": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3136. }, _frag); //
  3137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3140. }
  3141. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3142. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3143. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3144. continue
  3145. }
  3146. _content = $$("div", {
  3147. className: "U_MD_D_KO",
  3148. "onmousedown": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_hkTeacherDeskIconInfo[i]]),
  3152. "onclick": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_hkTeacherDeskIconInfo[i]])
  3156. }, _frag); //
  3157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3160. }
  3161. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3162. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3163. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3164. continue
  3165. }
  3166. _content = $$("div", {
  3167. className: "U_MD_D_KO",
  3168. "onmousedown": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_hkaceTeacherDeskIconInfo[i]]),
  3172. "onclick": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_hkaceTeacherDeskIconInfo[i]])
  3176. }, _frag); //
  3177. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3178. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3179. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3180. }
  3181. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3182. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3183. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3184. continue
  3185. }
  3186. _content = $$("div", {
  3187. className: "U_MD_D_KO",
  3188. "onmousedown": U.UF.C.closure(function (obj) {
  3189. //防止拖动图标即打开了桌面应用
  3190. U.MD.D.click(this, obj);
  3191. }, [_cocobizTeacherDeskIconInfo[i]]),
  3192. "onclick": U.UF.C.closure(function (obj) {
  3193. //防止拖动图标即打开了桌面应用
  3194. U.MD.D.click(this, obj);
  3195. }, [_cocobizTeacherDeskIconInfo[i]])
  3196. }, _frag); //
  3197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3200. }
  3201. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3202. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3203. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3204. continue
  3205. }
  3206. _content = $$("div", {
  3207. className: "U_MD_D_KO",
  3208. "onmousedown": U.UF.C.closure(function (obj) {
  3209. //防止拖动图标即打开了桌面应用
  3210. U.MD.D.click(this, obj);
  3211. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3212. "onclick": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3216. }, _frag); //
  3217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3220. }
  3221. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3222. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3223. _content = $$("div", {
  3224. className: "U_MD_D_KO",
  3225. "onmousedown": U.UF.C.closure(function (obj) {
  3226. //防止拖动图标即打开了桌面应用
  3227. U.MD.D.click(this, obj);
  3228. }, [_gdjgAdminDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_gdjgAdminDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3239. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3240. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3241. continue
  3242. }
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖动图标即打开了桌面应用
  3247. U.MD.D.click(this, obj);
  3248. }, [_gdjgTeacherDeskIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_gdjgTeacherDeskIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3259. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3260. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3261. continue
  3262. }
  3263. _content = $$("div", {
  3264. className: "U_MD_D_KO",
  3265. "onmousedown": U.UF.C.closure(function (obj) {
  3266. //防止拖动图标即打开了桌面应用
  3267. U.MD.D.click(this, obj);
  3268. }, [_szherTeacherDeskIconInfo[i]]),
  3269. "onclick": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_szherTeacherDeskIconInfo[i]])
  3273. }, _frag); //
  3274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3277. }
  3278. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3279. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3280. _content = $$("div", {
  3281. className: "U_MD_D_KO",
  3282. "onmousedown": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_heyuannAdminDeskIconInfo[i]]),
  3286. "onclick": U.UF.C.closure(function (obj) {
  3287. //防止拖动图标即打开了桌面应用
  3288. U.MD.D.click(this, obj);
  3289. }, [_heyuannAdminDeskIconInfo[i]])
  3290. }, _frag); //
  3291. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3292. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3293. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3294. }
  3295. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3296. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3297. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3298. continue
  3299. }
  3300. _content = $$("div", {
  3301. className: "U_MD_D_KO",
  3302. "onmousedown": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_heyuanTeacherDeskIconInfo[i]]),
  3306. "onclick": U.UF.C.closure(function (obj) {
  3307. //防止拖动图标即打开了桌面应用
  3308. U.MD.D.click(this, obj);
  3309. }, [_heyuanTeacherDeskIconInfo[i]])
  3310. }, _frag); //
  3311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3314. } //
  3315. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3316. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3317. _content = $$("div", {
  3318. className: "U_MD_D_KO",
  3319. "onmousedown": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_dseiAdminDeskIconInfo[i]]),
  3323. "onclick": U.UF.C.closure(function (obj) {
  3324. //防止拖动图标即打开了桌面应用
  3325. U.MD.D.click(this, obj);
  3326. }, [_dseiAdminDeskIconInfo[i]])
  3327. }, _frag); //
  3328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3331. }
  3332. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3333. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3334. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3335. continue
  3336. }
  3337. _content = $$("div", {
  3338. className: "U_MD_D_KO",
  3339. "onmousedown": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_dseiTeacherDeskIconInfo[i]]),
  3343. "onclick": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_dseiTeacherDeskIconInfo[i]])
  3347. }, _frag); //
  3348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3351. } //
  3352. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3353. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_chjyjAdminDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_chjyjAdminDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3368. }//
  3369. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3370. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3371. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3372. continue
  3373. }
  3374. _content = $$("div", {
  3375. className: "U_MD_D_KO",
  3376. "onmousedown": U.UF.C.closure(function (obj) {
  3377. //防止拖动图标即打开了桌面应用
  3378. U.MD.D.click(this, obj);
  3379. }, [_chjyjTeacherDeskIconInfo[i]]),
  3380. "onclick": U.UF.C.closure(function (obj) {
  3381. //防止拖动图标即打开了桌面应用
  3382. U.MD.D.click(this, obj);
  3383. }, [_chjyjTeacherDeskIconInfo[i]])
  3384. }, _frag); //
  3385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3388. }
  3389. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3390. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3391. _content = $$("div", {
  3392. className: "U_MD_D_KO",
  3393. "onmousedown": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_szjkyAdminDeskIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_szjkyAdminDeskIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3405. }//
  3406. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3407. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3408. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3409. continue
  3410. }
  3411. _content = $$("div", {
  3412. className: "U_MD_D_KO",
  3413. "onmousedown": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_szjkyTeacherDeskIconInfo[i]]),
  3417. "onclick": U.UF.C.closure(function (obj) {
  3418. //防止拖动图标即打开了桌面应用
  3419. U.MD.D.click(this, obj);
  3420. }, [_szjkyTeacherDeskIconInfo[i]])
  3421. }, _frag); //
  3422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3425. }
  3426. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3427. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_x020201AdminDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_x020201AdminDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3442. }//
  3443. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3444. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_x020201TeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_x020201TeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3464. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_SCNUETAdminDeskIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_SCNUETAdminDeskIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3479. }//
  3480. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3481. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3482. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3483. continue
  3484. }
  3485. _content = $$("div", {
  3486. className: "U_MD_D_KO",
  3487. "onmousedown": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3491. "onclick": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_SCNUETTeacherDeskIconInfo[i]])
  3495. }, _frag); //
  3496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3499. }
  3500. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3501. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_futianAdminDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_futianAdminDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3518. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3519. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3520. continue
  3521. }
  3522. _content = $$("div", {
  3523. className: "U_MD_D_KO",
  3524. "onmousedown": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_futianTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_futianTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3538. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3539. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3540. continue
  3541. }
  3542. _content = $$("div", {
  3543. className: "U_MD_D_KO",
  3544. "onmousedown": U.UF.C.closure(function (obj) {
  3545. //防止拖动图标即打开了桌面应用
  3546. U.MD.D.click(this, obj);
  3547. }, [_MingdeTeacherDeskIcon[i]]),
  3548. "onclick": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_MingdeTeacherDeskIcon[i]])
  3552. }, _frag); //
  3553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3556. }
  3557. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3558. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_lhsAdminDesktopIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_lhsAdminDesktopIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3575. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3576. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3577. continue
  3578. }
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_lhsteacherDesktopIconInfo[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_lhsteacherDesktopIconInfo[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3595. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3596. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_zhoujiateacherDesktopIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3615. for (i = 0; i < _hanDeskIcon.length; i++) {
  3616. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3617. continue
  3618. }
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_hanDeskIcon[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_hanDeskIcon[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3633. }
  3634. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3635. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3636. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_orgStemDeskIcon[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_orgStemDeskIcon[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3655. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3656. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_szulsDeskIcon[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_szulsDeskIcon[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3675. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3676. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_orgDesktopIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_orgDesktopIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3695. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3696. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3697. continue
  3698. }
  3699. _content = $$("div", {
  3700. className: "U_MD_D_KO",
  3701. "onmousedown": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_schoolDesktopIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_schoolDesktopIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3715. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3716. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3717. continue
  3718. }
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_GMteacherDesktopIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_GMteacherDesktopIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3735. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3736. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_SONGteacherDesktopIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_SONGteacherDesktopIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3753. }
  3754. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3755. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3756. _content = $$("div", {
  3757. className: "U_MD_D_KO",
  3758. "onmousedown": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_GMstudentDesktopIconInfo[i]]),
  3762. "onclick": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_GMstudentDesktopIconInfo[i]])
  3766. }, _frag); //
  3767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3770. }
  3771. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3772. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3773. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3774. continue
  3775. }
  3776. _content = $$("div", {
  3777. className: "U_MD_D_KO",
  3778. "onmousedown": U.UF.C.closure(function (obj) {
  3779. //防止拖动图标即打开了桌面应用
  3780. U.MD.D.click(this, obj);
  3781. }, [_tcTeacherDeskIconInfo[i]]),
  3782. "onclick": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_tcTeacherDeskIconInfo[i]])
  3786. }, _frag); //
  3787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3790. }
  3791. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3792. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3793. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3794. continue
  3795. }
  3796. _content = $$("div", {
  3797. className: "U_MD_D_KO",
  3798. "onmousedown": U.UF.C.closure(function (obj) {
  3799. //防止拖动图标即打开了桌面应用
  3800. U.MD.D.click(this, obj);
  3801. }, [_tcOrganizerDeskIconInfo[i]]),
  3802. "onclick": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_tcOrganizerDeskIconInfo[i]])
  3806. }, _frag); //
  3807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3810. }
  3811. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3812. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3813. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3814. continue
  3815. }
  3816. _content = $$("div", {
  3817. className: "U_MD_D_KO",
  3818. "onmousedown": U.UF.C.closure(function (obj) {
  3819. //防止拖动图标即打开了桌面应用
  3820. U.MD.D.click(this, obj);
  3821. }, [_szscTeacherDeskIconInfo[i]]),
  3822. "onclick": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_szscTeacherDeskIconInfo[i]])
  3826. }, _frag); //
  3827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3830. }
  3831. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3832. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3833. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3834. continue
  3835. }
  3836. _content = $$("div", {
  3837. className: "U_MD_D_KO",
  3838. "onmousedown": U.UF.C.closure(function (obj) {
  3839. //防止拖动图标即打开了桌面应用
  3840. U.MD.D.click(this, obj);
  3841. }, [_szscOrganizerDeskIconInfo[i]]),
  3842. "onclick": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_szscOrganizerDeskIconInfo[i]])
  3846. }, _frag); //
  3847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3850. }
  3851. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3852. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3853. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3854. continue
  3855. }
  3856. _content = $$("div", {
  3857. className: "U_MD_D_KO",
  3858. "onmousedown": U.UF.C.closure(function (obj) {
  3859. //防止拖动图标即打开了桌面应用
  3860. U.MD.D.click(this, obj);
  3861. }, [_nsfxTeacherDeskIconInfo[i]]),
  3862. "onclick": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_nsfxTeacherDeskIconInfo[i]])
  3866. }, _frag); //
  3867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3870. }
  3871. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3872. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3873. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3874. continue
  3875. }
  3876. _content = $$("div", {
  3877. className: "U_MD_D_KO",
  3878. "onmousedown": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_stiaTeacherDeskIconInfo[i]]),
  3882. "onclick": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_stiaTeacherDeskIconInfo[i]])
  3886. }, _frag); //
  3887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3890. }
  3891. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3892. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3893. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3894. continue
  3895. }
  3896. _content = $$("div", {
  3897. className: "U_MD_D_KO",
  3898. "onmousedown": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_szdjgTeacherDeskIconInfo[i]]),
  3902. "onclick": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_szdjgTeacherDeskIconInfo[i]])
  3906. }, _frag); //
  3907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3910. }
  3911. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3912. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3913. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3914. continue
  3915. }
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_x010607TeacherDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_x010607TeacherDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3932. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3933. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_xhlyTeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_xhlyTeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3952. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3953. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3972. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3973. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3974. continue
  3975. }
  3976. _content = $$("div", {
  3977. className: "U_MD_D_KO",
  3978. "onmousedown": U.UF.C.closure(function (obj) {
  3979. //防止拖动图标即打开了桌面应用
  3980. U.MD.D.click(this, obj);
  3981. }, [_x010503TeacherDeskIconInfo[i]]),
  3982. "onclick": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_x010503TeacherDeskIconInfo[i]])
  3986. }, _frag); //
  3987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3990. }
  3991. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3992. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3993. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3994. continue
  3995. }
  3996. _content = $$("div", {
  3997. className: "U_MD_D_KO",
  3998. "onmousedown": U.UF.C.closure(function (obj) {
  3999. //防止拖动图标即打开了桌面应用
  4000. U.MD.D.click(this, obj);
  4001. }, [_x010504TeacherDeskIconInfo[i]]),
  4002. "onclick": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_x010504TeacherDeskIconInfo[i]])
  4006. }, _frag); //
  4007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4010. }
  4011. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4012. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4013. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4014. continue
  4015. }
  4016. _content = $$("div", {
  4017. className: "U_MD_D_KO",
  4018. "onmousedown": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_x010204TeacherDeskIconInfo[i]]),
  4022. "onclick": U.UF.C.closure(function (obj) {
  4023. //防止拖动图标即打开了桌面应用
  4024. U.MD.D.click(this, obj);
  4025. }, [_x010204TeacherDeskIconInfo[i]])
  4026. }, _frag); //
  4027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4030. }
  4031. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4032. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4033. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4034. continue
  4035. }
  4036. _content = $$("div", {
  4037. className: "U_MD_D_KO",
  4038. "onmousedown": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_trailTeacherDeskIconInfo[i]]),
  4042. "onclick": U.UF.C.closure(function (obj) {
  4043. //防止拖动图标即打开了桌面应用
  4044. U.MD.D.click(this, obj);
  4045. }, [_trailTeacherDeskIconInfo[i]])
  4046. }, _frag); //
  4047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4050. }
  4051. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4052. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4053. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4054. continue
  4055. }
  4056. _content = $$("div", {
  4057. className: "U_MD_D_KO",
  4058. "onmousedown": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4062. "onclick": U.UF.C.closure(function (obj) {
  4063. //防止拖动图标即打开了桌面应用
  4064. U.MD.D.click(this, obj);
  4065. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4066. }, _frag); //
  4067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4070. }
  4071. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4072. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4073. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4074. continue
  4075. }
  4076. _content = $$("div", {
  4077. className: "U_MD_D_KO",
  4078. "onmousedown": U.UF.C.closure(function (obj) {
  4079. //防止拖动图标即打开了桌面应用
  4080. U.MD.D.click(this, obj);
  4081. }, [_x010608TeacherDeskIconInfo[i]]),
  4082. "onclick": U.UF.C.closure(function (obj) {
  4083. //防止拖动图标即打开了桌面应用
  4084. U.MD.D.click(this, obj);
  4085. }, [_x010608TeacherDeskIconInfo[i]])
  4086. }, _frag); //
  4087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4090. }
  4091. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4092. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4093. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4094. continue
  4095. }
  4096. _content = $$("div", {
  4097. className: "U_MD_D_KO",
  4098. "onmousedown": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_x010611TeacherDeskIconInfo[i]]),
  4102. "onclick": U.UF.C.closure(function (obj) {
  4103. //防止拖动图标即打开了桌面应用
  4104. U.MD.D.click(this, obj);
  4105. }, [_x010611TeacherDeskIconInfo[i]])
  4106. }, _frag); //
  4107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4110. }
  4111. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4112. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4113. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4114. continue
  4115. }
  4116. _content = $$("div", {
  4117. className: "U_MD_D_KO",
  4118. "onmousedown": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4122. "onclick": U.UF.C.closure(function (obj) {
  4123. //防止拖动图标即打开了桌面应用
  4124. U.MD.D.click(this, obj);
  4125. }, [_tianyuanTeacherDeskIconInfo[i]])
  4126. }, _frag); //
  4127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4130. }
  4131. } else {
  4132. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4133. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4134. continue
  4135. }
  4136. _content = $$("div", {
  4137. className: "U_MD_D_KO",
  4138. "onmousedown": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_teacherDesktopIconInfo[i]]),
  4142. "onclick": U.UF.C.closure(function (obj) {
  4143. //防止拖动图标即打开了桌面应用
  4144. U.MD.D.click(this, obj);
  4145. }, [_teacherDesktopIconInfo[i]])
  4146. }, _frag); //
  4147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4150. }
  4151. }
  4152. } else {
  4153. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4154. _content = $$("div", {
  4155. className: "U_MD_D_KO",
  4156. style: { 'width': '124px', 'height': '145px' },
  4157. "onmousedown": U.UF.C.closure(function (obj) {
  4158. //防止拖动图标即打开了桌面应用
  4159. U.MD.D.click(this, obj);
  4160. }, [_easyDesktopIconInfo[i]]),
  4161. "onclick": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_easyDesktopIconInfo[i]])
  4165. }, _frag); //
  4166. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4169. }
  4170. }
  4171. if (type == 1) {
  4172. //加载好后给图标定位
  4173. U.MD.D.iconPostion($(_frag).Child());
  4174. } else {
  4175. //加载好后给图标定位
  4176. U.MD.D.iconPostion2($(_frag).Child());
  4177. }
  4178. //把图标加载到页面
  4179. el.appendChild(_frag);
  4180. }
  4181. /**
  4182. * 显示任务栏
  4183. *
  4184. * @param {element} 桌面元素
  4185. */
  4186. U.MD.D.I.displayTaskbar = function (el) {
  4187. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4188. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4189. //任务栏位置变化
  4190. U.selectEl(el).css({ "bottom": "0px" });
  4191. //桌面位置变话
  4192. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4193. }
  4194. }
  4195. //#region 桌面图标拖动逻辑
  4196. /**
  4197. * 桌面排列图标
  4198. *
  4199. * @param {element} 桌面元素
  4200. * @param {object} 上下相距的距离
  4201. * @param {object} 左右相距的距离
  4202. * @return {object} 命名空间
  4203. */
  4204. U.MD.D.iconPostion = function (childs, top, left) {
  4205. var i; //用于循环处理
  4206. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4207. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4208. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4209. for (i = 0; i < childs.length; i++) {
  4210. //如果竖排top超过了范围处理
  4211. if (top + 95 > US.height - 10) {
  4212. //left超过了页面范围处理,则向上重叠打印处理
  4213. if ((left + 180) > US.width) {
  4214. top -= 110;
  4215. left -= 90;
  4216. }
  4217. //没有超过范围,那么left+90添加到下一个竖排打印
  4218. else {
  4219. left += 90;
  4220. top = 15;
  4221. };
  4222. }
  4223. //给图标的位置赋值
  4224. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4225. if (i < childs.length - 1) {
  4226. //页面图标每次向下加95
  4227. top += 95;
  4228. }
  4229. }
  4230. //返回最后调用的图标的位置
  4231. return [top, left];
  4232. }
  4233. /**
  4234. * 桌面排列图标
  4235. *
  4236. * @param {element} 桌面元素
  4237. * @param {object} 上下相距的距离
  4238. * @param {object} 左右相距的距离
  4239. * @return {object} 命名空间
  4240. */
  4241. U.MD.D.iconPostion2 = function (childs, top, left) {
  4242. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4243. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4244. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4245. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4246. for (i = 0; i < childs.length; i++) {
  4247. //如果竖排top超过了范围处理
  4248. if (left + 150 > US.width - 10) {
  4249. //left超过了页面范围处理,则向上重叠打印处理
  4250. if ((top + 180) > US.Height) {
  4251. top -= 150;
  4252. left -= 150;
  4253. }
  4254. //没有超过范围,那么left+90添加到下一个竖排打印
  4255. else {
  4256. top += 150;
  4257. left = ol;
  4258. };
  4259. }
  4260. //给图标的位置赋值
  4261. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4262. if (i < childs.length - 1) {
  4263. //页面图标每次向下加95
  4264. left += 150;
  4265. }
  4266. }
  4267. //返回最后调用的图标的位置
  4268. return [top, left];
  4269. }
  4270. /**
  4271. * 桌面点击事件逻辑
  4272. *
  4273. * @param {element} 桌面元素
  4274. * @param {object} 上下相距的距离
  4275. * @param {object} 左右相距的距离
  4276. * @return {object} 命名空间
  4277. */
  4278. U.MD.D.click = function (el, obj) {
  4279. var _buttonnumber = event.button; //点击的按钮的事件值
  4280. var _userinfo = US.userInfo;
  4281. U.UF.EV.stopBubble(); //阻止向上冒泡
  4282. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4283. if (_buttonnumber < 2) {
  4284. //如果是click事件的处理
  4285. if (event.type == "click") {
  4286. //如果元素在mousemove事件中没有移动则出发click事件
  4287. if (!U.MD.D.I.IsDrag) {
  4288. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4289. U.alert("请先登录您的账号!");
  4290. setTimeout(() => {
  4291. U.MD.U.L.login();
  4292. }, 2000);
  4293. } else {
  4294. //打开应用处理
  4295. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4296. }
  4297. }
  4298. }
  4299. //如果是mouse事件的处理
  4300. else {
  4301. if (US.Config.type == '1') {
  4302. //拖动处理,添加拖动和拖动结束事件
  4303. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4304. }
  4305. }
  4306. U.MD.D.I.IsDrag = false;
  4307. }
  4308. }
  4309. /**
  4310. * 拖动的处理
  4311. *
  4312. */
  4313. U.MD.D.iconMove = function () {
  4314. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4315. U.MD.D.I.IsDrag = true;
  4316. }
  4317. /**
  4318. * 拖动结束后,这里是定位处理,以网状的形式定位
  4319. *
  4320. * @param {element} 拖动的元素
  4321. * @return {object} 命名空间
  4322. */
  4323. U.MD.D.iconUp = function (el) {
  4324. var _top = 15,
  4325. _left = 20,
  4326. _margin,
  4327. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4328. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4329. if (_positioninfo["OT"] > 15) {
  4330. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4331. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4332. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4333. }
  4334. if (_positioninfo["OL"] > 20) {
  4335. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4336. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4337. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4338. }
  4339. //while循环判断么一个重叠的元素
  4340. do {
  4341. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4342. _top = _positioninfo[0] + 95; //得到定位后的top
  4343. _left = _positioninfo[1]; //得到定位后的left
  4344. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4345. }
  4346. /**
  4347. * 判断拖动后图标是否重叠
  4348. *
  4349. * @param {element} 拖动的元素
  4350. * @param {element} 桌面所有的元素
  4351. * @param {array} 拖动元素的位置
  4352. ----------[0] 上 top
  4353. ----------[1] 左 left
  4354. * @return {object} 命名空间
  4355. */
  4356. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4357. //循环所有的图标
  4358. for (var i = 0; i < childs.length; i++) {
  4359. //判断有没有和该图标诶子重叠的元素
  4360. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4361. return childs[i]; //如果有返回
  4362. }
  4363. }
  4364. }
  4365. //#endregion
  4366. //#endregion
  4367. //#region 桌面应用
  4368. /**
  4369. * 打开应用
  4370. *
  4371. * @param {string} 类型
  4372. -----------------Disk 网盘系统
  4373. -----------------PDisk 学习系统网盘
  4374. -----------------Poto 图片
  4375. -----------------Video 视频
  4376. -----------------Music 音乐
  4377. -----------------Word word
  4378. -----------------Excel excel
  4379. -----------------Txt 记事本
  4380. -----------------PB 学习系统
  4381. -----------------Blog 朋友圈系统
  4382. -----------------FTP ftp系统
  4383. -----------------Group 好友群
  4384. -----------------SY 首页系统
  4385. -----------------Set 个人设置
  4386. -----------------XSet 系统设置
  4387. -----------------App 我们所有的app
  4388. -----------------BC c.1473.cn 平台
  4389. -----------------CWeb d.1473.cn 变成平台
  4390. -----------------其他的外联系统 我们统一用iframe打开
  4391. * @param {array} 类型
  4392. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4393. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4394. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4395. 如果第一个参数为其他,则无第二个参数
  4396. * @returns {array}
  4397. */
  4398. window.addEventListener('message', function (e) { // 监听 message 事件
  4399. // alert(e.data.type);
  4400. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4401. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4402. //3是展示全部阶段 2学生 1老师 4专家
  4403. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4404. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4405. //3是展示全部阶段 2学生 1老师 4专家
  4406. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4407. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4408. //3是展示全部阶段 2学生 1老师 4专家
  4409. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4410. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4411. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4412. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4413. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4415. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4417. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4419. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4421. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4423. //3是展示全部阶段 2学生 1老师 4专家
  4424. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4426. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4427. U.MD.D.I.selectUser();
  4428. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4429. var _formel = document.getElementById("study");
  4430. U.UF.F.windowZooming(_formel);
  4431. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4432. var _formel = document.getElementById("studyDetail");
  4433. U.UF.F.windowZooming(_formel);
  4434. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4435. var _formel = document.getElementById("studyDetail");
  4436. U.UF.F.windowZooming(_formel);
  4437. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4438. var _formel = document.getElementById("studentStudy");
  4439. U.UF.F.windowZooming(_formel);
  4440. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4441. // var _formel = document.getElementById("study");
  4442. //如果最大化了,那么就把他缩小
  4443. // if (_formel.ismaximize) {
  4444. // return;
  4445. // }
  4446. // U.UF.F.windowZooming(_formel);
  4447. // U.UF.F.topWindow(_formel);
  4448. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4449. // var _formel = document.getElementById("studyDetail");
  4450. //如果最大化了,那么就把他缩小
  4451. // if (_formel.ismaximize) {
  4452. // return;
  4453. // }
  4454. // U.UF.F.windowZooming(_formel);
  4455. // U.UF.F.topWindow(_formel);
  4456. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4457. // var _formel = document.getElementById("studentStudy");
  4458. // if (_formel.ismaximize) {
  4459. // return;
  4460. // }
  4461. // U.UF.F.windowZooming(_formel);
  4462. // U.UF.F.topWindow(_formel);
  4463. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4464. var _formel = document.getElementById("study");
  4465. // if (_formel.ismaximize) {
  4466. // return;
  4467. // }
  4468. // U.UF.F.windowZooming(_formel);
  4469. U.UF.F.topWindow(_formel);
  4470. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4471. var _formel = document.getElementById("studentIndex");
  4472. U.UF.F.windowZooming(_formel);
  4473. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4474. var _formel = document.getElementById("studyDetailS");
  4475. U.UF.F.windowZooming(_formel);
  4476. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4477. var _formel = document.getElementById("studioIndex");
  4478. U.UF.F.windowZooming(_formel);
  4479. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4480. var _formel = document.getElementById("studyDetailStudio");
  4481. U.UF.F.windowZooming(_formel);
  4482. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4483. var _formel = document.getElementById("studyDetailStudio");
  4484. U.UF.F.windowZooming(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4486. var _formel = document.getElementById("studyDetailNT");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4489. var _formel = document.getElementById("studyDetailS");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4492. var _formel = document.getElementById("studyDetailS");
  4493. U.UF.F.topWindow(_formel);
  4494. } else if (e.data.tools && e.data.tools == "1") {
  4495. // U.MD.D.I.openApplication("whiteboard")
  4496. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4497. } else if (e.data.tools && e.data.tools == "2") {
  4498. U.MD.D.I.openApplication("note")
  4499. } else if (e.data.tools && e.data.tools == "3") {
  4500. // U.MD.D.I.openApplication("mind")
  4501. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4502. } else if (e.data.tools && e.data.tools == "4") {
  4503. U.MD.D.I.openApplication("investigation")
  4504. } else if (e.data.tools && e.data.tools == "6") {
  4505. // U.MD.D.I.openApplication("doc")
  4506. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "7") {
  4508. // U.MD.D.I.openApplication("mindNetwork")
  4509. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4510. } else if (e.data.tools && e.data.tools == "8") {
  4511. U.MD.D.I.openApplication("library")
  4512. } else if (e.data.tools && e.data.tools == "17") {
  4513. U.MD.D.I.openApplication("stuLibrary")
  4514. } else if (e.data.tools && e.data.tools == "18") {
  4515. U.MD.D.I.openApplication("train")
  4516. } else if (e.data.tools && e.data.tools == "21") {
  4517. U.MD.D.I.openApplication("program")
  4518. } else if (e.data.tools && e.data.tools == "22") {
  4519. U.MD.D.I.openApplication("AIprogram2")
  4520. } else if (e.data.tools && e.data.tools == "23") {
  4521. U.MD.D.I.openApplication("Pythonprogram")
  4522. } else if (e.data.tools && e.data.tools == "24") {
  4523. U.MD.D.I.openApplication("AIprogram")
  4524. } else if (e.data.tools && e.data.tools == "25") {
  4525. U.MD.D.I.openApplication("sys")
  4526. } else if (e.data.tools && e.data.tools == "26") {
  4527. // U.MD.D.I.openApplication("courseDesign")
  4528. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4529. } else if (e.data.tools && e.data.tools == "31") {
  4530. U.MD.D.I.openApplication("netWorkPanel")
  4531. } else if (e.data.tools && e.data.tools == "32") {
  4532. U.MD.D.I.openApplication("codeEdit")
  4533. } else if (e.data.tools && e.data.tools == "57") {
  4534. U.MD.D.I.openApplication("CocoPi")
  4535. } else if (e.data.tools && e.data.tools == "63") {
  4536. U.MD.D.I.openApplication("Wood")
  4537. } else if (e.data.tools && e.data.tools == "58") {
  4538. U.MD.D.I.openApplication("car")
  4539. } else if (e.data.tools && e.data.tools == "59") {
  4540. U.MD.D.I.openApplication("lineSearch")
  4541. } else if (e.data.tools && e.data.tools == "60") {
  4542. U.MD.D.I.openApplication("deepLearning")
  4543. } else if (e.data.tools && e.data.tools == "61") {
  4544. U.MD.D.I.openApplication("allHistory")
  4545. } else if (e.data.tools && e.data.tools == "28") {
  4546. U.MD.D.I.openApplication("translation")
  4547. } else if (e.data.tools && e.data.tools == "37") {
  4548. U.MD.D.I.openApplication("mohe")
  4549. } else if (e.data.tools && e.data.tools == "38") {
  4550. U.MD.D.I.openApplication("24game")
  4551. } else if (e.data.tools && e.data.tools == "39") {
  4552. U.MD.D.I.openApplication("GeoGebra")
  4553. } else if (e.data.tools && e.data.tools == "43") {
  4554. U.MD.D.I.openApplication("studentEvaluate")
  4555. } else if (e.data.tools && e.data.tools == "44") {
  4556. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4557. } else if (e.data.tools && e.data.tools == "46") {
  4558. U.MD.D.I.openApplication("project")
  4559. } else if (e.data.tools && e.data.tools == "71") {
  4560. U.MD.D.I.openApplication("aigptCourse")
  4561. } else if (e.data.tools && e.data.tools == "1s") {
  4562. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4563. } else if (e.data.tools && e.data.tools == "3s") {
  4564. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4565. } else if (e.data.tools && e.data.tools == "6s") {
  4566. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4567. } else if (e.data.tools && e.data.tools == "1studio") {
  4568. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4569. } else if (e.data.tools && e.data.tools == "3studio") {
  4570. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4571. } else if (e.data.tools && e.data.tools == "6studio") {
  4572. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "3y") {
  4574. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "1y") {
  4576. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4578. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4579. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4580. U.MD.D.I.openApplication("AIAnalyse")
  4581. } else if (e.data.tools && e.data.tools == "1teacher") {
  4582. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4583. } else if (e.data.tools && e.data.tools == "3teacher") {
  4584. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4585. } else if (e.data.tools && e.data.tools == "7teacher") {
  4586. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4587. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4588. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4589. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4590. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4591. } else if (e.data.tools && e.data.tools == "1E") {
  4592. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4593. } else if (e.data.tools && e.data.tools == "3E") {
  4594. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4595. } else if (e.data.tools && e.data.tools == "57y") {
  4596. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4597. } else if (e.data.tools && e.data.tools == "57u") {
  4598. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4599. } else if (e.data.tools && e.data.tools == "57teacher") {
  4600. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "64") {
  4602. U.MD.D.I.openApplication("AIChat")
  4603. } else if (e.data.tools && e.data.tools == "66") {
  4604. U.MD.D.I.openApplication("formulaEdi")
  4605. } else if (e.data.tools && e.data.tools == "67") {
  4606. U.MD.D.I.openApplication("molStr")
  4607. } else if (e.data.tools && e.data.tools == "68") {
  4608. U.MD.D.I.openApplication("timeAxis")
  4609. } else if (e.data.tools && e.data.tools == "openCourse") {
  4610. let _data = {
  4611. typea: e.data.typea || '',
  4612. typeb: e.data.typeb || '',
  4613. typed: e.data.typed || '',
  4614. }
  4615. U.MD.D.I.openInApplication("index", _data)
  4616. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4617. let _data = {
  4618. classid: e.data.classid || '',
  4619. }
  4620. U.MD.D.I.openInApplication("dataClass", _data)
  4621. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4622. let _data = {
  4623. cid: e.data.cid || '',
  4624. gid: e.data.gid || '',
  4625. }
  4626. U.MD.D.I.openInApplication("opencCscl", _data)
  4627. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4628. U.MD.D.I.openApplication("dataBoardTest")
  4629. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4630. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4631. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4632. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4633. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4634. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4635. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4636. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4637. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4638. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4639. }else if (e.data.tools && e.data.tools == "loginSz") {
  4640. U.MD.D.I.openInApplication("loginSz")
  4641. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4642. if($('#classroom_observation_board')[0]){
  4643. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4644. }
  4645. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4646. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4647. if($('#classroom_observation_ob_comment')[0]){
  4648. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4649. }
  4650. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4651. }
  4652. });
  4653. U.MD.D.I.selectUser = function () {
  4654. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4655. if (res.value[0].length > 0) {
  4656. US.userInfo = res.value[0][0];
  4657. $(".userName")[0].innerHTML = US.userInfo.username;
  4658. }
  4659. }, [], { "type": "GET", "withCredentials": true });
  4660. }
  4661. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4662. var _userinfo = US.userInfo, //登录用户信息
  4663. _userid = US.userInfo.userid, //登录用户id
  4664. _oid = _userinfo.organizeid,
  4665. _type = US.userInfo.type,
  4666. _org = US.userInfo.org,
  4667. _role = US.userInfo.role,
  4668. _classId = US.userInfo.classid;
  4669. if (_type == 4) {
  4670. tType = 4
  4671. }
  4672. switch (str) {
  4673. case "studyDetailNT": //无终端模式
  4674. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4675. setTimeout(() => {
  4676. U.MD.U.L.login();
  4677. }, 2000);
  4678. } else {
  4679. _formdiv = new U.UF.UI.form(
  4680. "课程详情",
  4681. $$("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 }), {
  4682. "id": "studyDetailNT",
  4683. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4684. "onresize": function () { }
  4685. }, {
  4686. closecallback: function () { }
  4687. }, { "style": { "height": "36px" } }).form; //创建窗体
  4688. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4689. break;
  4690. }
  4691. case "studyDetail":
  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/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4700. "id": "studyDetail",
  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 "studyDetailTrain":
  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/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4718. "id": "studyDetailTrain",
  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 "studyDetailS":
  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/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4736. "id": "studyDetailS",
  4737. "style": { "width": "95%", "height": "95%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4743. break;
  4744. }
  4745. case "studyDetailStudio":
  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/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4754. "id": "studyDetailStudio",
  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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4761. break;
  4762. }
  4763. case "studyDetailS5":
  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/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4772. "id": "studyDetailS",
  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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4779. break;
  4780. }
  4781. case "studyDetailGM":
  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/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4790. "id": "studyDetail",
  4791. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4797. break;
  4798. }
  4799. case "hanUrl":
  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": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4808. "id": "hanUrl",
  4809. "style": { "width": "90%", "height": "90%", "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/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4815. break;
  4816. }
  4817. case "index":
  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": 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 }), {
  4826. "id": "study",
  4827. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4833. break;
  4834. }
  4835. case "dataClass":
  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-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4844. "id": "dataClass",
  4845. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4851. break;
  4852. }
  4853. case "opencCscl":
  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": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4862. "id": "futureClass",
  4863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. _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); } }
  4869. break;
  4870. }
  4871. case "openCourseUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4880. "id": "openCourseUpdate",
  4881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { }
  4885. }, { "style": { "height": "36px" } }).form; //创建窗体
  4886. break;
  4887. }
  4888. case "openNewCourseUpdate":
  4889. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4890. setTimeout(() => {
  4891. U.MD.U.L.login();
  4892. }, 2000);
  4893. } else {
  4894. _formdiv = new U.UF.UI.form(
  4895. "课程管理",
  4896. $$("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 }), {
  4897. "id": "openCourseUpdate",
  4898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. break;
  4904. }
  4905. case "openCourseEUpdate":
  4906. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4907. setTimeout(() => {
  4908. U.MD.U.L.login();
  4909. }, 2000);
  4910. } else {
  4911. _formdiv = new U.UF.UI.form(
  4912. "课程管理",
  4913. $$("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 }), {
  4914. "id": "openCourseUpdate",
  4915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. break;
  4921. }
  4922. case "openCourseAiUpdate":
  4923. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4924. setTimeout(() => {
  4925. U.MD.U.L.login();
  4926. }, 2000);
  4927. } else {
  4928. _formdiv = new U.UF.UI.form(
  4929. "课程管理",
  4930. $$("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 }), {
  4931. "id": "openCourseUpdate",
  4932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4933. "onresize": function () { }
  4934. }, {
  4935. closecallback: function () { }
  4936. }, { "style": { "height": "36px" } }).form; //创建窗体
  4937. break;
  4938. }
  4939. case "openCourseNewUpdate":
  4940. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4941. setTimeout(() => {
  4942. U.MD.U.L.login();
  4943. }, 2000);
  4944. } else {
  4945. _formdiv = new U.UF.UI.form(
  4946. "课程管理",
  4947. $$("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 }), {
  4948. "id": "openCourseUpdate",
  4949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4950. "onresize": function () { }
  4951. }, {
  4952. closecallback: function () { }
  4953. }, { "style": { "height": "36px" } }).form; //创建窗体
  4954. break;
  4955. }
  4956. case "inviteLoginSz":
  4957. _formdiv = new U.UF.UI.form(
  4958. "随机码登录",
  4959. $$("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 }), {
  4960. "id": "loginSz",
  4961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4962. "onresize": function () { }
  4963. }, {
  4964. closecallback: function () { }
  4965. }, { "style": { "height": "36px" } }).form; //创建窗体
  4966. break;
  4967. case "loginSz":
  4968. _formdiv = new U.UF.UI.form(
  4969. "教师登录",
  4970. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  4971. "id": "loginSz",
  4972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. break;
  4978. case "teacher":
  4979. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4980. setTimeout(() => {
  4981. U.MD.U.L.login();
  4982. }, 2000);
  4983. } else {
  4984. _formdiv = new U.UF.UI.form(
  4985. "教师管理",
  4986. $$("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 }), {
  4987. "id": "teacher",
  4988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. break;
  4994. }
  4995. case "dataBoardSZArea":
  4996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4997. setTimeout(() => {
  4998. U.MD.U.L.login();
  4999. }, 2000);
  5000. } else {
  5001. _formdiv = new U.UF.UI.form(
  5002. "综合数据看板",
  5003. $$("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 }), {
  5004. "id": "dataBoardSZArea",
  5005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. break;
  5011. }
  5012. case "dataBoardSZCity":
  5013. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5014. setTimeout(() => {
  5015. U.MD.U.L.login();
  5016. }, 2000);
  5017. } else {
  5018. _formdiv = new U.UF.UI.form(
  5019. "综合数据看板",
  5020. $$("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 }), {
  5021. "id": "dataBoardSZCity",
  5022. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. break;
  5028. }
  5029. case "classroom_observation_board":
  5030. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5031. setTimeout(() => {
  5032. U.MD.U.L.login();
  5033. }, 2000);
  5034. } else {
  5035. _formdiv = new U.UF.UI.form(
  5036. "课堂观察",
  5037. $$("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 }), {
  5038. "id": "classroom_observation_board",
  5039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //创建窗体
  5044. break;
  5045. }
  5046. case "classroom_observation_ob_comment":
  5047. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5048. setTimeout(() => {
  5049. U.MD.U.L.login();
  5050. }, 2000);
  5051. } else {
  5052. _formdiv = new U.UF.UI.form(
  5053. "课堂审核",
  5054. $$("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 }), {
  5055. "id": "classroom_observation_ob_comment",
  5056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. break;
  5062. }
  5063. }
  5064. }
  5065. U.MD.D.I.openApplication = function (str, obj, info) {
  5066. obj = obj || {};
  5067. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5068. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5069. _userinfo = US.userInfo, //登录用户信息
  5070. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5071. _oid = obj.organizeid || _userinfo.organizeid,
  5072. _type = US.userInfo.type,
  5073. _org = US.userInfo.org,
  5074. _role = US.userInfo.role,
  5075. _classId = US.userInfo.classid,
  5076. _TscreenType = 1
  5077. _screenType = 2,
  5078. _SscreenType = 3;
  5079. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5080. return;
  5081. }
  5082. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5083. switch (str) {
  5084. case "studnetProject": //好友打开
  5085. _formdiv = new U.UF.UI.form(
  5086. "我的项目",
  5087. $$("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 }), {
  5088. "id": "studnetProject",
  5089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _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); } }
  5095. break;
  5096. case "studentEvaluate": //好友打开
  5097. _formdiv = new U.UF.UI.form(
  5098. "我的评价",
  5099. $$("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 }), {
  5100. "id": "studentEvaluate",
  5101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _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); } }
  5107. break;
  5108. case "my":
  5109. _formdiv = new U.UF.UI.form(
  5110. "我的资料",
  5111. $$("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 }), {
  5112. "id": "my",
  5113. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _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); } }
  5119. break;
  5120. case "program":
  5121. _formdiv = new U.UF.UI.form(
  5122. "编程平台",
  5123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5124. "id": "program",
  5125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5126. "onresize": function () { }
  5127. }, {
  5128. closecallback: function () { }
  5129. }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. _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); } }
  5131. break;
  5132. case "library":
  5133. _formdiv = new U.UF.UI.form(
  5134. "素材库",
  5135. $$("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 }), {
  5136. "id": "library",
  5137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. case "whiteboard":
  5145. _formdiv = new U.UF.UI.form(
  5146. "电子白板",
  5147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5148. "id": "whiteboard",
  5149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _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); } }
  5155. break;
  5156. case "investigation":
  5157. _formdiv = new U.UF.UI.form(
  5158. "问卷调查",
  5159. $$("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 }), {
  5160. "id": "investigation",
  5161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _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); } }
  5167. break;
  5168. case "note":
  5169. _formdiv = new U.UF.UI.form(
  5170. "便签分类",
  5171. $$("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 }), {
  5172. "id": "note",
  5173. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _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); } }
  5179. break;
  5180. // case "score":
  5181. // _formdiv = new U.UF.UI.form(
  5182. // "量规评分",
  5183. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5184. // "id": "score",
  5185. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. // "onresize": function() {}
  5187. // }, {
  5188. // closecallback: function() {}
  5189. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. // _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); } }
  5191. // break;
  5192. case "mind":
  5193. _formdiv = new U.UF.UI.form(
  5194. "思维导图",
  5195. $$("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"
  5196. "id": "mind",
  5197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. break;
  5204. case "doc":
  5205. // U.MD.D.I.isRoom();
  5206. _formdiv = new U.UF.UI.form(
  5207. "协同文档",
  5208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5209. "id": "doc",
  5210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5211. "onresize": function () { }
  5212. }, {
  5213. closecallback: function () { }
  5214. }, { "style": { "height": "36px" } }).form; //创建窗体
  5215. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5216. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5217. // })
  5218. _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); } }
  5219. break;
  5220. case "studentStudy":
  5221. _formdiv = new U.UF.UI.form(
  5222. "课程中心",
  5223. $$("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
  5224. "id": "studentStudy",
  5225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5226. "onresize": function () { }
  5227. }, {
  5228. closecallback: function () { }
  5229. }, { "style": { "height": "36px" } }).form; //创建窗体
  5230. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5231. break;
  5232. case "train": //好友打开
  5233. _formdiv = new U.UF.UI.form(
  5234. "训练平台",
  5235. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5236. "id": "train",
  5237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5238. "onresize": function () { }
  5239. }, {
  5240. closecallback: function () { }
  5241. }, { "style": { "height": "36px" } }).form; //创建窗体
  5242. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5243. break;
  5244. case "mindNetwork": //好友打开
  5245. _formdiv = new U.UF.UI.form(
  5246. "思维网格",
  5247. $$("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 }), {
  5248. "id": "mindNetwork",
  5249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. case "studentClassRoom": //好友打开
  5257. _formdiv = new U.UF.UI.form(
  5258. "实时课堂",
  5259. $$("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 }), {
  5260. "id": "studentClassRoom",
  5261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5262. "onresize": function () { }
  5263. }, {
  5264. closecallback: function () { }
  5265. }, { "style": { "height": "36px" } }).form; //创建窗体
  5266. _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); } }
  5267. setTimeout(() => {
  5268. U.UF.F.windowZooming(_formdiv)
  5269. }, 0);
  5270. break;
  5271. }
  5272. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5273. switch (str) {
  5274. case "studnetProject": //好友打开
  5275. _formdiv = new U.UF.UI.form(
  5276. "我的项目",
  5277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5278. "id": "studnetProject",
  5279. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5285. break;
  5286. case "studentEvaluate": //好友打开
  5287. _formdiv = new U.UF.UI.form(
  5288. "我的评价",
  5289. $$("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 }), {
  5290. "id": "studentEvaluate",
  5291. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "my":
  5299. _formdiv = new U.UF.UI.form(
  5300. "我的资料",
  5301. $$("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 }), {
  5302. "id": "my",
  5303. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. break;
  5310. case "program":
  5311. _formdiv = new U.UF.UI.form(
  5312. "编程平台",
  5313. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5314. "id": "program",
  5315. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5316. "onresize": function () { }
  5317. }, {
  5318. closecallback: function () { }
  5319. }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. _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); } }
  5321. break;
  5322. case "library":
  5323. _formdiv = new U.UF.UI.form(
  5324. "素材库",
  5325. $$("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 }), {
  5326. "id": "library",
  5327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "whiteboard":
  5335. _formdiv = new U.UF.UI.form(
  5336. "电子白板",
  5337. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5338. "id": "whiteboard",
  5339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _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); } }
  5345. break;
  5346. case "investigation":
  5347. _formdiv = new U.UF.UI.form(
  5348. "问卷调查",
  5349. $$("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 }), {
  5350. "id": "investigation",
  5351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. case "note":
  5359. _formdiv = new U.UF.UI.form(
  5360. "便签分类",
  5361. $$("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 }), {
  5362. "id": "note",
  5363. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. // case "score":
  5371. // _formdiv = new U.UF.UI.form(
  5372. // "量规评分",
  5373. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5374. // "id": "score",
  5375. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. // "onresize": function() {}
  5377. // }, {
  5378. // closecallback: function() {}
  5379. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. // _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); } }
  5381. // break;
  5382. case "mind":
  5383. _formdiv = new U.UF.UI.form(
  5384. "思维导图",
  5385. $$("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"
  5386. "id": "mind",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "doc":
  5395. // U.MD.D.I.isRoom();
  5396. _formdiv = new U.UF.UI.form(
  5397. "协同文档",
  5398. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5399. "id": "doc",
  5400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5406. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5407. })
  5408. _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); } }
  5409. break;
  5410. case "train": //好友打开
  5411. _formdiv = new U.UF.UI.form(
  5412. "训练平台",
  5413. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5414. "id": "train",
  5415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, { "style": { "height": "36px" } }).form; //创建窗体
  5420. _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); } }
  5421. break;
  5422. case "studentStudy":
  5423. _formdiv = new U.UF.UI.form(
  5424. "课程中心",
  5425. $$("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
  5426. "id": "studentStudy",
  5427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. _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); } }
  5433. break;
  5434. case "mindNetwork": //好友打开
  5435. _formdiv = new U.UF.UI.form(
  5436. "思维网格",
  5437. $$("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 }), {
  5438. "id": "mindNetwork",
  5439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5440. "onresize": function () { }
  5441. }, {
  5442. closecallback: function () { }
  5443. }, { "style": { "height": "36px" } }).form; //创建窗体
  5444. _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); } }
  5445. break;
  5446. case "studentClassRoom": //好友打开
  5447. _formdiv = new U.UF.UI.form(
  5448. "实时课堂",
  5449. $$("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 }), {
  5450. "id": "studentClassRoom",
  5451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5452. "onresize": function () { }
  5453. }, {
  5454. closecallback: function () { }
  5455. }, { "style": { "height": "36px" } }).form; //创建窗体
  5456. _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); } }
  5457. setTimeout(() => {
  5458. U.UF.F.windowZooming(_formdiv)
  5459. }, 0);
  5460. break;
  5461. }
  5462. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5463. //选择应用处理
  5464. switch (str) {
  5465. case "project": //好友打开
  5466. _formdiv = new U.UF.UI.form(
  5467. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5468. $$("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 }), {
  5469. "id": "project",
  5470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _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); } }
  5476. break;
  5477. case "student":
  5478. _formdiv = new U.UF.UI.form(
  5479. "学生管理",
  5480. $$("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 }), {
  5481. "id": "student",
  5482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5488. break;
  5489. case "evaluate":
  5490. _formdiv = new U.UF.UI.form(
  5491. "学生评价",
  5492. $$("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 }), {
  5493. "id": "evaluate",
  5494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //创建窗体
  5499. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5500. break;
  5501. case "sys":
  5502. _formdiv = new U.UF.UI.form(
  5503. "目标管理",
  5504. $$("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 }), {
  5505. "id": "sys",
  5506. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5512. break;
  5513. case "courseDesign":
  5514. _formdiv = new U.UF.UI.form(
  5515. "项目设计",
  5516. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5517. "id": "courseDesign",
  5518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. _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); } }
  5524. break;
  5525. case "program":
  5526. _formdiv = new U.UF.UI.form(
  5527. "编程平台",
  5528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5529. "id": "program",
  5530. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5531. "onresize": function () { }
  5532. }, {
  5533. closecallback: function () { }
  5534. }, { "style": { "height": "36px" } }).form; //创建窗体
  5535. _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); } }
  5536. break;
  5537. case "class":
  5538. _formdiv = new U.UF.UI.form(
  5539. "班级管理",
  5540. $$("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 }), {
  5541. "id": "class",
  5542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _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); } }
  5548. break;
  5549. case "Grade":
  5550. _formdiv = new U.UF.UI.form(
  5551. "年级管理",
  5552. $$("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 }), {
  5553. "id": "Grade",
  5554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5555. "onresize": function () { }
  5556. }, {
  5557. closecallback: function () { }
  5558. }, { "style": { "height": "36px" } }).form; //创建窗体
  5559. _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); } }
  5560. break;
  5561. case "teacherOffice":
  5562. _formdiv = new U.UF.UI.form(
  5563. "教研室",
  5564. $$("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 }), {
  5565. "id": "teacherOffice",
  5566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //创建窗体
  5571. _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); } }
  5572. break;
  5573. case "my":
  5574. _formdiv = new U.UF.UI.form(
  5575. "我的资料",
  5576. $$("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 }), {
  5577. "id": "my",
  5578. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. _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); } }
  5584. break;
  5585. case "notice":
  5586. _formdiv = new U.UF.UI.form(
  5587. "通知公告",
  5588. $$("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 }), {
  5589. "id": "notice",
  5590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5591. "onresize": function () { }
  5592. }, {
  5593. closecallback: function () { }
  5594. }, { "style": { "height": "36px" } }).form; //创建窗体
  5595. _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); } }
  5596. break;
  5597. case "library":
  5598. _formdiv = new U.UF.UI.form(
  5599. "素材库",
  5600. $$("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 }), {
  5601. "id": "library",
  5602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //创建窗体
  5607. _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); } }
  5608. break;
  5609. case "whiteboard":
  5610. _formdiv = new U.UF.UI.form(
  5611. "电子白板",
  5612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5613. "id": "whiteboard",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. case "investigation":
  5622. _formdiv = new U.UF.UI.form(
  5623. "问卷调查",
  5624. $$("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 }), {
  5625. "id": "investigation",
  5626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //创建窗体
  5631. _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); } }
  5632. break;
  5633. case "note":
  5634. _formdiv = new U.UF.UI.form(
  5635. "便签分类",
  5636. $$("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 }), {
  5637. "id": "note",
  5638. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. _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); } }
  5644. break;
  5645. // case "score":
  5646. // _formdiv = new U.UF.UI.form(
  5647. // "量规评分",
  5648. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5649. // "id": "score",
  5650. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5651. // "onresize": function() {}
  5652. // }, {
  5653. // closecallback: function() {}
  5654. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5655. // _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); } }
  5656. // break;
  5657. case "mind":
  5658. _formdiv = new U.UF.UI.form(
  5659. "思维导图",
  5660. $$("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"
  5661. "id": "mind",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. case "doc":
  5670. // U.MD.D.I.isRoom();
  5671. _formdiv = new U.UF.UI.form(
  5672. "协同文档",
  5673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5674. "id": "doc",
  5675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5681. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5682. })
  5683. _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); } }
  5684. break;
  5685. case "study":
  5686. _formdiv = new U.UF.UI.form(
  5687. "课程中心",
  5688. $$("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
  5689. "id": "study",
  5690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _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); } }
  5696. break;
  5697. case "mindNetwork": //好友打开
  5698. _formdiv = new U.UF.UI.form(
  5699. "思维网格",
  5700. $$("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 }), {
  5701. "id": "mindNetwork",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _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); } }
  5708. break;
  5709. case "train": //好友打开
  5710. _formdiv = new U.UF.UI.form(
  5711. "训练平台",
  5712. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5713. "id": "mindNetwork",
  5714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _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); } }
  5720. break;
  5721. case "teacherClassRoom": //好友打开
  5722. _formdiv = new U.UF.UI.form(
  5723. "实时课堂",
  5724. $$("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 }), {
  5725. "id": "teacherClassRoom",
  5726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _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); } }
  5732. setTimeout(() => {
  5733. U.UF.F.windowZooming(_formdiv)
  5734. }, 0);
  5735. break;
  5736. }
  5737. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5738. switch (str) {
  5739. case "project": //好友打开
  5740. _formdiv = new U.UF.UI.form(
  5741. "课程管理",
  5742. $$("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 }), {
  5743. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5750. break;
  5751. case "evaluate":
  5752. _formdiv = new U.UF.UI.form(
  5753. "学生评价",
  5754. $$("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 }), {
  5755. "id": "evaluate",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5762. break;
  5763. case "notice":
  5764. _formdiv = new U.UF.UI.form(
  5765. "通知公告",
  5766. $$("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 }), {
  5767. "id": "notice",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5774. break;
  5775. case "stuLibrary":
  5776. _formdiv = new U.UF.UI.form(
  5777. "学习资料",
  5778. $$("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 }), {
  5779. "id": "stuLibrary",
  5780. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5786. break;
  5787. case "program":
  5788. _formdiv = new U.UF.UI.form(
  5789. "编程平台",
  5790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5791. "id": "program",
  5792. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. _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); } }
  5798. break;
  5799. case "whiteboard":
  5800. _formdiv = new U.UF.UI.form(
  5801. "电子白板",
  5802. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5803. "id": "whiteboard",
  5804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _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); } }
  5810. break;
  5811. case "investigation":
  5812. _formdiv = new U.UF.UI.form(
  5813. "问卷调查",
  5814. $$("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 }), {
  5815. "id": "investigation",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _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); } }
  5822. break;
  5823. case "mind":
  5824. _formdiv = new U.UF.UI.form(
  5825. "思维导图",
  5826. $$("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"
  5827. "id": "mind",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. break;
  5835. case "doc":
  5836. // U.MD.D.I.isRoom();
  5837. _formdiv = new U.UF.UI.form(
  5838. "协同文档",
  5839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5840. "id": "doc",
  5841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5847. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5848. })
  5849. _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); } }
  5850. break;
  5851. case "study":
  5852. _formdiv = new U.UF.UI.form(
  5853. "课程中心",
  5854. $$("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
  5855. "id": "study",
  5856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5857. "onresize": function () { }
  5858. }, {
  5859. closecallback: function () { }
  5860. }, { "style": { "height": "36px" } }).form; //创建窗体
  5861. _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); } }
  5862. break;
  5863. case "mindNetwork": //好友打开
  5864. _formdiv = new U.UF.UI.form(
  5865. "思维网格",
  5866. $$("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 }), {
  5867. "id": "mindNetwork",
  5868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, { "style": { "height": "36px" } }).form; //创建窗体
  5873. _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); } }
  5874. break;
  5875. case "train": //好友打开
  5876. _formdiv = new U.UF.UI.form(
  5877. "训练平台",
  5878. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5879. "id": "train",
  5880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //创建窗体
  5885. _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); } }
  5886. break;
  5887. case "sys":
  5888. _formdiv = new U.UF.UI.form(
  5889. "目标管理",
  5890. $$("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 }), {
  5891. "id": "sys",
  5892. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //创建窗体
  5897. _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); } }
  5898. break;
  5899. case "courseDesign":
  5900. _formdiv = new U.UF.UI.form(
  5901. "项目设计",
  5902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5903. "id": "courseDesign",
  5904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //创建窗体
  5909. _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); } }
  5910. break;
  5911. }
  5912. } else if (!_type) {
  5913. switch (str) {
  5914. case "my":
  5915. _formdiv = new U.UF.UI.form(
  5916. "我的资料",
  5917. $$("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 }), {
  5918. "id": "my",
  5919. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _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); } }
  5925. break;
  5926. }
  5927. }
  5928. switch (str) {
  5929. // AIprogram2 AI体验 aihub.cocorobo.cn
  5930. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5931. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5932. case "formulaEdi": //公式编辑
  5933. _formdiv = new U.UF.UI.form(
  5934. "公式编辑",
  5935. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5936. "id": "formulaEdi",
  5937. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. case "molStr": //分子结构
  5945. _formdiv = new U.UF.UI.form(
  5946. "分子结构",
  5947. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5948. "id": "molStr",
  5949. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _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); } }
  5955. break;
  5956. case "timeAxis": //时间轴
  5957. _formdiv = new U.UF.UI.form(
  5958. "时间轴",
  5959. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5960. "id": "timeAxis",
  5961. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. case "AIprogram2": //AI体验
  5969. _formdiv = new U.UF.UI.form(
  5970. "AI体验",
  5971. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5972. "id": "AIprogram2",
  5973. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _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); } }
  5979. break;
  5980. case "Pythonprogram": //python编程
  5981. _formdiv = new U.UF.UI.form(
  5982. "Python编程",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5984. "id": "Pythonprogram",
  5985. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. case "AIprogram": //ai编程
  5993. _formdiv = new U.UF.UI.form(
  5994. "AI编程平台",
  5995. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5996. "id": "AIprogram",
  5997. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _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); } }
  6003. break;
  6004. case "CocoPi": //CocoPi
  6005. _formdiv = new U.UF.UI.form(
  6006. "CocoPi",
  6007. $$("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" }), {
  6008. "id": "CocoPi",
  6009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "Wood": //Wood
  6017. _formdiv = new U.UF.UI.form(
  6018. "海龟编程",
  6019. $$("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/" }), {
  6020. "id": "Wood",
  6021. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "car": //模拟驾驶
  6029. _formdiv = new U.UF.UI.form(
  6030. "模拟驾驶",
  6031. $$("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/" }), {
  6032. "id": "car",
  6033. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "lineSearch": //路径搜索
  6041. _formdiv = new U.UF.UI.form(
  6042. "路径搜索",
  6043. $$("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/" }), {
  6044. "id": "lineSearch",
  6045. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. break;
  6052. case "deepLearning": //深度学习
  6053. _formdiv = new U.UF.UI.form(
  6054. "深度学习",
  6055. $$("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/#" }), {
  6056. "id": "deepLearning",
  6057. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. case "allHistory": //深度学习
  6065. _formdiv = new U.UF.UI.form(
  6066. "全历史",
  6067. $$("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/" }), {
  6068. "id": "allHistory",
  6069. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. _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); } }
  6075. break;
  6076. case "chatPDF": //ai编程
  6077. _formdiv = new U.UF.UI.form(
  6078. "chatPDF",
  6079. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6080. "id": "chatPDF",
  6081. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "resources": //国家教育
  6089. _formdiv = new U.UF.UI.form(
  6090. "国家教育",
  6091. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6092. "id": "resources",
  6093. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "codeEdit": //源码编辑
  6101. _formdiv = new U.UF.UI.form(
  6102. "源码编辑",
  6103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6104. "id": "codeEdit",
  6105. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break; //
  6112. case "MindMap": //MindMap
  6113. _formdiv = new U.UF.UI.form(
  6114. "MindMap",
  6115. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6116. "id": "MindMap",
  6117. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "netWorkPanel": //netWorkPanel
  6125. _formdiv = new U.UF.UI.form(
  6126. "netWorkPanel",
  6127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6128. "id": "netWorkPanel",
  6129. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "GeoGebra": //GeoGebra
  6137. _formdiv = new U.UF.UI.form(
  6138. "GeoGebra",
  6139. $$("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" }), {
  6140. "id": "GeoGebra",
  6141. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "translation": //翻译
  6149. _formdiv = new U.UF.UI.form(
  6150. "翻译",
  6151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6152. "id": "translation",
  6153. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break;
  6160. case "mohe": //魔盒
  6161. _formdiv = new U.UF.UI.form(
  6162. "魔盒识字",
  6163. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6164. "id": "mohe",
  6165. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "24game": //24点
  6173. _formdiv = new U.UF.UI.form(
  6174. "24点",
  6175. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6176. "id": "24game",
  6177. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. case "case":
  6185. _formdiv = new U.UF.UI.form(
  6186. "课程进展",
  6187. $$("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 }), {
  6188. "id": "case",
  6189. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _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); } }
  6195. break;
  6196. case "snf":
  6197. _formdiv = new U.UF.UI.form(
  6198. "赛诺梵",
  6199. $$("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" }), {
  6200. "id": "snf",
  6201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "hanFamily":
  6209. _formdiv = new U.UF.UI.form(
  6210. "汉字家族",
  6211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6212. "id": "hanFamily",
  6213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "hanClassics":
  6221. _formdiv = new U.UF.UI.form(
  6222. "国学经典",
  6223. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6224. "id": "hanClassics",
  6225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. case "hanTraining":
  6233. _formdiv = new U.UF.UI.form(
  6234. "笔画训练",
  6235. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6236. "id": "hanTraining",
  6237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. break;
  6244. case "hanClass":
  6245. _formdiv = new U.UF.UI.form(
  6246. "书法课堂",
  6247. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6248. "id": "hanClass",
  6249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break;
  6256. case "han":
  6257. _formdiv = new U.UF.UI.form(
  6258. "汉字宫",
  6259. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6260. "id": "han",
  6261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "projectGM": //课程管理
  6269. _formdiv = new U.UF.UI.form(
  6270. "课程管理",
  6271. $$("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 }), {
  6272. "id": "projectGM",
  6273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "studyGM": //课程中心
  6281. _formdiv = new U.UF.UI.form(
  6282. "课程中心",
  6283. $$("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
  6284. "id": "study",
  6285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. // studentGM
  6293. case "studentGM": //学生管理
  6294. _formdiv = new U.UF.UI.form(
  6295. "学生管理",
  6296. $$("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 }), {
  6297. "id": "studentGM",
  6298. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6299. "onresize": function () { }
  6300. }, {
  6301. closecallback: function () { }
  6302. }, { "style": { "height": "36px" } }).form; //创建窗体
  6303. _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); } }
  6304. break;
  6305. case "evaluateGM": //学生评价
  6306. _formdiv = new U.UF.UI.form(
  6307. "学生评价",
  6308. $$("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 }), {
  6309. "id": "evaluateGM",
  6310. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6311. "onresize": function () { }
  6312. }, {
  6313. closecallback: function () { }
  6314. }, { "style": { "height": "36px" } }).form; //创建窗体
  6315. _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); } }
  6316. break;
  6317. // classGM
  6318. case "classGM": //班级管理
  6319. _formdiv = new U.UF.UI.form(
  6320. "班级管理",
  6321. $$("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 }), {
  6322. "id": "classGM",
  6323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6324. "onresize": function () { }
  6325. }, {
  6326. closecallback: function () { }
  6327. }, { "style": { "height": "36px" } }).form; //创建窗体
  6328. _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); } }
  6329. break;
  6330. // dataGM
  6331. case "dataGM":
  6332. _formdiv = new U.UF.UI.form(
  6333. "我的资料",
  6334. $$("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 }), {
  6335. "id": "dataGM",
  6336. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _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); } }
  6342. break;
  6343. // caseGM
  6344. case "caseGM": //课程进展
  6345. _formdiv = new U.UF.UI.form(
  6346. "课程进展",
  6347. $$("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 }), {
  6348. "id": "caseGM",
  6349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6350. "onresize": function () { }
  6351. }, {
  6352. closecallback: function () { }
  6353. }, { "style": { "height": "36px" } }).form; //创建窗体
  6354. _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); } }
  6355. break;
  6356. // meterialGM
  6357. case "meterialGM": //素材库
  6358. _formdiv = new U.UF.UI.form(
  6359. "素材库",
  6360. $$("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 }), {
  6361. "id": "meterialGM",
  6362. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6363. "onresize": function () { }
  6364. }, {
  6365. closecallback: function () { }
  6366. }, { "style": { "height": "36px" } }).form; //创建窗体
  6367. _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); } }
  6368. break;
  6369. // evaluateSGM
  6370. case "evaluateSGM": //我的评价
  6371. _formdiv = new U.UF.UI.form(
  6372. "我的评价",
  6373. $$("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 }), {
  6374. "id": "evaluateSGM",
  6375. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6376. "onresize": function () { }
  6377. }, {
  6378. closecallback: function () { }
  6379. }, { "style": { "height": "36px" } }).form; //创建窗体
  6380. _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); } }
  6381. break;
  6382. case "jupyter": //jupyter
  6383. _formdiv = new U.UF.UI.form(
  6384. "jupyter",
  6385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6386. "id": "jupyter",
  6387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6388. "onresize": function () { }
  6389. }, {
  6390. closecallback: function () { }
  6391. }, { "style": { "height": "36px" } }).form; //创建窗体
  6392. _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); } }
  6393. break;
  6394. case "number": //数字实验室
  6395. _formdiv = new U.UF.UI.form(
  6396. "数字实验室",
  6397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6398. "id": "number",
  6399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, { "style": { "height": "36px" } }).form; //创建窗体
  6404. _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); } }
  6405. break;
  6406. case "studentCourse": //项目管理 学生
  6407. _formdiv = new U.UF.UI.form(
  6408. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6409. $$("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 }), {
  6410. "id": "studentCourse",
  6411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6412. "onresize": function () { }
  6413. }, {
  6414. closecallback: function () { }
  6415. }, { "style": { "height": "36px" } }).form; //创建窗体
  6416. _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); } }
  6417. break;
  6418. case "studentCourseS": //项目管理 老师
  6419. _formdiv = new U.UF.UI.form(
  6420. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6421. $$("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 }), {
  6422. "id": "studentCourseS",
  6423. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _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); } }
  6429. break;
  6430. case "studentIndex": //项目中心
  6431. _formdiv = new U.UF.UI.form(
  6432. "项目中心",
  6433. $$("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 }), {
  6434. "id": "studentIndex",
  6435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6436. "onresize": function () { }
  6437. }, {
  6438. closecallback: function () { }
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. _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); } }
  6441. break;
  6442. case "CaseDesignS":
  6443. _formdiv = new U.UF.UI.form(
  6444. "项目进展",
  6445. $$("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 }), {
  6446. "id": "case",
  6447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _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); } }
  6453. break;
  6454. case "tcStudent": //腾讯学生管理
  6455. _formdiv = new U.UF.UI.form(
  6456. "学生管理",
  6457. $$("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 }), {
  6458. "id": "tcStudent",
  6459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _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); } }
  6465. break;
  6466. case "tcSchool": //腾讯学校管理
  6467. _formdiv = new U.UF.UI.form(
  6468. "学校管理",
  6469. $$("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 }), {
  6470. "id": "tcSchool",
  6471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _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); } }
  6477. break;
  6478. case "tcTeacher": //腾讯学校管理
  6479. _formdiv = new U.UF.UI.form(
  6480. "教师管理",
  6481. $$("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 }), {
  6482. "id": "tcTeacher",
  6483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _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); } }
  6489. break;
  6490. case "teacher":
  6491. _formdiv = new U.UF.UI.form(
  6492. "教师管理",
  6493. $$("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 }), {
  6494. "id": "teacher",
  6495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //创建窗体
  6500. _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); } }
  6501. break;
  6502. case "tcData": //腾讯我的资料
  6503. _formdiv = new U.UF.UI.form(
  6504. "我的资料",
  6505. $$("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 }), {
  6506. "id": "tcData",
  6507. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _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); } }
  6513. break;
  6514. case "tcNotice": //腾讯消息通知
  6515. _formdiv = new U.UF.UI.form(
  6516. "消息通知",
  6517. $$("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 }), {
  6518. "id": "tcNotice",
  6519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //创建窗体
  6524. _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); } }
  6525. break;
  6526. case "myReport": //好友打开
  6527. _formdiv = new U.UF.UI.form(
  6528. "我的评价",
  6529. $$("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 }), {
  6530. "id": "myReport",
  6531. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "learnAna": //好友打开
  6539. _formdiv = new U.UF.UI.form(
  6540. "学习分析",
  6541. $$("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 }), {
  6542. "id": "learnAna",
  6543. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "AIChat": //AI共创
  6551. _formdiv = new U.UF.UI.form(
  6552. "AI共创",
  6553. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6554. "id": "AIChat",
  6555. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. istop: true,
  6559. closecallback: function () { $("#aichat_icon").remove(); },
  6560. narrowcallback: function () {
  6561. if (!$("#aichat_icon")[0]) {
  6562. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6563. }
  6564. },
  6565. }, { "style": { "height": "36px" } }).form; //创建窗体
  6566. _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); } }
  6567. break;
  6568. case "ainew": //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/ainew/" }), {
  6572. "id": "ainew",
  6573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6574. "onresize": function () { }
  6575. }, {
  6576. closecallback: function () { }
  6577. }, { "style": { "height": "36px" } }).form; //创建窗体
  6578. _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); } }
  6579. break;
  6580. case "gpt4": //gpt4
  6581. _formdiv = new U.UF.UI.form(
  6582. "AI助手",
  6583. $$("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 }), {
  6584. "id": "gpt4",
  6585. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6586. "onresize": function () { }
  6587. }, {
  6588. closecallback: function () { }
  6589. }, { "style": { "height": "36px" } }).form; //创建窗体
  6590. _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); } }
  6591. break;
  6592. case "aigpt": //gpt4
  6593. _formdiv = new U.UF.UI.form(
  6594. "AI助手+",
  6595. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6596. "id": "aigpt",
  6597. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6598. "onresize": function () { }
  6599. }, {
  6600. closecallback: function () {
  6601. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6602. }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6606. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6607. })
  6608. break;
  6609. case "aiKnowledge": //aiKnowledge
  6610. _formdiv = new U.UF.UI.form(
  6611. "知识建构",
  6612. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6613. "id": "aiKnowledge",
  6614. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _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); } }
  6620. break;
  6621. case "futureClass": //AI共创
  6622. _formdiv = new U.UF.UI.form(
  6623. "协同建构",
  6624. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6625. "id": "synergyCourse",
  6626. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () {
  6630. $("iframe", _formdiv)[0].contentWindow.loginout();
  6631. }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "aiagent": //ai agent
  6636. _formdiv = new U.UF.UI.form(
  6637. "AI Agent",
  6638. $$("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" }), {
  6639. "id": "AIAgent",
  6640. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "dataBoard": //数据看板
  6648. _formdiv = new U.UF.UI.form(
  6649. "数据看板",
  6650. $$("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 }), {
  6651. "id": "dataBoard",
  6652. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _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); } }
  6658. break;
  6659. case "dataBoardSies": //数据融合
  6660. _formdiv = new U.UF.UI.form(
  6661. "数据融合",
  6662. $$("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 }), {
  6663. "id": "dataBoardSies",
  6664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "dataBoardNew": //数据看板
  6672. _formdiv = new U.UF.UI.form(
  6673. "综合看板",
  6674. $$("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 }), {
  6675. "id": "dataBoardNew",
  6676. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "dataBoardTest": //数据看板
  6684. _formdiv = new U.UF.UI.form(
  6685. "评测看板",
  6686. $$("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 }), {
  6687. "id": "dataBoardTest",
  6688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "AIAnalyse": //AI共创
  6696. _formdiv = new U.UF.UI.form(
  6697. "AI分析",
  6698. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6699. "id": "AIAnalyse",
  6700. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "studioCourse": //AI共创
  6708. _formdiv = new U.UF.UI.form(
  6709. "工作管理",
  6710. $$("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 }), {
  6711. "id": "studioCourse",
  6712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "studioIndex": //AI共创
  6720. _formdiv = new U.UF.UI.form(
  6721. "工作中心",
  6722. $$("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 }), {
  6723. "id": "studioIndex",
  6724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "source":
  6732. _formdiv = new U.UF.UI.form(
  6733. "教学资源",
  6734. $$("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 }), {
  6735. "id": "source",
  6736. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. break;
  6743. case "testTeacher":
  6744. _formdiv = new U.UF.UI.form(
  6745. "教师管理",
  6746. $$("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 }), {
  6747. "id": "testTeacher",
  6748. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _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); } }
  6754. break;
  6755. case "testStudent":
  6756. _formdiv = new U.UF.UI.form(
  6757. "教师中心",
  6758. $$("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 }), {
  6759. "id": "testStudent",
  6760. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _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); } }
  6766. break;
  6767. case "testTeacherSies":
  6768. _formdiv = new U.UF.UI.form(
  6769. "教师管理",
  6770. $$("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 }), {
  6771. "id": "testTeacherSies",
  6772. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "testStudentSies":
  6780. _formdiv = new U.UF.UI.form(
  6781. "教师中心",
  6782. $$("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 }), {
  6783. "id": "testStudentSies",
  6784. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break;
  6791. case "ytpbl": //消息通知
  6792. _formdiv = new U.UF.UI.form(
  6793. "案例征集",
  6794. $$("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 }), {
  6795. "id": "ytpbl",
  6796. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. // 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");
  6803. break;
  6804. case "aiCourseResource": //人工智能窗体
  6805. _formdiv = new U.UF.UI.form(
  6806. false,
  6807. $$("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 }), {
  6808. "id": "aiCourseResource",
  6809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6810. "onresize": function () { },
  6811. "isdrag": false,
  6812. }, {
  6813. closecallback: function () { }
  6814. }, { "style": { "height": "36px" } }).form; //创建窗体
  6815. _taskbar = ''
  6816. break;
  6817. case "szdjgCocooroboX": //图形化编程
  6818. _formdiv = new U.UF.UI.form(
  6819. "图形化编程",
  6820. $$("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" }), {
  6821. "id": "szdjgCocooroboX",
  6822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6823. "onresize": function () { }
  6824. }, {
  6825. closecallback: function () { }
  6826. }, { "style": { "height": "36px" } }).form; //创建窗体
  6827. _taskbar = ''
  6828. break;
  6829. case "szdjgPython": //python编程
  6830. _formdiv = new U.UF.UI.form(
  6831. "Python编程",
  6832. $$("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" }), {
  6833. "id": "szdjgPython",
  6834. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6835. "onresize": function () { }
  6836. }, {
  6837. closecallback: function () { }
  6838. }, { "style": { "height": "36px" } }).form; //创建窗体
  6839. _taskbar = ''
  6840. break;
  6841. case "Record":
  6842. _formdiv = new U.UF.UI.form(
  6843. "观察记录",
  6844. $$("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 }), {
  6845. "id": "Record",
  6846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6847. "onresize": function () { }
  6848. }, {
  6849. closecallback: function () { }
  6850. }, { "style": { "height": "36px" } }).form; //创建窗体
  6851. _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); } }
  6852. break;
  6853. case "aigptCourse":
  6854. _formdiv = new U.UF.UI.form(
  6855. "AI智能体",
  6856. $$("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' }), {
  6857. "id": "aigptCourse",
  6858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6859. "onresize": function () { }
  6860. }, {
  6861. closecallback: function () { }
  6862. }, { "style": { "height": "36px" } }).form; //创建窗体
  6863. _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); } }
  6864. break;
  6865. case "classroomObservation":
  6866. _formdiv = new U.UF.UI.form(
  6867. "课堂观察",
  6868. $$("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 }), {
  6869. "id": "classroomObservation",
  6870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6871. "onresize": function () { }
  6872. }, {
  6873. closecallback: function () { }
  6874. }, { "style": { "height": "36px" } }).form; //创建窗体
  6875. _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); } }
  6876. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6877. break;
  6878. case "pblCourse":
  6879. _formdiv = new U.UF.UI.form(
  6880. "学生PBL",
  6881. $$("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 }), {
  6882. "id": "pblCourse",
  6883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6884. "onresize": function () { }
  6885. }, {
  6886. closecallback: function () { }
  6887. }, { "style": { "height": "36px" } }).form; //创建窗体
  6888. _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); } }
  6889. break;
  6890. case "appStore":
  6891. _formdiv = new U.UF.UI.form(
  6892. "应用中心",
  6893. $$("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 }), {
  6894. "id": "pblCourse",
  6895. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6896. "onresize": function () { }
  6897. }, {
  6898. closecallback: function () { }
  6899. }, { "style": { "height": "36px" } }).form; //创建窗体
  6900. _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); } }
  6901. break;
  6902. }
  6903. //U.MD.D.I.openClick(str);
  6904. //如果有任务栏信息
  6905. if (_taskbar) {
  6906. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6907. }
  6908. }
  6909. // U.MD.D.I.openClick = function(str){
  6910. // var click = '';
  6911. // switch(str){
  6912. // case 'friend':
  6913. // click = '我的好友';
  6914. // break;
  6915. // case 'domain':
  6916. // click = '域名管理';
  6917. // break;
  6918. // case 'disk':
  6919. // click = '我的云盘';
  6920. // break;
  6921. // case 'word':
  6922. // click = 'Word';
  6923. // break;
  6924. // case 'excel':
  6925. // click = 'Execl';
  6926. // break;
  6927. // case 'txt':
  6928. // click = '文本文件';
  6929. // break;
  6930. // case 'lookupFriend':
  6931. // click = '查找好友';
  6932. // break;
  6933. // case 'ftp':
  6934. // click = 'FTP';
  6935. // break;
  6936. // case 'group':
  6937. // click = '群组';
  6938. // break;
  6939. // case 'set':
  6940. // click = '我的设置';
  6941. // break;
  6942. // case 'systemSet':
  6943. // click = '系统设置';
  6944. // break;
  6945. // case 'boomYun':
  6946. // click = '互联办公';
  6947. // break;
  6948. // case 'xz':
  6949. // click = '云端下载';
  6950. // break;
  6951. // case 'client':
  6952. // click = '有思浏览器';
  6953. // break;
  6954. // case 'backEndProgramming':
  6955. // click = '在线后台编程';
  6956. // break;
  6957. // case 'frontEndProgramming':
  6958. // click = '在线前端编程';
  6959. // break;
  6960. // default: break;
  6961. // }
  6962. // if(U.MD.D.I.Ip && click){
  6963. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6964. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6965. // })
  6966. // }
  6967. // }
  6968. /**
  6969. *函数作用:ajax简易函数,使用post格式
  6970. *@param url {data} 后台地址
  6971. *@param data {data} 参数json
  6972. *@param fn {data} 回调函数
  6973. *
  6974. */
  6975. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6976. // var xhr = new XMLHttpRequest();
  6977. // xhr.open("GET",url,true);
  6978. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6979. // xhr.onreadystatechange = function(){
  6980. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6981. // fn.call(this,xhr.responseText);
  6982. // }
  6983. // };
  6984. // xhr.send();
  6985. // }
  6986. /*判断是否是内网IP*/
  6987. // U.MD.D.I.isInnerIPFn = function(str){
  6988. // var curPageUrl = str;
  6989. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6990. // curPageUrl =curPageUrl.replace(reg1,'');
  6991. // // console.log('curPageUrl-1 '+curPageUrl);
  6992. // var reg2 = /\:+/g;//替换冒号为一点
  6993. // curPageUrl =curPageUrl.replace(reg2,'.');
  6994. // // console.log('curPageUrl-2 '+curPageUrl);
  6995. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6996. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6997. // if(curPageUrl[2] != '16'){
  6998. // return ipAddress;
  6999. // }else{
  7000. // return false;
  7001. // }
  7002. // }
  7003. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7004. // //compatibility for firefox and chrome
  7005. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7006. // var pc = new myPeerConnection({
  7007. // iceServers: []
  7008. // }),
  7009. // noop = function() {},
  7010. // localIPs = {},
  7011. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7012. // key;
  7013. // function iterateIP(ip) {
  7014. // if (!localIPs[ip]) onNewIP(ip);
  7015. // localIPs[ip] = true;
  7016. // }
  7017. // //create a bogus data channel
  7018. // pc.createDataChannel("");
  7019. // // create offer and set local description
  7020. // pc.createOffer().then(function(sdp) {
  7021. // sdp.sdp.split('\n').forEach(function(line) {
  7022. // if (line.indexOf('candidate') < 0) return;
  7023. // line.match(ipRegex).forEach(iterateIP);
  7024. // });
  7025. // pc.setLocalDescription(sdp, noop, noop);
  7026. // }).catch(function(reason) {
  7027. // // An error occurred, so handle the failure to connect
  7028. // });
  7029. // //sten for candidate events
  7030. // pc.onicecandidate = function(ice) {
  7031. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7032. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7033. // };
  7034. // }
  7035. // U.MD.D.I.getUserIpBool = function(callback){
  7036. // U.MD.D.I.getUserIP(function(ip){
  7037. // alert("Got IP! :" + ip);
  7038. // });
  7039. //}
  7040. //#endregion
  7041. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7042. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7043. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7044. _userinfo = US.userInfo, //登录用户信息
  7045. _userid = US.userInfo.userid //登录用户id
  7046. let _iframe;
  7047. let _cid = cid,
  7048. _stage = stage,
  7049. _task = task,
  7050. _tool = tool;
  7051. var _jie = $$("div", {
  7052. "style": {
  7053. "position": "absolute",
  7054. "bottom": "50px",
  7055. "right": "50px",
  7056. "zIndex": "9999",
  7057. "backgroundColor": "#2268bc",
  7058. "color": "#fff",
  7059. "padding": "12px 20px",
  7060. "cursor": "pointer",
  7061. "borderRadius": "4px",
  7062. },
  7063. "innerHTML": "提交作业"
  7064. })
  7065. let aTool = ''
  7066. let _loading = document.createElement('div')
  7067. _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;"
  7068. // _loading.id = "";
  7069. let _lchild = document.createElement('div')
  7070. let _limg = document.createElement('img')
  7071. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7072. _limg.style = "width: 26px;margin-right: 10px;"
  7073. _lchild.appendChild(_limg)
  7074. let _lspan = document.createElement('span')
  7075. _lspan.innerHTML = "上传中..."
  7076. _lchild.appendChild(_lspan)
  7077. _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%);"
  7078. _loading.appendChild(_lchild)
  7079. var _box = $$('div', {
  7080. "style": {
  7081. "position": "relative",
  7082. "width": "100%",
  7083. "height": "100%",
  7084. },
  7085. })
  7086. _box.appendChild(_loading)
  7087. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7088. switch (str) {
  7089. case "whiteboard":
  7090. aTool = 1;
  7091. _iframe = $$("iframe", {
  7092. "frameborder": "no",
  7093. "border": "0",
  7094. "scrolling ": "no",
  7095. "style": {
  7096. "cssText": "border:0;width:100%;height:100%"
  7097. },
  7098. "src": "https://beta.iwb.cocorobo.cn/"
  7099. })
  7100. _box.appendChild(_iframe);
  7101. _box.appendChild(_jie);
  7102. _formdiv = new U.UF.UI.form(
  7103. "电子白板",
  7104. _box, {
  7105. "id": "whiteboard" + cid + stage + task + tool,
  7106. "style": {
  7107. "width": "90%",
  7108. "height": "90%",
  7109. "overflow": 'hidden'
  7110. },
  7111. "onresize": function () { }
  7112. }, {
  7113. closecallback: function () { }
  7114. }, {
  7115. "style": {
  7116. "height": "36px"
  7117. }
  7118. }).form; //创建窗体
  7119. _taskbar = {
  7120. "id": str + _formdiv.id,
  7121. "style": {
  7122. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7123. },
  7124. "name": "电子白板",
  7125. "forms": _formdiv,
  7126. "click": function () {
  7127. U.MD.D.I.openApplication(str, obj, info);
  7128. }
  7129. }
  7130. break;
  7131. case "mind":
  7132. aTool = 3;
  7133. _iframe = $$("iframe", {
  7134. "frameborder": "no",
  7135. "border": "0",
  7136. "scrolling ": "no",
  7137. "style": {
  7138. "cssText": "border:0;width:100%;height:100%"
  7139. },
  7140. "src": "/kityminder-editor/dist/index.html"
  7141. })
  7142. _box.appendChild(_iframe);
  7143. _box.appendChild(_jie);
  7144. _formdiv = new U.UF.UI.form(
  7145. "思维导图",
  7146. _box, { //"/jsmind/example/demo.html"
  7147. "id": "mind" + cid + stage + task + tool,
  7148. "style": {
  7149. "width": "90%",
  7150. "height": "90%",
  7151. "overflow": 'hidden'
  7152. },
  7153. "onresize": function () { }
  7154. }, {
  7155. closecallback: function () { }
  7156. }, {
  7157. "style": {
  7158. "height": "36px"
  7159. }
  7160. }).form; //创建窗体
  7161. _taskbar = {
  7162. "id": str + _formdiv.id,
  7163. "style": {
  7164. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7165. },
  7166. "name": "思维导图",
  7167. "forms": _formdiv,
  7168. "click": function () {
  7169. U.MD.D.I.openApplication(str, obj, info);
  7170. }
  7171. }
  7172. break;
  7173. case "MindMap":
  7174. aTool = 3;
  7175. _iframe = $$("iframe", {
  7176. "frameborder": "no",
  7177. "border": "0",
  7178. "scrolling ": "no",
  7179. "style": {
  7180. "cssText": "border:0;width:100%;height:100%"
  7181. },
  7182. "src": "//cloud.cocorobo.cn/mind/"
  7183. })
  7184. _box.appendChild(_iframe);
  7185. _box.appendChild(_jie);
  7186. _formdiv = new U.UF.UI.form(
  7187. "思维导图",
  7188. _box, { //"/jsmind/example/demo.html"
  7189. "id": "mind" + cid + stage + task + tool,
  7190. "style": {
  7191. "width": "90%",
  7192. "height": "90%",
  7193. "overflow": 'hidden'
  7194. },
  7195. "onresize": function () { }
  7196. }, {
  7197. closecallback: function () { }
  7198. }, {
  7199. "style": {
  7200. "height": "36px"
  7201. }
  7202. }).form; //创建窗体
  7203. _taskbar = {
  7204. "id": str + _formdiv.id,
  7205. "style": {
  7206. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7207. },
  7208. "name": "思维导图",
  7209. "forms": _formdiv,
  7210. "click": function () {
  7211. U.MD.D.I.openApplication(str, obj, info);
  7212. }
  7213. }
  7214. break;
  7215. case "doc":
  7216. aTool = 6;
  7217. _iframe = $$("iframe", {
  7218. "frameborder": "no",
  7219. "border": "0",
  7220. "scrolling ": "no",
  7221. "style": {
  7222. "cssText": "border:0;width:100%;height:100%"
  7223. },
  7224. "src": "/Office/Word/WordEditArea.htm"
  7225. })
  7226. _box.appendChild(_iframe);
  7227. _box.appendChild(_jie);
  7228. _formdiv = new U.UF.UI.form(
  7229. "协同文档",
  7230. _box, {
  7231. "id": "doc" + cid + stage + task + tool,
  7232. "style": {
  7233. "width": "90%",
  7234. "height": "90%",
  7235. "overflow": 'hidden'
  7236. },
  7237. "onresize": function () { }
  7238. }, {
  7239. closecallback: function () { }
  7240. }, {
  7241. "style": {
  7242. "height": "36px"
  7243. }
  7244. }).form; //创建窗体
  7245. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7246. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7247. })
  7248. _taskbar = {
  7249. "id": str + _formdiv.id,
  7250. "style": {
  7251. "backgroundImage": "url(/img/icon/doc.png)"
  7252. },
  7253. "name": "协同文档",
  7254. "forms": _formdiv,
  7255. "click": function () {
  7256. U.MD.D.I.openApplication(str, obj, info);
  7257. }
  7258. }
  7259. break;
  7260. case "mindNetwork": //好友打开
  7261. aTool = 7;
  7262. _iframe = $$("iframe", {
  7263. "webkitallowfullscreen": "",
  7264. "mozallowfullscreen": "",
  7265. "allowfullscreen": "",
  7266. "frameborder": "no",
  7267. "border": "0",
  7268. "scrolling ": "no",
  7269. "style": {
  7270. "cssText": "border:0; width:100%; height:100%;"
  7271. },
  7272. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7273. })
  7274. _box.appendChild(_iframe);
  7275. _box.appendChild(_jie);
  7276. _formdiv = new U.UF.UI.form(
  7277. "思维网格",
  7278. _box, {
  7279. "id": "mindNetwork" + cid + stage + task + tool,
  7280. "style": {
  7281. "width": "90%",
  7282. "height": "90%",
  7283. "overflow": 'hidden'
  7284. },
  7285. "onresize": function () { }
  7286. }, {
  7287. closecallback: function () { }
  7288. }, {
  7289. "style": {
  7290. "height": "36px"
  7291. }
  7292. }).form; //创建窗体
  7293. _taskbar = {
  7294. "id": str + _formdiv.id,
  7295. "style": {
  7296. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7297. },
  7298. "name": "思维网格",
  7299. "forms": _formdiv,
  7300. "click": function () {
  7301. U.MD.D.I.openApplication(str, obj, info);
  7302. }
  7303. }
  7304. break;
  7305. case "courseDesign":
  7306. _iframe = $$("iframe", {
  7307. "webkitallowfullscreen": "",
  7308. "mozallowfullscreen": "",
  7309. "allowfullscreen": "",
  7310. "frameborder": "no",
  7311. "border": "0",
  7312. "scrolling ": "no",
  7313. "style": {
  7314. "cssText": "border:0; width:100%; height:100%;"
  7315. },
  7316. "src": "/course-design-vue"
  7317. })
  7318. _box.appendChild(_iframe);
  7319. _box.appendChild(_jie);
  7320. _formdiv = new U.UF.UI.form(
  7321. "项目设计",
  7322. _box, {
  7323. "id": "courseDesign" + cid + stage + task + tool,
  7324. "style": {
  7325. "width": "90%",
  7326. "height": "90%",
  7327. "overflow": 'hidden'
  7328. },
  7329. "onresize": function () { }
  7330. }, {
  7331. closecallback: function () { }
  7332. }, {
  7333. "style": {
  7334. "height": "36px"
  7335. }
  7336. }).form; //创建窗体
  7337. _taskbar = {
  7338. "id": str + _formdiv.id,
  7339. "style": {
  7340. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7341. },
  7342. "name": "项目设计",
  7343. "forms": _formdiv,
  7344. "click": function () {
  7345. U.MD.D.I.openApplication(str, obj, info);
  7346. }
  7347. }
  7348. break;
  7349. }
  7350. const script1 = document.createElement("script");
  7351. script1.type = "text/javascript";
  7352. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7353. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7354. const script2 = document.createElement("script");
  7355. script2.type = "text/javascript";
  7356. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7357. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7358. const script3 = document.createElement("script");
  7359. script3.type = "text/javascript";
  7360. script3.charset = "UTF-8";
  7361. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7362. const script4 = document.createElement("script");
  7363. script4.type = "text/javascript";
  7364. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7365. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7366. if (_iframe) {
  7367. if (str == 'doc') {
  7368. _iframe = _formdiv.querySelector('iframe')
  7369. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7370. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7371. _iframe.contentWindow.document.body.appendChild(script1);
  7372. _iframe.contentWindow.document.body.appendChild(script2);
  7373. // _iframe.contentWindow.document.body.appendChild(script3);
  7374. _iframe.contentWindow.document.body.appendChild(script4);
  7375. })
  7376. if (onloadListener) {
  7377. _iframe.contentDocument.location.reload()
  7378. } else {
  7379. _iframe.contentDocument.location.reload()
  7380. }
  7381. } else if (str == 'courseDesign') {
  7382. U.UF.DL.iframeLoad(_iframe, function () {
  7383. // _iframe.contentWindow.U.MD.O.W.load();
  7384. // _iframe.contentWindow.document.body.appendChild(script1);
  7385. _iframe.contentWindow.document.body.appendChild(script2);
  7386. _iframe.contentWindow.document.body.appendChild(script4);
  7387. })
  7388. } else if (str == 'mind') {
  7389. _iframe = _formdiv.querySelector('iframe')
  7390. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7391. //
  7392. _iframe.contentWindow.document.body.appendChild(script1);
  7393. _iframe.contentWindow.document.body.appendChild(script2);
  7394. _iframe.contentWindow.document.body.appendChild(script4);
  7395. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7396. })
  7397. if (onloadListener) {
  7398. _iframe.contentDocument.location.reload()
  7399. } else {
  7400. _iframe.contentDocument.location.reload()
  7401. }
  7402. } else if (str == 'whiteboard') {
  7403. _iframe = _formdiv.querySelector('iframe')
  7404. let onloadListener = _iframe.onload = () => {
  7405. _iframe.contentWindow.document.body.appendChild(script1);
  7406. _iframe.contentWindow.document.body.appendChild(script2);
  7407. _iframe.contentWindow.document.body.appendChild(script4);
  7408. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7409. };
  7410. // if (onloadListener) {
  7411. // try {
  7412. // _iframe.src += "?cocorobo="+new Date().getTime()
  7413. // _iframe.contentWindow.document.location.reload()
  7414. // } catch (error) {
  7415. // }
  7416. // } else {
  7417. // _iframe.contentDocument.location.reload()
  7418. // }
  7419. } else {
  7420. _iframe.onload = () => {
  7421. _iframe.contentWindow.document.body.appendChild(script1);
  7422. _iframe.contentWindow.document.body.appendChild(script2);
  7423. // _iframe.contentWindow.document.body.appendChild(script3);
  7424. _iframe.contentWindow.document.body.appendChild(script4);
  7425. };
  7426. }
  7427. _jie.onclick = async () => {
  7428. let text = ''
  7429. if (aTool == 1) {
  7430. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7431. } else if (aTool == 6) {
  7432. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7433. } else if (aTool == 3) {
  7434. text = await U.MD.D.I.getEditorContent(_iframe);
  7435. }
  7436. _loading.style.display = 'flex'
  7437. console.log(_loading);
  7438. var _ajs = _iframe.contentWindow.document.createElement("script");
  7439. _ajs.type = "text/javascript";
  7440. _ajs.innerHTML =
  7441. // 'console.log(' + _loading + ');\n' +
  7442. 'var _js = document.createElement("script");\n' +
  7443. '_js.type="text/javascript";\n' +
  7444. '_js.charset="UTF-8";\n' +
  7445. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7446. "_js.onload = function(){\n" +
  7447. ' var a = document.getElementsByTagName("img")\n' +
  7448. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7449. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7450. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7451. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7452. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7453. "beforeUpload_shishi(file," +
  7454. "'" +
  7455. _userid +
  7456. "'" +
  7457. ", " +
  7458. "'" +
  7459. _cid +
  7460. "'" +
  7461. ", " +
  7462. "'" +
  7463. _stage +
  7464. "'" +
  7465. ", " +
  7466. "'" +
  7467. _task +
  7468. "'" +
  7469. ", " +
  7470. "'" +
  7471. _tool +
  7472. "'" +
  7473. ", " +
  7474. "'" +
  7475. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. aTool +
  7480. "'" +
  7481. ", " +
  7482. "`" +
  7483. text +
  7484. "`" +
  7485. ")\n" +
  7486. " });\n" +
  7487. "}\n" +
  7488. "document.head.appendChild(_js);\n";
  7489. _iframe.contentWindow.document.head.appendChild(_ajs);
  7490. }
  7491. }
  7492. //U.MD.D.I.openClick(str);
  7493. //如果有任务栏信息
  7494. // if (_taskbar) {
  7495. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7496. // }
  7497. }
  7498. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7499. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7500. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7501. _userinfo = US.userInfo, //登录用户信息
  7502. _userid = US.userInfo.userid //登录用户id
  7503. let _iframe;
  7504. let _cid = cid,
  7505. _stage = stage,
  7506. _task = task,
  7507. _tool = tool;
  7508. var _jie = $$("div", {
  7509. "style": {
  7510. "position": "absolute",
  7511. "bottom": "50px",
  7512. "right": "50px",
  7513. "zIndex": "9999",
  7514. "backgroundColor": "#2268bc",
  7515. "color": "#fff",
  7516. "padding": "12px 20px",
  7517. "cursor": "pointer",
  7518. "borderRadius": "4px",
  7519. },
  7520. "innerHTML": "提交作业"
  7521. })
  7522. let aTool = ''
  7523. let _loading = document.createElement('div')
  7524. _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;"
  7525. // _loading.id = "";
  7526. let _lchild = document.createElement('div')
  7527. let _limg = document.createElement('img')
  7528. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7529. _limg.style = "width: 26px;margin-right: 10px;"
  7530. _lchild.appendChild(_limg)
  7531. let _lspan = document.createElement('span')
  7532. _lspan.innerHTML = "上传中..."
  7533. _lchild.appendChild(_lspan)
  7534. _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%);"
  7535. _loading.appendChild(_lchild)
  7536. let _box = $$('div', {
  7537. "style": {
  7538. "position": "relative",
  7539. "width": "100%",
  7540. "height": "100%",
  7541. },
  7542. })
  7543. _box.appendChild(_loading)
  7544. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7545. switch (str) {
  7546. case "whiteboard":
  7547. aTool = 1;
  7548. _iframe = $$("iframe", {
  7549. "frameborder": "no",
  7550. "border": "0",
  7551. "scrolling ": "no",
  7552. "style": {
  7553. "cssText": "border:0;width:100%;height:100%"
  7554. },
  7555. "src": "https://beta.iwb.cocorobo.cn/"
  7556. })
  7557. _box.appendChild(_iframe);
  7558. _box.appendChild(_jie);
  7559. _formdiv = new U.UF.UI.form(
  7560. "电子白板",
  7561. _box, {
  7562. "id": "whiteboard" + cid + stage + task + tool,
  7563. "style": {
  7564. "width": "90%",
  7565. "height": "90%",
  7566. "overflow": 'hidden'
  7567. },
  7568. "onresize": function () { }
  7569. }, {
  7570. closecallback: function () { }
  7571. }, {
  7572. "style": {
  7573. "height": "36px"
  7574. }
  7575. }).form; //创建窗体
  7576. _taskbar = {
  7577. "id": str + _formdiv.id,
  7578. "style": {
  7579. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7580. },
  7581. "name": "电子白板",
  7582. "forms": _formdiv,
  7583. "click": function () {
  7584. U.MD.D.I.openApplication(str, obj, info);
  7585. }
  7586. }
  7587. break;
  7588. case "mind":
  7589. aTool = 3;
  7590. _iframe = $$("iframe", {
  7591. "frameborder": "no",
  7592. "border": "0",
  7593. "scrolling ": "no",
  7594. "style": {
  7595. "cssText": "border:0;width:100%;height:100%"
  7596. },
  7597. "src": "/kityminder-editor/dist/index.html"
  7598. })
  7599. _box.appendChild(_iframe);
  7600. _box.appendChild(_jie);
  7601. _formdiv = new U.UF.UI.form(
  7602. "思维导图",
  7603. _box, { //"/jsmind/example/demo.html"
  7604. "id": "mind" + cid + stage + task + tool,
  7605. "style": {
  7606. "width": "90%",
  7607. "height": "90%",
  7608. "overflow": 'hidden'
  7609. },
  7610. "onresize": function () { }
  7611. }, {
  7612. closecallback: function () { }
  7613. }, {
  7614. "style": {
  7615. "height": "36px"
  7616. }
  7617. }).form; //创建窗体
  7618. _taskbar = {
  7619. "id": str + _formdiv.id,
  7620. "style": {
  7621. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7622. },
  7623. "name": "思维导图",
  7624. "forms": _formdiv,
  7625. "click": function () {
  7626. U.MD.D.I.openApplication(str, obj, info);
  7627. }
  7628. }
  7629. break;
  7630. case "MindMap":
  7631. aTool = 3;
  7632. _iframe = $$("iframe", {
  7633. "frameborder": "no",
  7634. "border": "0",
  7635. "scrolling ": "no",
  7636. "style": {
  7637. "cssText": "border:0;width:100%;height:100%"
  7638. },
  7639. "src": "//cloud.cocorobo.cn/mind/"
  7640. })
  7641. _box.appendChild(_iframe);
  7642. _box.appendChild(_jie);
  7643. _formdiv = new U.UF.UI.form(
  7644. "思维导图",
  7645. _box, { //"/jsmind/example/demo.html"
  7646. "id": "mind" + cid + stage + task + tool,
  7647. "style": {
  7648. "width": "90%",
  7649. "height": "90%",
  7650. "overflow": 'hidden'
  7651. },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, {
  7656. "style": {
  7657. "height": "36px"
  7658. }
  7659. }).form; //创建窗体
  7660. _taskbar = {
  7661. "id": str + _formdiv.id,
  7662. "style": {
  7663. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7664. },
  7665. "name": "思维导图",
  7666. "forms": _formdiv,
  7667. "click": function () {
  7668. U.MD.D.I.openApplication(str, obj, info);
  7669. }
  7670. }
  7671. break;
  7672. case "doc":
  7673. aTool = 6;
  7674. _iframe = $$("iframe", {
  7675. "frameborder": "no",
  7676. "border": "0",
  7677. "scrolling ": "no",
  7678. "style": {
  7679. "cssText": "border:0;width:100%;height:100%"
  7680. },
  7681. "src": "/Office/Word/WordEditArea.htm"
  7682. })
  7683. _box.appendChild(_iframe);
  7684. _box.appendChild(_jie);
  7685. _formdiv = new U.UF.UI.form(
  7686. "协同文档",
  7687. _box, {
  7688. "id": "doc" + cid + stage + task + tool,
  7689. "style": {
  7690. "width": "90%",
  7691. "height": "90%",
  7692. "overflow": 'hidden'
  7693. },
  7694. "onresize": function () { }
  7695. }, {
  7696. closecallback: function () { }
  7697. }, {
  7698. "style": {
  7699. "height": "36px"
  7700. }
  7701. }).form; //创建窗体
  7702. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7703. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7704. })
  7705. _taskbar = {
  7706. "id": str + _formdiv.id,
  7707. "style": {
  7708. "backgroundImage": "url(/img/icon/doc.png)"
  7709. },
  7710. "name": "协同文档",
  7711. "forms": _formdiv,
  7712. "click": function () {
  7713. U.MD.D.I.openApplication(str, obj, info);
  7714. }
  7715. }
  7716. break;
  7717. case "mindNetwork": //好友打开
  7718. aTool = 7;
  7719. _iframe = $$("iframe", {
  7720. "webkitallowfullscreen": "",
  7721. "mozallowfullscreen": "",
  7722. "allowfullscreen": "",
  7723. "frameborder": "no",
  7724. "border": "0",
  7725. "scrolling ": "no",
  7726. "style": {
  7727. "cssText": "border:0; width:100%; height:100%;"
  7728. },
  7729. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7730. })
  7731. _box.appendChild(_iframe);
  7732. _box.appendChild(_jie);
  7733. _formdiv = new U.UF.UI.form(
  7734. "思维网格",
  7735. _box, {
  7736. "id": "mindNetwork" + cid + stage + task + tool,
  7737. "style": {
  7738. "width": "90%",
  7739. "height": "90%",
  7740. "overflow": 'hidden'
  7741. },
  7742. "onresize": function () { }
  7743. }, {
  7744. closecallback: function () { }
  7745. }, {
  7746. "style": {
  7747. "height": "36px"
  7748. }
  7749. }).form; //创建窗体
  7750. _taskbar = {
  7751. "id": str + _formdiv.id,
  7752. "style": {
  7753. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7754. },
  7755. "name": "思维网格",
  7756. "forms": _formdiv,
  7757. "click": function () {
  7758. U.MD.D.I.openApplication(str, obj, info);
  7759. }
  7760. }
  7761. break;
  7762. case "courseDesign":
  7763. _iframe = $$("iframe", {
  7764. "webkitallowfullscreen": "",
  7765. "mozallowfullscreen": "",
  7766. "allowfullscreen": "",
  7767. "frameborder": "no",
  7768. "border": "0",
  7769. "scrolling ": "no",
  7770. "style": {
  7771. "cssText": "border:0; width:100%; height:100%;"
  7772. },
  7773. "src": "/course-design-vue"
  7774. })
  7775. _box.appendChild(_iframe);
  7776. _box.appendChild(_jie);
  7777. _formdiv = new U.UF.UI.form(
  7778. "项目设计",
  7779. _box, {
  7780. "id": "courseDesign" + cid + stage + task + tool,
  7781. "style": {
  7782. "width": "90%",
  7783. "height": "90%",
  7784. "overflow": 'hidden'
  7785. },
  7786. "onresize": function () { }
  7787. }, {
  7788. closecallback: function () { }
  7789. }, {
  7790. "style": {
  7791. "height": "36px"
  7792. }
  7793. }).form; //创建窗体
  7794. _taskbar = {
  7795. "id": str + _formdiv.id,
  7796. "style": {
  7797. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7798. },
  7799. "name": "项目设计",
  7800. "forms": _formdiv,
  7801. "click": function () {
  7802. U.MD.D.I.openApplication(str, obj, info);
  7803. }
  7804. }
  7805. break;
  7806. }
  7807. const script1 = document.createElement("script");
  7808. script1.type = "text/javascript";
  7809. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7810. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7811. const script2 = document.createElement("script");
  7812. script2.type = "text/javascript";
  7813. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7814. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7815. const script3 = document.createElement("script");
  7816. script3.type = "text/javascript";
  7817. script3.charset = "UTF-8";
  7818. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7819. const script4 = document.createElement("script");
  7820. script4.type = "text/javascript";
  7821. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7822. script4.src = window.origin + "/js/Common/jietu2E.js";
  7823. if (_iframe) {
  7824. if (str == 'doc') {
  7825. _iframe = _formdiv.querySelector('iframe')
  7826. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7827. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7828. _iframe.contentWindow.document.body.appendChild(script1);
  7829. _iframe.contentWindow.document.body.appendChild(script2);
  7830. // _iframe.contentWindow.document.body.appendChild(script3);
  7831. _iframe.contentWindow.document.body.appendChild(script4);
  7832. })
  7833. if (onloadListener) {
  7834. _iframe.contentDocument.location.reload()
  7835. } else {
  7836. _iframe.contentDocument.location.reload()
  7837. }
  7838. } else if (str == 'courseDesign') {
  7839. U.UF.DL.iframeLoad(_iframe, function () {
  7840. // _iframe.contentWindow.U.MD.O.W.load();
  7841. // _iframe.contentWindow.document.body.appendChild(script1);
  7842. _iframe.contentWindow.document.body.appendChild(script2);
  7843. _iframe.contentWindow.document.body.appendChild(script4);
  7844. })
  7845. } else if (str == 'mind') {
  7846. _iframe = _formdiv.querySelector('iframe')
  7847. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7848. //
  7849. _iframe.contentWindow.document.body.appendChild(script1);
  7850. _iframe.contentWindow.document.body.appendChild(script2);
  7851. _iframe.contentWindow.document.body.appendChild(script4);
  7852. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7853. })
  7854. if (onloadListener) {
  7855. _iframe.contentDocument.location.reload()
  7856. } else {
  7857. _iframe.contentDocument.location.reload()
  7858. }
  7859. } else if (str == 'whiteboard') {
  7860. _iframe = _formdiv.querySelector('iframe')
  7861. let onloadListener = _iframe.onload = () => {
  7862. _iframe.contentWindow.document.body.appendChild(script1);
  7863. _iframe.contentWindow.document.body.appendChild(script2);
  7864. _iframe.contentWindow.document.body.appendChild(script4);
  7865. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7866. };
  7867. // if (onloadListener) {
  7868. // try {
  7869. // _iframe.src += "?cocorobo="+new Date().getTime()
  7870. // _iframe.contentWindow.document.location.reload()
  7871. // } catch (error) {
  7872. // }
  7873. // } else {
  7874. // _iframe.contentDocument.location.reload()
  7875. // }
  7876. } else {
  7877. _iframe.onload = () => {
  7878. _iframe.contentWindow.document.body.appendChild(script1);
  7879. _iframe.contentWindow.document.body.appendChild(script2);
  7880. // _iframe.contentWindow.document.body.appendChild(script3);
  7881. _iframe.contentWindow.document.body.appendChild(script4);
  7882. };
  7883. }
  7884. _jie.onclick = async () => {
  7885. let text = ''
  7886. if (aTool == 1) {
  7887. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7888. } else if (aTool == 6) {
  7889. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7890. } else if (aTool == 3) {
  7891. text = await U.MD.D.I.getEditorContent(_iframe);
  7892. }
  7893. _loading.style.display = 'flex'
  7894. console.log(_loading);
  7895. var _ajs = _iframe.contentWindow.document.createElement("script");
  7896. _ajs.type = "text/javascript";
  7897. _ajs.innerHTML =
  7898. // 'console.log(' + _loading + ');\n' +
  7899. 'var _js = document.createElement("script");\n' +
  7900. '_js.type="text/javascript";\n' +
  7901. '_js.charset="UTF-8";\n' +
  7902. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7903. "_js.onload = function(){\n" +
  7904. ' var a = document.getElementsByTagName("img")\n' +
  7905. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7906. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7907. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7908. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7909. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7910. "beforeUpload_shishi(file," +
  7911. "'" +
  7912. _userid +
  7913. "'" +
  7914. ", " +
  7915. "'" +
  7916. _cid +
  7917. "'" +
  7918. ", " +
  7919. "'" +
  7920. _stage +
  7921. "'" +
  7922. ", " +
  7923. "'" +
  7924. _task +
  7925. "'" +
  7926. ", " +
  7927. "'" +
  7928. _tool +
  7929. "'" +
  7930. ", " +
  7931. "'" +
  7932. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. aTool +
  7937. "'" +
  7938. ", " +
  7939. "`" +
  7940. text +
  7941. "`" +
  7942. ")\n" +
  7943. " });\n" +
  7944. "}\n" +
  7945. "document.head.appendChild(_js);\n";
  7946. _iframe.contentWindow.document.head.appendChild(_ajs);
  7947. }
  7948. }
  7949. //U.MD.D.I.openClick(str);
  7950. //如果有任务栏信息
  7951. // if (_taskbar) {
  7952. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7953. // }
  7954. }
  7955. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7956. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7957. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7958. _userid = student.userid, //登录用户id
  7959. _username = student.student //用户名字
  7960. let _iframe;
  7961. let _cid = cid,
  7962. _stage = stage,
  7963. _task = task,
  7964. _tool = tool;
  7965. var _jie = $$("div", {
  7966. "style": {
  7967. "position": "absolute",
  7968. "bottom": "50px",
  7969. "right": "50px",
  7970. "zIndex": "9999",
  7971. "backgroundColor": "#2268bc",
  7972. "color": "#fff",
  7973. "padding": "12px 20px",
  7974. "cursor": "pointer",
  7975. "borderRadius": "4px",
  7976. },
  7977. "innerHTML": "提交作业"
  7978. })
  7979. let aTool = ''
  7980. let _loading = document.createElement('div')
  7981. _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;"
  7982. // _loading.id = "";
  7983. let _lchild = document.createElement('div')
  7984. let _limg = document.createElement('img')
  7985. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7986. _limg.style = "width: 26px;margin-right: 10px;"
  7987. _lchild.appendChild(_limg)
  7988. let _lspan = document.createElement('span')
  7989. _lspan.innerHTML = "上传中..."
  7990. _lchild.appendChild(_lspan)
  7991. _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%);"
  7992. _loading.appendChild(_lchild)
  7993. var _box = $$('div', {
  7994. "style": {
  7995. "position": "relative",
  7996. "width": "100%",
  7997. "height": "100%",
  7998. },
  7999. })
  8000. _box.appendChild(_loading)
  8001. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8002. switch (str) {
  8003. case "whiteboard":
  8004. aTool = 1;
  8005. _iframe = $$("iframe", {
  8006. "frameborder": "no",
  8007. "border": "0",
  8008. "scrolling ": "no",
  8009. "style": {
  8010. "cssText": "border:0;width:100%;height:100%"
  8011. },
  8012. "src": "https://beta.iwb.cocorobo.cn/"
  8013. })
  8014. _box.appendChild(_iframe);
  8015. _box.appendChild(_jie);
  8016. _formdiv = new U.UF.UI.form(
  8017. "电子白板-" + _username,
  8018. _box, {
  8019. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8020. "style": {
  8021. "width": "90%",
  8022. "height": "90%",
  8023. "overflow": 'hidden'
  8024. },
  8025. "onresize": function () { }
  8026. }, {
  8027. closecallback: function () { }
  8028. }, {
  8029. "style": {
  8030. "height": "36px"
  8031. }
  8032. }).form; //创建窗体
  8033. _taskbar = {
  8034. "id": str + _formdiv.id,
  8035. "style": {
  8036. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8037. },
  8038. "name": "电子白板",
  8039. "forms": _formdiv,
  8040. "click": function () {
  8041. U.MD.D.I.openApplication(str, obj, info);
  8042. }
  8043. }
  8044. break;
  8045. case "mind":
  8046. aTool = 3;
  8047. _iframe = $$("iframe", {
  8048. "frameborder": "no",
  8049. "border": "0",
  8050. "scrolling ": "no",
  8051. "style": {
  8052. "cssText": "border:0;width:100%;height:100%"
  8053. },
  8054. "src": "/kityminder-editor/dist/index.html"
  8055. })
  8056. _box.appendChild(_iframe);
  8057. _box.appendChild(_jie);
  8058. _formdiv = new U.UF.UI.form(
  8059. "思维导图-" + _username,
  8060. _box, { //"/jsmind/example/demo.html"
  8061. "id": "mind" + cid + stage + task + tool + _userid,
  8062. "style": {
  8063. "width": "90%",
  8064. "height": "90%",
  8065. "overflow": 'hidden'
  8066. },
  8067. "onresize": function () { }
  8068. }, {
  8069. closecallback: function () { }
  8070. }, {
  8071. "style": {
  8072. "height": "36px"
  8073. }
  8074. }).form; //创建窗体
  8075. _taskbar = {
  8076. "id": str + _formdiv.id,
  8077. "style": {
  8078. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8079. },
  8080. "name": "思维导图",
  8081. "forms": _formdiv,
  8082. "click": function () {
  8083. U.MD.D.I.openApplication(str, obj, info);
  8084. }
  8085. }
  8086. break;
  8087. case "MindMap":
  8088. aTool = 3;
  8089. _iframe = $$("iframe", {
  8090. "frameborder": "no",
  8091. "border": "0",
  8092. "scrolling ": "no",
  8093. "style": {
  8094. "cssText": "border:0;width:100%;height:100%"
  8095. },
  8096. "src": "//cloud.cocorobo.cn/mind/"
  8097. })
  8098. _box.appendChild(_iframe);
  8099. _box.appendChild(_jie);
  8100. _formdiv = new U.UF.UI.form(
  8101. "思维导图-" + _username,
  8102. _box, { //"/jsmind/example/demo.html"
  8103. "id": "mind" + cid + stage + task + tool + _userid,
  8104. "style": {
  8105. "width": "90%",
  8106. "height": "90%",
  8107. "overflow": 'hidden'
  8108. },
  8109. "onresize": function () { }
  8110. }, {
  8111. closecallback: function () { }
  8112. }, {
  8113. "style": {
  8114. "height": "36px"
  8115. }
  8116. }).form; //创建窗体
  8117. _taskbar = {
  8118. "id": str + _formdiv.id,
  8119. "style": {
  8120. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8121. },
  8122. "name": "思维导图",
  8123. "forms": _formdiv,
  8124. "click": function () {
  8125. U.MD.D.I.openApplication(str, obj, info);
  8126. }
  8127. }
  8128. break;
  8129. case "doc":
  8130. aTool = 6;
  8131. _iframe = $$("iframe", {
  8132. "frameborder": "no",
  8133. "border": "0",
  8134. "scrolling ": "no",
  8135. "style": {
  8136. "cssText": "border:0;width:100%;height:100%"
  8137. },
  8138. "src": "/Office/Word/WordEditArea.htm"
  8139. })
  8140. _box.appendChild(_iframe);
  8141. _box.appendChild(_jie);
  8142. _formdiv = new U.UF.UI.form(
  8143. "协同文档-" + _username,
  8144. _box, {
  8145. "id": "doc" + cid + stage + task + tool + _userid,
  8146. "style": {
  8147. "width": "90%",
  8148. "height": "90%",
  8149. "overflow": 'hidden'
  8150. },
  8151. "onresize": function () { }
  8152. }, {
  8153. closecallback: function () { }
  8154. }, {
  8155. "style": {
  8156. "height": "36px"
  8157. }
  8158. }).form; //创建窗体
  8159. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8160. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8161. })
  8162. _taskbar = {
  8163. "id": str + _formdiv.id,
  8164. "style": {
  8165. "backgroundImage": "url(/img/icon/doc.png)"
  8166. },
  8167. "name": "协同文档",
  8168. "forms": _formdiv,
  8169. "click": function () {
  8170. U.MD.D.I.openApplication(str, obj, info);
  8171. }
  8172. }
  8173. break;
  8174. case "mindNetwork": //好友打开
  8175. aTool = 7;
  8176. _iframe = $$("iframe", {
  8177. "webkitallowfullscreen": "",
  8178. "mozallowfullscreen": "",
  8179. "allowfullscreen": "",
  8180. "frameborder": "no",
  8181. "border": "0",
  8182. "scrolling ": "no",
  8183. "style": {
  8184. "cssText": "border:0; width:100%; height:100%;"
  8185. },
  8186. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8187. })
  8188. _box.appendChild(_iframe);
  8189. _box.appendChild(_jie);
  8190. _formdiv = new U.UF.UI.form(
  8191. "思维网格-" + _username,
  8192. _box, {
  8193. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8194. "style": {
  8195. "width": "90%",
  8196. "height": "90%",
  8197. "overflow": 'hidden'
  8198. },
  8199. "onresize": function () { }
  8200. }, {
  8201. closecallback: function () { }
  8202. }, {
  8203. "style": {
  8204. "height": "36px"
  8205. }
  8206. }).form; //创建窗体
  8207. _taskbar = {
  8208. "id": str + _formdiv.id,
  8209. "style": {
  8210. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8211. },
  8212. "name": "思维网格",
  8213. "forms": _formdiv,
  8214. "click": function () {
  8215. U.MD.D.I.openApplication(str, obj, info);
  8216. }
  8217. }
  8218. break;
  8219. case "courseDesign":
  8220. _iframe = $$("iframe", {
  8221. "webkitallowfullscreen": "",
  8222. "mozallowfullscreen": "",
  8223. "allowfullscreen": "",
  8224. "frameborder": "no",
  8225. "border": "0",
  8226. "scrolling ": "no",
  8227. "style": {
  8228. "cssText": "border:0; width:100%; height:100%;"
  8229. },
  8230. "src": "/course-design-vue"
  8231. })
  8232. _box.appendChild(_iframe);
  8233. _box.appendChild(_jie);
  8234. _formdiv = new U.UF.UI.form(
  8235. "项目设计-" + _username,
  8236. _box, {
  8237. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8238. "style": {
  8239. "width": "90%",
  8240. "height": "90%",
  8241. "overflow": 'hidden'
  8242. },
  8243. "onresize": function () { }
  8244. }, {
  8245. closecallback: function () { }
  8246. }, {
  8247. "style": {
  8248. "height": "36px"
  8249. }
  8250. }).form; //创建窗体
  8251. _taskbar = {
  8252. "id": str + _formdiv.id,
  8253. "style": {
  8254. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8255. },
  8256. "name": "项目设计",
  8257. "forms": _formdiv,
  8258. "click": function () {
  8259. U.MD.D.I.openApplication(str, obj, info);
  8260. }
  8261. }
  8262. break;
  8263. }
  8264. const script1 = document.createElement("script");
  8265. script1.type = "text/javascript";
  8266. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8267. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8268. const script2 = document.createElement("script");
  8269. script2.type = "text/javascript";
  8270. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8271. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8272. const script3 = document.createElement("script");
  8273. script3.type = "text/javascript";
  8274. script3.charset = "UTF-8";
  8275. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8276. const script4 = document.createElement("script");
  8277. script4.type = "text/javascript";
  8278. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8279. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8280. if (_iframe) {
  8281. if (str == 'doc') {
  8282. _iframe = _formdiv.querySelector('iframe')
  8283. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8284. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8285. _iframe.contentWindow.document.body.appendChild(script1);
  8286. _iframe.contentWindow.document.body.appendChild(script2);
  8287. // _iframe.contentWindow.document.body.appendChild(script3);
  8288. _iframe.contentWindow.document.body.appendChild(script4);
  8289. })
  8290. if (onloadListener) {
  8291. _iframe.contentDocument.location.reload()
  8292. } else {
  8293. _iframe.contentDocument.location.reload()
  8294. }
  8295. } else if (str == 'courseDesign') {
  8296. U.UF.DL.iframeLoad(_iframe, function () {
  8297. // _iframe.contentWindow.U.MD.O.W.load();
  8298. // _iframe.contentWindow.document.body.appendChild(script1);
  8299. _iframe.contentWindow.document.body.appendChild(script2);
  8300. _iframe.contentWindow.document.body.appendChild(script4);
  8301. })
  8302. } else if (str == 'mind') {
  8303. _iframe = _formdiv.querySelector('iframe')
  8304. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8305. //
  8306. _iframe.contentWindow.document.body.appendChild(script1);
  8307. _iframe.contentWindow.document.body.appendChild(script2);
  8308. _iframe.contentWindow.document.body.appendChild(script4);
  8309. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8310. })
  8311. if (onloadListener) {
  8312. _iframe.contentDocument.location.reload()
  8313. } else {
  8314. _iframe.contentDocument.location.reload()
  8315. }
  8316. } else if (str == 'whiteboard') {
  8317. _iframe = _formdiv.querySelector('iframe')
  8318. let onloadListener = _iframe.onload = () => {
  8319. _iframe.contentWindow.document.body.appendChild(script1);
  8320. _iframe.contentWindow.document.body.appendChild(script2);
  8321. _iframe.contentWindow.document.body.appendChild(script4);
  8322. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8323. };
  8324. // if (onloadListener) {
  8325. // try {
  8326. // _iframe.src += "?cocorobo="+new Date().getTime()
  8327. // _iframe.contentWindow.document.location.reload()
  8328. // } catch (error) {
  8329. // }
  8330. // } else {
  8331. // _iframe.contentDocument.location.reload()
  8332. // }
  8333. } else {
  8334. _iframe.onload = () => {
  8335. _iframe.contentWindow.document.body.appendChild(script1);
  8336. _iframe.contentWindow.document.body.appendChild(script2);
  8337. // _iframe.contentWindow.document.body.appendChild(script3);
  8338. _iframe.contentWindow.document.body.appendChild(script4);
  8339. };
  8340. }
  8341. _jie.onclick = async () => {
  8342. let text = ''
  8343. if (aTool == 1) {
  8344. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8345. } else if (aTool == 6) {
  8346. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8347. } else if (aTool == 3) {
  8348. text = await U.MD.D.I.getEditorContent(_iframe);
  8349. }
  8350. _loading.style.display = 'flex'
  8351. console.log(_loading);
  8352. var _ajs = _iframe.contentWindow.document.createElement("script");
  8353. _ajs.type = "text/javascript";
  8354. _ajs.innerHTML =
  8355. // 'console.log(' + _loading + ');\n' +
  8356. 'var _js = document.createElement("script");\n' +
  8357. '_js.type="text/javascript";\n' +
  8358. '_js.charset="UTF-8";\n' +
  8359. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8360. "_js.onload = function(){\n" +
  8361. ' var a = document.getElementsByTagName("img")\n' +
  8362. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8363. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8364. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8365. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8366. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8367. "beforeUpload_shishi(file," +
  8368. "'" +
  8369. _userid +
  8370. "'" +
  8371. ", " +
  8372. "'" +
  8373. _cid +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _stage +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. _task +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. _tool +
  8386. "'" +
  8387. ", " +
  8388. "'" +
  8389. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8390. "'" +
  8391. ", " +
  8392. "'" +
  8393. aTool +
  8394. "'" +
  8395. ", " +
  8396. "`" +
  8397. text +
  8398. "`" +
  8399. ")\n" +
  8400. " });\n" +
  8401. "}\n" +
  8402. "document.head.appendChild(_js);\n";
  8403. _iframe.contentWindow.document.head.appendChild(_ajs);
  8404. }
  8405. }
  8406. }
  8407. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8408. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8409. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8410. _userid = student.userid, //登录用户id
  8411. _username = student.student //用户名字
  8412. let _iframe;
  8413. let _cid = cid,
  8414. _stage = stage,
  8415. _task = task,
  8416. _tool = tool;
  8417. var _jie = $$("div", {
  8418. "style": {
  8419. "position": "absolute",
  8420. "bottom": "50px",
  8421. "right": "50px",
  8422. "zIndex": "9999",
  8423. "backgroundColor": "#2268bc",
  8424. "color": "#fff",
  8425. "padding": "12px 20px",
  8426. "cursor": "pointer",
  8427. "borderRadius": "4px",
  8428. },
  8429. "innerHTML": "提交作业"
  8430. })
  8431. let aTool = ''
  8432. let _loading = document.createElement('div')
  8433. _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;"
  8434. // _loading.id = "";
  8435. let _lchild = document.createElement('div')
  8436. let _limg = document.createElement('img')
  8437. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8438. _limg.style = "width: 26px;margin-right: 10px;"
  8439. _lchild.appendChild(_limg)
  8440. let _lspan = document.createElement('span')
  8441. _lspan.innerHTML = "上传中..."
  8442. _lchild.appendChild(_lspan)
  8443. _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%);"
  8444. _loading.appendChild(_lchild)
  8445. var _box = $$('div', {
  8446. "style": {
  8447. "position": "relative",
  8448. "width": "100%",
  8449. "height": "100%",
  8450. },
  8451. })
  8452. _box.appendChild(_loading)
  8453. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8454. switch (str) {
  8455. case "whiteboard":
  8456. aTool = 1;
  8457. _iframe = $$("iframe", {
  8458. "frameborder": "no",
  8459. "border": "0",
  8460. "scrolling ": "no",
  8461. "style": {
  8462. "cssText": "border:0;width:100%;height:100%"
  8463. },
  8464. "src": "https://beta.iwb.cocorobo.cn/"
  8465. })
  8466. _box.appendChild(_iframe);
  8467. _box.appendChild(_jie);
  8468. _formdiv = new U.UF.UI.form(
  8469. "电子白板-" + _username,
  8470. _box, {
  8471. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8472. "style": {
  8473. "width": "90%",
  8474. "height": "90%",
  8475. "overflow": 'hidden'
  8476. },
  8477. "onresize": function () { }
  8478. }, {
  8479. closecallback: function () { }
  8480. }, {
  8481. "style": {
  8482. "height": "36px"
  8483. }
  8484. }).form; //创建窗体
  8485. _taskbar = {
  8486. "id": str + _formdiv.id,
  8487. "style": {
  8488. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8489. },
  8490. "name": "电子白板",
  8491. "forms": _formdiv,
  8492. "click": function () {
  8493. U.MD.D.I.openApplication(str, obj, info);
  8494. }
  8495. }
  8496. break;
  8497. case "mind":
  8498. aTool = 3;
  8499. _iframe = $$("iframe", {
  8500. "frameborder": "no",
  8501. "border": "0",
  8502. "scrolling ": "no",
  8503. "style": {
  8504. "cssText": "border:0;width:100%;height:100%"
  8505. },
  8506. "src": "/kityminder-editor/dist/index.html"
  8507. })
  8508. _box.appendChild(_iframe);
  8509. _box.appendChild(_jie);
  8510. _formdiv = new U.UF.UI.form(
  8511. "思维导图-" + _username,
  8512. _box, { //"/jsmind/example/demo.html"
  8513. "id": "mind" + cid + stage + task + tool + _userid,
  8514. "style": {
  8515. "width": "90%",
  8516. "height": "90%",
  8517. "overflow": 'hidden'
  8518. },
  8519. "onresize": function () { }
  8520. }, {
  8521. closecallback: function () { }
  8522. }, {
  8523. "style": {
  8524. "height": "36px"
  8525. }
  8526. }).form; //创建窗体
  8527. _taskbar = {
  8528. "id": str + _formdiv.id,
  8529. "style": {
  8530. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8531. },
  8532. "name": "思维导图",
  8533. "forms": _formdiv,
  8534. "click": function () {
  8535. U.MD.D.I.openApplication(str, obj, info);
  8536. }
  8537. }
  8538. break;
  8539. case "MindMap":
  8540. aTool = 3;
  8541. _iframe = $$("iframe", {
  8542. "frameborder": "no",
  8543. "border": "0",
  8544. "scrolling ": "no",
  8545. "style": {
  8546. "cssText": "border:0;width:100%;height:100%"
  8547. },
  8548. "src": "//cloud.cocorobo.cn/mind/"
  8549. })
  8550. _box.appendChild(_iframe);
  8551. _box.appendChild(_jie);
  8552. _formdiv = new U.UF.UI.form(
  8553. "思维导图-" + _username,
  8554. _box, { //"/jsmind/example/demo.html"
  8555. "id": "mind" + cid + stage + task + tool + _userid,
  8556. "style": {
  8557. "width": "90%",
  8558. "height": "90%",
  8559. "overflow": 'hidden'
  8560. },
  8561. "onresize": function () { }
  8562. }, {
  8563. closecallback: function () { }
  8564. }, {
  8565. "style": {
  8566. "height": "36px"
  8567. }
  8568. }).form; //创建窗体
  8569. _taskbar = {
  8570. "id": str + _formdiv.id,
  8571. "style": {
  8572. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8573. },
  8574. "name": "思维导图",
  8575. "forms": _formdiv,
  8576. "click": function () {
  8577. U.MD.D.I.openApplication(str, obj, info);
  8578. }
  8579. }
  8580. break;
  8581. case "doc":
  8582. aTool = 6;
  8583. _iframe = $$("iframe", {
  8584. "frameborder": "no",
  8585. "border": "0",
  8586. "scrolling ": "no",
  8587. "style": {
  8588. "cssText": "border:0;width:100%;height:100%"
  8589. },
  8590. "src": "/Office/Word/WordEditArea.htm"
  8591. })
  8592. _box.appendChild(_iframe);
  8593. _box.appendChild(_jie);
  8594. _formdiv = new U.UF.UI.form(
  8595. "协同文档-" + _username,
  8596. _box, {
  8597. "id": "doc" + cid + stage + task + tool + _userid,
  8598. "style": {
  8599. "width": "90%",
  8600. "height": "90%",
  8601. "overflow": 'hidden'
  8602. },
  8603. "onresize": function () { }
  8604. }, {
  8605. closecallback: function () { }
  8606. }, {
  8607. "style": {
  8608. "height": "36px"
  8609. }
  8610. }).form; //创建窗体
  8611. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8612. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8613. })
  8614. _taskbar = {
  8615. "id": str + _formdiv.id,
  8616. "style": {
  8617. "backgroundImage": "url(/img/icon/doc.png)"
  8618. },
  8619. "name": "协同文档",
  8620. "forms": _formdiv,
  8621. "click": function () {
  8622. U.MD.D.I.openApplication(str, obj, info);
  8623. }
  8624. }
  8625. break;
  8626. case "mindNetwork": //好友打开
  8627. aTool = 7;
  8628. _iframe = $$("iframe", {
  8629. "webkitallowfullscreen": "",
  8630. "mozallowfullscreen": "",
  8631. "allowfullscreen": "",
  8632. "frameborder": "no",
  8633. "border": "0",
  8634. "scrolling ": "no",
  8635. "style": {
  8636. "cssText": "border:0; width:100%; height:100%;"
  8637. },
  8638. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8639. })
  8640. _box.appendChild(_iframe);
  8641. _box.appendChild(_jie);
  8642. _formdiv = new U.UF.UI.form(
  8643. "思维网格-" + _username,
  8644. _box, {
  8645. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8646. "style": {
  8647. "width": "90%",
  8648. "height": "90%",
  8649. "overflow": 'hidden'
  8650. },
  8651. "onresize": function () { }
  8652. }, {
  8653. closecallback: function () { }
  8654. }, {
  8655. "style": {
  8656. "height": "36px"
  8657. }
  8658. }).form; //创建窗体
  8659. _taskbar = {
  8660. "id": str + _formdiv.id,
  8661. "style": {
  8662. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8663. },
  8664. "name": "思维网格",
  8665. "forms": _formdiv,
  8666. "click": function () {
  8667. U.MD.D.I.openApplication(str, obj, info);
  8668. }
  8669. }
  8670. break;
  8671. case "courseDesign":
  8672. _iframe = $$("iframe", {
  8673. "webkitallowfullscreen": "",
  8674. "mozallowfullscreen": "",
  8675. "allowfullscreen": "",
  8676. "frameborder": "no",
  8677. "border": "0",
  8678. "scrolling ": "no",
  8679. "style": {
  8680. "cssText": "border:0; width:100%; height:100%;"
  8681. },
  8682. "src": "/course-design-vue"
  8683. })
  8684. _box.appendChild(_iframe);
  8685. _box.appendChild(_jie);
  8686. _formdiv = new U.UF.UI.form(
  8687. "项目设计-" + _username,
  8688. _box, {
  8689. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8690. "style": {
  8691. "width": "90%",
  8692. "height": "90%",
  8693. "overflow": 'hidden'
  8694. },
  8695. "onresize": function () { }
  8696. }, {
  8697. closecallback: function () { }
  8698. }, {
  8699. "style": {
  8700. "height": "36px"
  8701. }
  8702. }).form; //创建窗体
  8703. _taskbar = {
  8704. "id": str + _formdiv.id,
  8705. "style": {
  8706. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8707. },
  8708. "name": "项目设计",
  8709. "forms": _formdiv,
  8710. "click": function () {
  8711. U.MD.D.I.openApplication(str, obj, info);
  8712. }
  8713. }
  8714. break;
  8715. }
  8716. const script1 = document.createElement("script");
  8717. script1.type = "text/javascript";
  8718. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8719. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8720. const script2 = document.createElement("script");
  8721. script2.type = "text/javascript";
  8722. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8723. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8724. const script3 = document.createElement("script");
  8725. script3.type = "text/javascript";
  8726. script3.charset = "UTF-8";
  8727. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8728. const script4 = document.createElement("script");
  8729. script4.type = "text/javascript";
  8730. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8731. script4.src = window.origin + "/js/Common/jietu2E.js";
  8732. if (_iframe) {
  8733. if (str == 'doc') {
  8734. _iframe = _formdiv.querySelector('iframe')
  8735. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8736. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8737. _iframe.contentWindow.document.body.appendChild(script1);
  8738. _iframe.contentWindow.document.body.appendChild(script2);
  8739. // _iframe.contentWindow.document.body.appendChild(script3);
  8740. _iframe.contentWindow.document.body.appendChild(script4);
  8741. })
  8742. if (onloadListener) {
  8743. _iframe.contentDocument.location.reload()
  8744. } else {
  8745. _iframe.contentDocument.location.reload()
  8746. }
  8747. } else if (str == 'courseDesign') {
  8748. U.UF.DL.iframeLoad(_iframe, function () {
  8749. // _iframe.contentWindow.U.MD.O.W.load();
  8750. // _iframe.contentWindow.document.body.appendChild(script1);
  8751. _iframe.contentWindow.document.body.appendChild(script2);
  8752. _iframe.contentWindow.document.body.appendChild(script4);
  8753. })
  8754. } else if (str == 'mind') {
  8755. _iframe = _formdiv.querySelector('iframe')
  8756. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8757. //
  8758. _iframe.contentWindow.document.body.appendChild(script1);
  8759. _iframe.contentWindow.document.body.appendChild(script2);
  8760. _iframe.contentWindow.document.body.appendChild(script4);
  8761. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8762. })
  8763. if (onloadListener) {
  8764. _iframe.contentDocument.location.reload()
  8765. } else {
  8766. _iframe.contentDocument.location.reload()
  8767. }
  8768. } else if (str == 'whiteboard') {
  8769. _iframe = _formdiv.querySelector('iframe')
  8770. let onloadListener = _iframe.onload = () => {
  8771. _iframe.contentWindow.document.body.appendChild(script1);
  8772. _iframe.contentWindow.document.body.appendChild(script2);
  8773. _iframe.contentWindow.document.body.appendChild(script4);
  8774. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8775. };
  8776. // if (onloadListener) {
  8777. // try {
  8778. // _iframe.src += "?cocorobo="+new Date().getTime()
  8779. // _iframe.contentWindow.document.location.reload()
  8780. // } catch (error) {
  8781. // }
  8782. // } else {
  8783. // _iframe.contentDocument.location.reload()
  8784. // }
  8785. } else {
  8786. _iframe.onload = () => {
  8787. _iframe.contentWindow.document.body.appendChild(script1);
  8788. _iframe.contentWindow.document.body.appendChild(script2);
  8789. // _iframe.contentWindow.document.body.appendChild(script3);
  8790. _iframe.contentWindow.document.body.appendChild(script4);
  8791. };
  8792. }
  8793. _jie.onclick = async () => {
  8794. let text = ''
  8795. if (aTool == 1) {
  8796. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8797. } else if (aTool == 6) {
  8798. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8799. } else if (aTool == 3) {
  8800. text = await U.MD.D.I.getEditorContent(_iframe);
  8801. }
  8802. _loading.style.display = 'flex'
  8803. console.log(_loading);
  8804. var _ajs = _iframe.contentWindow.document.createElement("script");
  8805. _ajs.type = "text/javascript";
  8806. _ajs.innerHTML =
  8807. // 'console.log(' + _loading + ');\n' +
  8808. 'var _js = document.createElement("script");\n' +
  8809. '_js.type="text/javascript";\n' +
  8810. '_js.charset="UTF-8";\n' +
  8811. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8812. "_js.onload = function(){\n" +
  8813. ' var a = document.getElementsByTagName("img")\n' +
  8814. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8815. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8816. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8817. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8818. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8819. "beforeUpload_shishi(file," +
  8820. "'" +
  8821. _userid +
  8822. "'" +
  8823. ", " +
  8824. "'" +
  8825. _cid +
  8826. "'" +
  8827. ", " +
  8828. "'" +
  8829. _stage +
  8830. "'" +
  8831. ", " +
  8832. "'" +
  8833. _task +
  8834. "'" +
  8835. ", " +
  8836. "'" +
  8837. _tool +
  8838. "'" +
  8839. ", " +
  8840. "'" +
  8841. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8842. "'" +
  8843. ", " +
  8844. "'" +
  8845. aTool +
  8846. "'" +
  8847. ", " +
  8848. "`" +
  8849. text +
  8850. "`" +
  8851. ")\n" +
  8852. " });\n" +
  8853. "}\n" +
  8854. "document.head.appendChild(_js);\n";
  8855. _iframe.contentWindow.document.head.appendChild(_ajs);
  8856. }
  8857. }
  8858. }
  8859. U.MD.D.I.getEditorContent = function (iframe) {
  8860. return new Promise((resolve, reject) => {
  8861. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8862. console.log(content);
  8863. resolve(content)
  8864. });
  8865. });
  8866. }
  8867. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8868. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8869. // if (res.value[0].length > 0) {
  8870. // // resolve(res.value[0][0].text);
  8871. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8872. // $(fileInput).val('');
  8873. // });
  8874. // }
  8875. // }, [], { "type": "GET", "withCredentials": true });
  8876. var xmlhttp;
  8877. var Mac, Sn, DeviceId
  8878. if (window.XMLHttpRequest) {
  8879. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8880. xmlhttp = new XMLHttpRequest();
  8881. } else {
  8882. // IE6, IE5 浏览器执行代码
  8883. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8884. }
  8885. xmlhttp.onreadystatechange = function () {
  8886. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8887. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8888. // resolve(res.value[0][0].text);
  8889. if (type == '2') {
  8890. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8891. } else if (type == '3') {
  8892. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8893. }
  8894. } else {
  8895. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8896. }
  8897. }
  8898. }
  8899. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8900. xmlhttp.send();
  8901. }
  8902. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8903. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8904. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8905. _userinfo = US.userInfo, //登录用户信息
  8906. _userid = US.userInfo.userid //登录用户id
  8907. let _iframe;
  8908. let _cid = cid,
  8909. _stage = stage,
  8910. _task = task,
  8911. _tool = tool;
  8912. var _jie = $$("div", {
  8913. "style": {
  8914. "position": "absolute",
  8915. "bottom": "50px",
  8916. "right": "50px",
  8917. "zIndex": "9999",
  8918. "backgroundColor": "#2268bc",
  8919. "color": "#fff",
  8920. "padding": "12px 20px",
  8921. "cursor": "pointer",
  8922. "borderRadius": "4px",
  8923. },
  8924. "innerHTML": "确认并提交"
  8925. })
  8926. let aTool = ''
  8927. let _loading = document.createElement('div')
  8928. _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;"
  8929. // _loading.id = "";
  8930. let _lchild = document.createElement('div')
  8931. let _limg = document.createElement('img')
  8932. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8933. _limg.style = "width: 26px;margin-right: 10px;"
  8934. _lchild.appendChild(_limg)
  8935. let _lspan = document.createElement('span')
  8936. _lspan.innerHTML = "上传中..."
  8937. _lchild.appendChild(_lspan)
  8938. _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%);"
  8939. _loading.appendChild(_lchild)
  8940. var _box = $$('div', {
  8941. "style": {
  8942. "position": "relative",
  8943. "width": "100%",
  8944. "height": "100%",
  8945. },
  8946. })
  8947. _box.appendChild(_loading)
  8948. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8949. switch (str) {
  8950. case "whiteboard":
  8951. aTool = 1;
  8952. _iframe = $$("iframe", {
  8953. "frameborder": "no",
  8954. "border": "0",
  8955. "scrolling ": "no",
  8956. "style": {
  8957. "cssText": "border:0;width:100%;height:100%"
  8958. },
  8959. "src": "https://beta.iwb.cocorobo.cn/"
  8960. })
  8961. _box.appendChild(_iframe);
  8962. _box.appendChild(_jie);
  8963. _formdiv = new U.UF.UI.form(
  8964. "电子白板",
  8965. _box, {
  8966. "id": "whiteboards" + cid + stage + task + tool,
  8967. "style": {
  8968. "width": "90%",
  8969. "height": "90%",
  8970. "overflow": 'hidden'
  8971. },
  8972. "onresize": function () { }
  8973. }, {
  8974. closecallback: function () { }
  8975. }, {
  8976. "style": {
  8977. "height": "36px"
  8978. }
  8979. }).form; //创建窗体
  8980. _taskbar = {
  8981. "id": str + _formdiv.id,
  8982. "style": {
  8983. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8984. },
  8985. "name": "电子白板",
  8986. "forms": _formdiv,
  8987. "click": function () {
  8988. U.MD.D.I.openApplication(str, obj, info);
  8989. }
  8990. }
  8991. break;
  8992. case "mind":
  8993. aTool = 3;
  8994. _iframe = $$("iframe", {
  8995. "frameborder": "no",
  8996. "border": "0",
  8997. "scrolling ": "no",
  8998. "style": {
  8999. "cssText": "border:0;width:100%;height:100%"
  9000. },
  9001. "src": "/kityminder-editor/dist/index.html"
  9002. });
  9003. _box.appendChild(_iframe);
  9004. _box.appendChild(_jie);
  9005. _formdiv = new U.UF.UI.form(
  9006. "思维导图",
  9007. _box, { //"/jsmind/example/demo.html"
  9008. "id": "minds" + cid + stage + task + tool,
  9009. "style": {
  9010. "width": "90%",
  9011. "height": "90%",
  9012. "overflow": 'hidden'
  9013. },
  9014. "onresize": function () { }
  9015. }, {
  9016. closecallback: function () { }
  9017. }, {
  9018. "style": {
  9019. "height": "36px"
  9020. }
  9021. }).form; //创建窗体
  9022. _taskbar = {
  9023. "id": str + _formdiv.id,
  9024. "style": {
  9025. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9026. },
  9027. "name": "思维导图",
  9028. "forms": _formdiv,
  9029. "click": function () {
  9030. U.MD.D.I.openApplication(str, obj, info);
  9031. }
  9032. }
  9033. break;
  9034. case "doc":
  9035. aTool = 6;
  9036. _iframe = $$("iframe", {
  9037. "frameborder": "no",
  9038. "border": "0",
  9039. "scrolling ": "no",
  9040. "style": {
  9041. "cssText": "border:0;width:100%;height:100%"
  9042. },
  9043. "src": "/Office/Word/WordEditArea.htm"
  9044. })
  9045. _box.appendChild(_iframe);
  9046. _box.appendChild(_jie);
  9047. _formdiv = new U.UF.UI.form(
  9048. "协同文档",
  9049. _box, {
  9050. "id": "docs" + cid + stage + task + tool,
  9051. "style": {
  9052. "width": "90%",
  9053. "height": "90%",
  9054. "overflow": 'hidden'
  9055. },
  9056. "onresize": function () { }
  9057. }, {
  9058. closecallback: function () { }
  9059. }, {
  9060. "style": {
  9061. "height": "36px"
  9062. }
  9063. }).form; //创建窗体
  9064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9066. })
  9067. _taskbar = {
  9068. "id": str + _formdiv.id,
  9069. "style": {
  9070. "backgroundImage": "url(/img/icon/doc.png)"
  9071. },
  9072. "name": "协同文档",
  9073. "forms": _formdiv,
  9074. "click": function () {
  9075. U.MD.D.I.openApplication(str, obj, info);
  9076. }
  9077. }
  9078. break;
  9079. }
  9080. const script1 = document.createElement("script");
  9081. script1.type = "text/javascript";
  9082. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9083. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9084. const script2 = document.createElement("script");
  9085. script2.type = "text/javascript";
  9086. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9087. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9088. const script3 = document.createElement("script");
  9089. script3.type = "text/javascript";
  9090. script3.charset = "UTF-8";
  9091. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9092. const script4 = document.createElement("script");
  9093. script4.type = "text/javascript";
  9094. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9095. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9096. if (_iframe) {
  9097. if (str == 'doc') {
  9098. _iframe = _formdiv.querySelector('iframe')
  9099. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9100. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9101. _iframe.contentWindow.document.body.appendChild(script1);
  9102. _iframe.contentWindow.document.body.appendChild(script2);
  9103. // _iframe.contentWindow.document.body.appendChild(script3);
  9104. _iframe.contentWindow.document.body.appendChild(script4);
  9105. })
  9106. if (onloadListener) {
  9107. _iframe.contentDocument.location.reload()
  9108. } else {
  9109. _iframe.contentDocument.location.reload()
  9110. }
  9111. } else if (str == 'mind') {
  9112. _iframe = _formdiv.querySelector('iframe')
  9113. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9114. _iframe.contentWindow.document.body.appendChild(script1);
  9115. _iframe.contentWindow.document.body.appendChild(script2);
  9116. _iframe.contentWindow.document.body.appendChild(script4);
  9117. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9118. })
  9119. if (onloadListener) {
  9120. _iframe.contentDocument.location.reload()
  9121. } else {
  9122. _iframe.contentDocument.location.reload()
  9123. }
  9124. } else {
  9125. _iframe.onload = () => {
  9126. _iframe.contentWindow.document.body.appendChild(script1);
  9127. _iframe.contentWindow.document.body.appendChild(script2);
  9128. // _iframe.contentWindow.document.body.appendChild(script3);
  9129. _iframe.contentWindow.document.body.appendChild(script4);
  9130. };
  9131. }
  9132. _jie.onclick = async () => {
  9133. let text = ''
  9134. if (aTool == 6) {
  9135. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9136. } else if (aTool == 3) {
  9137. text = await U.MD.D.I.getEditorContent(_iframe);
  9138. }
  9139. _loading.style.display = 'flex'
  9140. console.log(_loading);
  9141. var _ajs = _iframe.contentWindow.document.createElement("script");
  9142. _ajs.type = "text/javascript";
  9143. _ajs.innerHTML =
  9144. // 'console.log(' + _loading + ');\n' +
  9145. 'var _js = document.createElement("script");\n' +
  9146. '_js.type="text/javascript";\n' +
  9147. '_js.charset="UTF-8";\n' +
  9148. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9149. "_js.onload = function(){\n" +
  9150. ' var a = document.getElementsByTagName("img")\n' +
  9151. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9152. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9153. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9154. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9155. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9156. "beforeUpload_shishi(file," +
  9157. "'" +
  9158. _userid +
  9159. "'" +
  9160. ", " +
  9161. "'" +
  9162. _cid +
  9163. "'" +
  9164. ", " +
  9165. "'" +
  9166. _stage +
  9167. "'" +
  9168. ", " +
  9169. "'" +
  9170. _task +
  9171. "'" +
  9172. ", " +
  9173. "'" +
  9174. _tool +
  9175. "'" +
  9176. ", " +
  9177. "'" +
  9178. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9179. "'" +
  9180. ", " +
  9181. "'" +
  9182. aTool +
  9183. "'" +
  9184. ", " +
  9185. "`" +
  9186. text +
  9187. "`" +
  9188. ")\n" +
  9189. " });\n" +
  9190. "}\n" +
  9191. "document.head.appendChild(_js);\n";
  9192. _iframe.contentWindow.document.head.appendChild(_ajs);
  9193. }
  9194. }
  9195. //U.MD.D.I.openClick(str);
  9196. //如果有任务栏信息
  9197. // if (_taskbar) {
  9198. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9199. // }
  9200. }
  9201. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9202. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9203. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9204. _userinfo = US.userInfo, //登录用户信息
  9205. _userid = US.userInfo.userid //登录用户id
  9206. let _iframe;
  9207. let _cid = cid,
  9208. _stage = stage,
  9209. _task = task,
  9210. _tool = tool;
  9211. var _jie = $$("div", {
  9212. "style": {
  9213. "position": "absolute",
  9214. "bottom": "50px",
  9215. "right": "50px",
  9216. "zIndex": "9999",
  9217. "backgroundColor": "#2268bc",
  9218. "color": "#fff",
  9219. "padding": "12px 20px",
  9220. "cursor": "pointer",
  9221. "borderRadius": "4px",
  9222. },
  9223. "innerHTML": "确认并提交"
  9224. })
  9225. let aTool = ''
  9226. let _loading = document.createElement('div')
  9227. _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;"
  9228. // _loading.id = "";
  9229. let _lchild = document.createElement('div')
  9230. let _limg = document.createElement('img')
  9231. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9232. _limg.style = "width: 26px;margin-right: 10px;"
  9233. _lchild.appendChild(_limg)
  9234. let _lspan = document.createElement('span')
  9235. _lspan.innerHTML = "上传中..."
  9236. _lchild.appendChild(_lspan)
  9237. _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%);"
  9238. _loading.appendChild(_lchild)
  9239. var _box = $$('div', {
  9240. "style": {
  9241. "position": "relative",
  9242. "width": "100%",
  9243. "height": "100%",
  9244. },
  9245. })
  9246. _box.appendChild(_loading)
  9247. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9248. switch (str) {
  9249. case "whiteboard":
  9250. aTool = 1;
  9251. _iframe = $$("iframe", {
  9252. "frameborder": "no",
  9253. "border": "0",
  9254. "scrolling ": "no",
  9255. "style": {
  9256. "cssText": "border:0;width:100%;height:100%"
  9257. },
  9258. "src": "https://beta.iwb.cocorobo.cn/"
  9259. })
  9260. _box.appendChild(_iframe);
  9261. _box.appendChild(_jie);
  9262. _formdiv = new U.UF.UI.form(
  9263. "电子白板",
  9264. _box, {
  9265. "id": "whiteboards" + cid + stage + task + tool,
  9266. "style": {
  9267. "width": "90%",
  9268. "height": "90%",
  9269. "overflow": 'hidden'
  9270. },
  9271. "onresize": function () { }
  9272. }, {
  9273. closecallback: function () { }
  9274. }, {
  9275. "style": {
  9276. "height": "36px"
  9277. }
  9278. }).form; //创建窗体
  9279. _taskbar = {
  9280. "id": str + _formdiv.id,
  9281. "style": {
  9282. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9283. },
  9284. "name": "电子白板",
  9285. "forms": _formdiv,
  9286. "click": function () {
  9287. U.MD.D.I.openApplication(str, obj, info);
  9288. }
  9289. }
  9290. break;
  9291. case "mind":
  9292. aTool = 3;
  9293. _iframe = $$("iframe", {
  9294. "frameborder": "no",
  9295. "border": "0",
  9296. "scrolling ": "no",
  9297. "style": {
  9298. "cssText": "border:0;width:100%;height:100%"
  9299. },
  9300. "src": "/kityminder-editor/dist/index.html"
  9301. });
  9302. _box.appendChild(_iframe);
  9303. _box.appendChild(_jie);
  9304. _formdiv = new U.UF.UI.form(
  9305. "思维导图",
  9306. _box, { //"/jsmind/example/demo.html"
  9307. "id": "minds" + cid + stage + task + tool,
  9308. "style": {
  9309. "width": "90%",
  9310. "height": "90%",
  9311. "overflow": 'hidden'
  9312. },
  9313. "onresize": function () { }
  9314. }, {
  9315. closecallback: function () { }
  9316. }, {
  9317. "style": {
  9318. "height": "36px"
  9319. }
  9320. }).form; //创建窗体
  9321. _taskbar = {
  9322. "id": str + _formdiv.id,
  9323. "style": {
  9324. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9325. },
  9326. "name": "思维导图",
  9327. "forms": _formdiv,
  9328. "click": function () {
  9329. U.MD.D.I.openApplication(str, obj, info);
  9330. }
  9331. }
  9332. break;
  9333. case "doc":
  9334. aTool = 6;
  9335. _iframe = $$("iframe", {
  9336. "frameborder": "no",
  9337. "border": "0",
  9338. "scrolling ": "no",
  9339. "style": {
  9340. "cssText": "border:0;width:100%;height:100%"
  9341. },
  9342. "src": "/Office/Word/WordEditArea.htm"
  9343. })
  9344. _box.appendChild(_iframe);
  9345. _box.appendChild(_jie);
  9346. _formdiv = new U.UF.UI.form(
  9347. "协同文档",
  9348. _box, {
  9349. "id": "docs" + cid + stage + task + tool,
  9350. "style": {
  9351. "width": "90%",
  9352. "height": "90%",
  9353. "overflow": 'hidden'
  9354. },
  9355. "onresize": function () { }
  9356. }, {
  9357. closecallback: function () { }
  9358. }, {
  9359. "style": {
  9360. "height": "36px"
  9361. }
  9362. }).form; //创建窗体
  9363. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9364. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9365. })
  9366. _taskbar = {
  9367. "id": str + _formdiv.id,
  9368. "style": {
  9369. "backgroundImage": "url(/img/icon/doc.png)"
  9370. },
  9371. "name": "协同文档",
  9372. "forms": _formdiv,
  9373. "click": function () {
  9374. U.MD.D.I.openApplication(str, obj, info);
  9375. }
  9376. }
  9377. break;
  9378. }
  9379. const script1 = document.createElement("script");
  9380. script1.type = "text/javascript";
  9381. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9382. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9383. const script2 = document.createElement("script");
  9384. script2.type = "text/javascript";
  9385. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9386. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9387. const script3 = document.createElement("script");
  9388. script3.type = "text/javascript";
  9389. script3.charset = "UTF-8";
  9390. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9391. const script4 = document.createElement("script");
  9392. script4.type = "text/javascript";
  9393. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9394. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9395. if (_iframe) {
  9396. if (str == 'doc') {
  9397. _iframe = _formdiv.querySelector('iframe')
  9398. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9399. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9400. _iframe.contentWindow.document.body.appendChild(script1);
  9401. _iframe.contentWindow.document.body.appendChild(script2);
  9402. // _iframe.contentWindow.document.body.appendChild(script3);
  9403. _iframe.contentWindow.document.body.appendChild(script4);
  9404. })
  9405. if (onloadListener) {
  9406. _iframe.contentDocument.location.reload()
  9407. } else {
  9408. _iframe.contentDocument.location.reload()
  9409. }
  9410. } else if (str == 'mind') {
  9411. _iframe = _formdiv.querySelector('iframe')
  9412. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9413. _iframe.contentWindow.document.body.appendChild(script1);
  9414. _iframe.contentWindow.document.body.appendChild(script2);
  9415. _iframe.contentWindow.document.body.appendChild(script4);
  9416. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9417. })
  9418. if (onloadListener) {
  9419. _iframe.contentDocument.location.reload()
  9420. } else {
  9421. _iframe.contentDocument.location.reload()
  9422. }
  9423. } else {
  9424. _iframe.onload = () => {
  9425. _iframe.contentWindow.document.body.appendChild(script1);
  9426. _iframe.contentWindow.document.body.appendChild(script2);
  9427. // _iframe.contentWindow.document.body.appendChild(script3);
  9428. _iframe.contentWindow.document.body.appendChild(script4);
  9429. };
  9430. }
  9431. _jie.onclick = async () => {
  9432. let text = ''
  9433. if (aTool == 6) {
  9434. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9435. } else if (aTool == 3) {
  9436. text = await U.MD.D.I.getEditorContent(_iframe);
  9437. }
  9438. _loading.style.display = 'flex'
  9439. console.log(_loading);
  9440. var _ajs = _iframe.contentWindow.document.createElement("script");
  9441. _ajs.type = "text/javascript";
  9442. _ajs.innerHTML =
  9443. // 'console.log(' + _loading + ');\n' +
  9444. 'var _js = document.createElement("script");\n' +
  9445. '_js.type="text/javascript";\n' +
  9446. '_js.charset="UTF-8";\n' +
  9447. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9448. "_js.onload = function(){\n" +
  9449. ' var a = document.getElementsByTagName("img")\n' +
  9450. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9451. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9452. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9453. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9454. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9455. "beforeUpload_shishi(file," +
  9456. "'" +
  9457. _userid +
  9458. "'" +
  9459. ", " +
  9460. "'" +
  9461. _cid +
  9462. "'" +
  9463. ", " +
  9464. "'" +
  9465. _stage +
  9466. "'" +
  9467. ", " +
  9468. "'" +
  9469. _task +
  9470. "'" +
  9471. ", " +
  9472. "'" +
  9473. _tool +
  9474. "'" +
  9475. ", " +
  9476. "'" +
  9477. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9478. "'" +
  9479. ", " +
  9480. "'" +
  9481. aTool +
  9482. "'" +
  9483. ", " +
  9484. "`" +
  9485. text +
  9486. "`" +
  9487. ")\n" +
  9488. " });\n" +
  9489. "}\n" +
  9490. "document.head.appendChild(_js);\n";
  9491. _iframe.contentWindow.document.head.appendChild(_ajs);
  9492. }
  9493. }
  9494. //U.MD.D.I.openClick(str);
  9495. //如果有任务栏信息
  9496. // if (_taskbar) {
  9497. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9498. // }
  9499. }
  9500. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9501. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9502. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9503. _userinfo = US.userInfo, //登录用户信息
  9504. _userid = US.userInfo.userid //登录用户id
  9505. let _iframe;
  9506. let _cid = cid,
  9507. _stage = stage,
  9508. _task = task,
  9509. _tool = tool;
  9510. var _jie = $$("div", {
  9511. "style": {
  9512. "position": "absolute",
  9513. "bottom": "50px",
  9514. "right": "50px",
  9515. "zIndex": "9999",
  9516. "backgroundColor": "#2268bc",
  9517. "color": "#fff",
  9518. "padding": "12px 20px",
  9519. "cursor": "pointer",
  9520. "borderRadius": "4px",
  9521. },
  9522. "innerHTML": "上传模板"
  9523. })
  9524. let aTool = ''
  9525. let _loading = document.createElement('div')
  9526. _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;"
  9527. // _loading.id = "";
  9528. let _lchild = document.createElement('div')
  9529. let _limg = document.createElement('img')
  9530. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9531. _limg.style = "width: 26px;margin-right: 10px;"
  9532. _lchild.appendChild(_limg)
  9533. let _lspan = document.createElement('span')
  9534. _lspan.innerHTML = "上传中..."
  9535. _lchild.appendChild(_lspan)
  9536. _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%);"
  9537. _loading.appendChild(_lchild)
  9538. var _box = $$('div', {
  9539. "style": {
  9540. "position": "relative",
  9541. "width": "100%",
  9542. "height": "100%",
  9543. },
  9544. })
  9545. _box.appendChild(_loading)
  9546. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9547. switch (str) {
  9548. case "whiteboard":
  9549. aTool = 1;
  9550. _iframe = $$("iframe", {
  9551. "frameborder": "no",
  9552. "border": "0",
  9553. "scrolling ": "no",
  9554. "style": {
  9555. "cssText": "border:0;width:100%;height:100%"
  9556. },
  9557. "src": "https://beta.iwb.cocorobo.cn/"
  9558. })
  9559. _box.appendChild(_iframe);
  9560. _box.appendChild(_jie);
  9561. _formdiv = new U.UF.UI.form(
  9562. "电子白板",
  9563. _box, {
  9564. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9565. "style": {
  9566. "width": "90%",
  9567. "height": "90%",
  9568. "overflow": 'hidden'
  9569. },
  9570. "onresize": function () { }
  9571. }, {
  9572. closecallback: function () { }
  9573. }, {
  9574. "style": {
  9575. "height": "36px"
  9576. }
  9577. }).form; //创建窗体
  9578. _taskbar = {
  9579. "id": str + _formdiv.id,
  9580. "style": {
  9581. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9582. },
  9583. "name": "电子白板",
  9584. "forms": _formdiv,
  9585. "click": function () {
  9586. U.MD.D.I.openApplication(str, obj, info);
  9587. }
  9588. }
  9589. break;
  9590. case "mind":
  9591. aTool = 3;
  9592. _iframe = $$("iframe", {
  9593. "frameborder": "no",
  9594. "border": "0",
  9595. "scrolling ": "no",
  9596. "style": {
  9597. "cssText": "border:0;width:100%;height:100%"
  9598. },
  9599. "src": "/kityminder-editor/dist/index.html"
  9600. });
  9601. _box.appendChild(_iframe);
  9602. _box.appendChild(_jie);
  9603. _formdiv = new U.UF.UI.form(
  9604. "思维导图",
  9605. _box, { //"/jsmind/example/demo.html"
  9606. "id": "minds_Yu" + cid + stage + task + tool,
  9607. "style": {
  9608. "width": "90%",
  9609. "height": "90%",
  9610. "overflow": 'hidden'
  9611. },
  9612. "onresize": function () { }
  9613. }, {
  9614. closecallback: function () { }
  9615. }, {
  9616. "style": {
  9617. "height": "36px"
  9618. }
  9619. }).form; //创建窗体
  9620. _taskbar = {
  9621. "id": str + _formdiv.id,
  9622. "style": {
  9623. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9624. },
  9625. "name": "思维导图",
  9626. "forms": _formdiv,
  9627. "click": function () {
  9628. U.MD.D.I.openApplication(str, obj, info);
  9629. }
  9630. }
  9631. break;
  9632. case "doc":
  9633. aTool = 6;
  9634. _iframe = $$("iframe", {
  9635. "frameborder": "no",
  9636. "border": "0",
  9637. "scrolling ": "no",
  9638. "style": {
  9639. "cssText": "border:0;width:100%;height:100%"
  9640. },
  9641. "src": "/Office/Word/WordEditArea.htm"
  9642. })
  9643. _box.appendChild(_iframe);
  9644. _box.appendChild(_jie);
  9645. _formdiv = new U.UF.UI.form(
  9646. "协同文档",
  9647. _box, {
  9648. "id": "docs_Yu" + cid + stage + task + tool,
  9649. "style": {
  9650. "width": "90%",
  9651. "height": "90%",
  9652. "overflow": 'hidden'
  9653. },
  9654. "onresize": function () { }
  9655. }, {
  9656. closecallback: function () { }
  9657. }, {
  9658. "style": {
  9659. "height": "36px"
  9660. }
  9661. }).form; //创建窗体
  9662. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9663. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9664. })
  9665. _taskbar = {
  9666. "id": str + _formdiv.id,
  9667. "style": {
  9668. "backgroundImage": "url(/img/icon/doc.png)"
  9669. },
  9670. "name": "协同文档",
  9671. "forms": _formdiv,
  9672. "click": function () {
  9673. U.MD.D.I.openApplication(str, obj, info);
  9674. }
  9675. }
  9676. break;
  9677. case "CocoPi":
  9678. aTool = 57;
  9679. _iframe = $$("iframe", {
  9680. "allowpaymentrequest": "allowpaymentrequest",
  9681. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9682. "webkitallowfullscreen": "",
  9683. "mozallowfullscreen": "",
  9684. "frameborder": "no",
  9685. "border": "0",
  9686. "scrolling ": "no",
  9687. "style": {
  9688. "cssText": "border:0;width:100%;height:100%"
  9689. },
  9690. "src": "https://pi.cocorobo.cn/"
  9691. })
  9692. _box.appendChild(_iframe);
  9693. _box.appendChild(_jie);
  9694. _formdiv = new U.UF.UI.form(
  9695. "CocoPi",
  9696. _box, {
  9697. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9698. "style": {
  9699. "width": "90%",
  9700. "height": "90%",
  9701. "overflow": 'hidden'
  9702. },
  9703. "onresize": function () { }
  9704. }, {
  9705. closecallback: function () { }
  9706. }, {
  9707. "style": {
  9708. "height": "36px"
  9709. }
  9710. }).form; //创建窗体
  9711. _taskbar = {
  9712. "id": str + _formdiv.id,
  9713. "style": {
  9714. "backgroundImage": "url(/img/icon/cocopi.png)"
  9715. },
  9716. "name": "CocoPi",
  9717. "forms": _formdiv,
  9718. "click": function () {
  9719. U.MD.D.I.openApplication(str, obj, info);
  9720. }
  9721. }
  9722. break;
  9723. }
  9724. if (_iframe) {
  9725. if (str == 'doc') {
  9726. _iframe = _formdiv.querySelector('iframe')
  9727. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9728. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9729. })
  9730. if (onloadListener) {
  9731. _iframe.contentDocument.location.reload()
  9732. } else {
  9733. _iframe.contentDocument.location.reload()
  9734. }
  9735. } else if (str == 'mind') {
  9736. _iframe = _formdiv.querySelector('iframe')
  9737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9738. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9739. })
  9740. if (onloadListener) {
  9741. _iframe.contentDocument.location.reload()
  9742. } else {
  9743. _iframe.contentDocument.location.reload()
  9744. }
  9745. } else if (str == 'whiteboard') {
  9746. _iframe = _formdiv.querySelector('iframe')
  9747. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9748. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9749. })
  9750. // if (onloadListener) {
  9751. // try {
  9752. // _iframe.src += "?cocorobo="+new Date().getTime()
  9753. // _iframe.contentWindow.document.location.reload()
  9754. // } catch (error) {
  9755. // }
  9756. // } else {
  9757. // _iframe.contentDocument.location.reload()
  9758. // }
  9759. } else if (str == 'CocoPi') {
  9760. _iframe = _formdiv.querySelector('iframe')
  9761. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9762. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9763. })
  9764. if (onloadListener) {
  9765. _iframe.contentDocument.location.reload()
  9766. } else {
  9767. _iframe.contentDocument.location.reload()
  9768. }
  9769. } else {
  9770. _iframe.onload = () => { };
  9771. }
  9772. _jie.onclick = async () => {
  9773. let text = ''
  9774. let type = '2'
  9775. if (aTool == 1) {
  9776. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9777. type = '3'
  9778. } else if (aTool == 6) {
  9779. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9780. type = '1'
  9781. } else if (aTool == 3) {
  9782. text = await U.MD.D.I.getEditorContent(_iframe);
  9783. type = '2'
  9784. } else if (aTool == 57) {
  9785. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9786. type = '4'
  9787. }
  9788. _loading.style.display = 'flex'
  9789. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9790. }
  9791. }
  9792. //U.MD.D.I.openClick(str);
  9793. //如果有任务栏信息
  9794. // if (_taskbar) {
  9795. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9796. // }
  9797. }
  9798. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9799. var xmlhttp;
  9800. var Mac, Sn, DeviceId
  9801. if (window.XMLHttpRequest) {
  9802. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9803. xmlhttp = new XMLHttpRequest();
  9804. } else {
  9805. // IE6, IE5 浏览器执行代码
  9806. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9807. }
  9808. xmlhttp.onreadystatechange = function () {
  9809. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9810. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9811. // resolve(res.value[0][0].text);
  9812. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9813. }
  9814. }
  9815. }
  9816. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9817. xmlhttp.send();
  9818. }
  9819. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9820. var xmlhttp;
  9821. var Mac, Sn, DeviceId
  9822. if (window.XMLHttpRequest) {
  9823. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9824. xmlhttp = new XMLHttpRequest();
  9825. } else {
  9826. // IE6, IE5 浏览器执行代码
  9827. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9828. }
  9829. xmlhttp.onreadystatechange = function () {
  9830. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9831. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9832. // resolve(res.value[0][0].text);
  9833. if (type == '2') {
  9834. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9835. } else if (type == '3') {
  9836. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9837. } else if (type == '4') {
  9838. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9839. }
  9840. } else {
  9841. if (type == '2') {
  9842. iframe.contentWindow.editor.minder.importData('json', '')
  9843. } else if (type == '3') {
  9844. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9845. } else if (type == '4') {
  9846. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9847. }
  9848. }
  9849. }
  9850. }
  9851. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9852. xmlhttp.send();
  9853. }
  9854. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9855. var xmlhttp;
  9856. var Mac, Sn, DeviceId
  9857. if (window.XMLHttpRequest) {
  9858. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9859. xmlhttp = new XMLHttpRequest();
  9860. } else {
  9861. // IE6, IE5 浏览器执行代码
  9862. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9863. }
  9864. xmlhttp.onreadystatechange = function () {
  9865. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9866. if (xmlhttp.response) {
  9867. // resolve(res.value[0][0].text);
  9868. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9869. // $(fileInput).val('');
  9870. // });
  9871. span.innerHTML = '上传成功'
  9872. setTimeout(() => {
  9873. loading.style.display = 'none'
  9874. }, 1000);
  9875. }
  9876. }
  9877. }
  9878. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9879. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9880. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9881. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9882. // 设置请求头,表示请求体的编码格式
  9883. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9884. // 设置请求体,使用url-encoded格式的数据
  9885. }
  9886. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9887. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9888. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9889. _userinfo = US.userInfo, //登录用户信息
  9890. _userid = US.userInfo.userid //登录用户id
  9891. let _iframe;
  9892. let _cid = cid,
  9893. _stage = stage,
  9894. _task = task,
  9895. _tool = tool;
  9896. var _jie = $$("div", {
  9897. "style": {
  9898. "position": "absolute",
  9899. "bottom": "50px",
  9900. "right": "50px",
  9901. "zIndex": "9999",
  9902. "backgroundColor": "#2268bc",
  9903. "color": "#fff",
  9904. "padding": "12px 20px",
  9905. "cursor": "pointer",
  9906. "borderRadius": "4px",
  9907. },
  9908. "innerHTML": "提交作业"
  9909. })
  9910. let aTool = ''
  9911. let _loading = document.createElement('div')
  9912. _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;"
  9913. // _loading.id = "";
  9914. let _lchild = document.createElement('div')
  9915. let _limg = document.createElement('img')
  9916. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9917. _limg.style = "width: 26px;margin-right: 10px;"
  9918. _lchild.appendChild(_limg)
  9919. let _lspan = document.createElement('span')
  9920. _lspan.innerHTML = "上传中..."
  9921. _lchild.appendChild(_lspan)
  9922. _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%);"
  9923. _loading.appendChild(_lchild)
  9924. var _box = $$('div', {
  9925. "style": {
  9926. "position": "relative",
  9927. "width": "100%",
  9928. "height": "100%",
  9929. },
  9930. })
  9931. _box.appendChild(_loading)
  9932. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9933. switch (str) {
  9934. case "CocoPi":
  9935. aTool = 57;
  9936. _iframe = $$("iframe", {
  9937. "allowpaymentrequest": "allowpaymentrequest",
  9938. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9939. "webkitallowfullscreen": "",
  9940. "mozallowfullscreen": "",
  9941. "frameborder": "no",
  9942. "border": "0",
  9943. "scrolling ": "no",
  9944. "style": {
  9945. "cssText": "border:0;width:100%;height:100%"
  9946. },
  9947. "src": "https://pi.cocorobo.cn/"
  9948. })
  9949. _box.appendChild(_iframe);
  9950. _box.appendChild(_jie);
  9951. _formdiv = new U.UF.UI.form(
  9952. "CocoPi",
  9953. _box, {
  9954. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9955. "style": {
  9956. "width": "90%",
  9957. "height": "90%",
  9958. "overflow": 'hidden'
  9959. },
  9960. "onresize": function () { }
  9961. }, {
  9962. closecallback: function () { }
  9963. }, {
  9964. "style": {
  9965. "height": "36px"
  9966. }
  9967. }).form; //创建窗体
  9968. _taskbar = {
  9969. "id": str + _formdiv.id,
  9970. "style": {
  9971. "backgroundImage": "url(/img/icon/cocopi.png)"
  9972. },
  9973. "name": "CocoPi",
  9974. "forms": _formdiv,
  9975. "click": function () {
  9976. U.MD.D.I.openApplication(str, obj, info);
  9977. }
  9978. }
  9979. break;
  9980. }
  9981. if (_iframe) {
  9982. if (str == 'CocoPi') {
  9983. _iframe = _formdiv.querySelector('iframe')
  9984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9985. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9986. })
  9987. if (onloadListener) {
  9988. _iframe.contentDocument.location.reload()
  9989. } else {
  9990. _iframe.contentDocument.location.reload()
  9991. }
  9992. }
  9993. _jie.onclick = async () => {
  9994. let text = ''
  9995. if (aTool == 57) {
  9996. text = _iframe.contentWindow.getLoadXmlStr()
  9997. }
  9998. _loading.style.display = 'flex'
  9999. console.log(_loading);
  10000. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10001. _loading.style.display = 'none'
  10002. let _div = document.createElement('div')
  10003. _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;"
  10004. let _inner = document.createElement('div')
  10005. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10006. _inner.innerHTML = "上传成功"
  10007. _div.appendChild(_inner)
  10008. _iframe.contentWindow.window.document.body.appendChild(_div)
  10009. _div.onclick = () => {
  10010. _iframe.contentWindow.window.document.body.removeChild(_div)
  10011. }
  10012. setTimeout(() => {
  10013. _iframe.contentWindow.window.document.body.removeChild(_div)
  10014. }, 1000);
  10015. }, [], { "type": "POST", "withCredentials": true });
  10016. }
  10017. }
  10018. }
  10019. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10020. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10021. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10022. _userid = student.userid, //登录用户id
  10023. _username = student.student //用户名字
  10024. let _iframe;
  10025. let _cid = cid,
  10026. _stage = stage,
  10027. _task = task,
  10028. _tool = tool;
  10029. var _jie = $$("div", {
  10030. "style": {
  10031. "position": "absolute",
  10032. "bottom": "50px",
  10033. "right": "50px",
  10034. "zIndex": "9999",
  10035. "backgroundColor": "#2268bc",
  10036. "color": "#fff",
  10037. "padding": "12px 20px",
  10038. "cursor": "pointer",
  10039. "borderRadius": "4px",
  10040. },
  10041. "innerHTML": "提交作业"
  10042. })
  10043. let aTool = ''
  10044. let _loading = document.createElement('div')
  10045. _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;"
  10046. // _loading.id = "";
  10047. let _lchild = document.createElement('div')
  10048. let _limg = document.createElement('img')
  10049. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10050. _limg.style = "width: 26px;margin-right: 10px;"
  10051. _lchild.appendChild(_limg)
  10052. let _lspan = document.createElement('span')
  10053. _lspan.innerHTML = "上传中..."
  10054. _lchild.appendChild(_lspan)
  10055. _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%);"
  10056. _loading.appendChild(_lchild)
  10057. var _box = $$('div', {
  10058. "style": {
  10059. "position": "relative",
  10060. "width": "100%",
  10061. "height": "100%",
  10062. },
  10063. })
  10064. _box.appendChild(_loading)
  10065. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10066. switch (str) {
  10067. case "CocoPi":
  10068. aTool = 57;
  10069. _iframe = $$("iframe", {
  10070. "allowpaymentrequest": "allowpaymentrequest",
  10071. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10072. "webkitallowfullscreen": "",
  10073. "mozallowfullscreen": "",
  10074. "frameborder": "no",
  10075. "border": "0",
  10076. "scrolling ": "no",
  10077. "style": {
  10078. "cssText": "border:0;width:100%;height:100%"
  10079. },
  10080. "src": "https://pi.cocorobo.cn/"
  10081. })
  10082. _box.appendChild(_iframe);
  10083. _box.appendChild(_jie);
  10084. _formdiv = new U.UF.UI.form(
  10085. "CocoPi-" + _username,
  10086. _box, {
  10087. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10088. "style": {
  10089. "width": "90%",
  10090. "height": "90%",
  10091. "overflow": 'hidden'
  10092. },
  10093. "onresize": function () { }
  10094. }, {
  10095. closecallback: function () { }
  10096. }, {
  10097. "style": {
  10098. "height": "36px"
  10099. }
  10100. }).form; //创建窗体
  10101. _taskbar = {
  10102. "id": str + _formdiv.id,
  10103. "style": {
  10104. "backgroundImage": "url(/img/icon/cocopi.png)"
  10105. },
  10106. "name": "CocoPi",
  10107. "forms": _formdiv,
  10108. "click": function () {
  10109. U.MD.D.I.openApplication(str, obj, info);
  10110. }
  10111. }
  10112. break;
  10113. }
  10114. if (_iframe) {
  10115. if (str == 'CocoPi') {
  10116. _iframe = _formdiv.querySelector('iframe')
  10117. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10118. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10119. })
  10120. if (onloadListener) {
  10121. _iframe.contentDocument.location.reload()
  10122. } else {
  10123. _iframe.contentDocument.location.reload()
  10124. }
  10125. }
  10126. _jie.onclick = async () => {
  10127. let text = ''
  10128. if (aTool == 57) {
  10129. text = _iframe.contentWindow.getLoadXmlStr()
  10130. }
  10131. _loading.style.display = 'flex'
  10132. console.log(_loading);
  10133. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10134. _loading.style.display = 'none'
  10135. let _div = document.createElement('div')
  10136. _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;"
  10137. let _inner = document.createElement('div')
  10138. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10139. _inner.innerHTML = "上传成功"
  10140. _div.appendChild(_inner)
  10141. _iframe.contentWindow.window.document.body.appendChild(_div)
  10142. _div.onclick = () => {
  10143. _iframe.contentWindow.window.document.body.removeChild(_div)
  10144. }
  10145. setTimeout(() => {
  10146. _iframe.contentWindow.window.document.body.removeChild(_div)
  10147. }, 1000);
  10148. }, [], { "type": "POST", "withCredentials": true });
  10149. }
  10150. }
  10151. }
  10152. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10153. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10154. if (res.value[0].length > 0) {
  10155. if (atool == 57) {
  10156. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10157. }
  10158. } else {
  10159. if (atool == 57) {
  10160. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10161. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10162. }
  10163. }
  10164. }, [], { "type": "POST", "withCredentials": true });
  10165. }