DeskTop.js 680 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. ];
  1561. //SPROUT Lab
  1562. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. ];
  1573. //010204
  1574. U.MD.D.I.x010204StudentDeskIcon = [
  1575. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailTeacherDeskIcon = [
  1582. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1583. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1585. ];
  1586. //trail
  1587. U.MD.D.I.trailStudentDeskIcon = [
  1588. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1589. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1590. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1592. ];
  1593. //010504
  1594. U.MD.D.I.x010504TeacherDeskIcon = [
  1595. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1596. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1604. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1605. ];
  1606. //010504
  1607. U.MD.D.I.x010504StudentDeskIcon = [
  1608. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1610. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. ];
  1613. //SCNUET
  1614. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1615. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1616. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1618. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1619. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1620. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1621. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1622. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1626. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1627. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1628. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1629. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1631. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1632. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1633. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1634. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1635. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1636. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1637. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1638. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1639. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1640. ];
  1641. //SCNUET
  1642. U.MD.D.I.SCNUETAdminDeskIcon = [
  1643. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1644. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1648. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1649. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1650. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1651. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1652. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1653. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1654. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1655. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1656. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1657. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1660. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1661. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1662. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1663. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1664. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1665. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1666. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1667. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1668. ];
  1669. //SCNUET
  1670. U.MD.D.I.SCNUETStudentDeskIcon = [
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. ];
  1676. //x020201
  1677. U.MD.D.I.x020201TeacherDeskIcon = [
  1678. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1679. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1694. ];
  1695. //x020201
  1696. U.MD.D.I.x020201AdminDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1702. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1711. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1712. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1713. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1714. ];
  1715. //020201
  1716. U.MD.D.I.x020201StudentDeskIcon = [
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611TeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1727. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1732. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1733. ];
  1734. //010611
  1735. U.MD.D.I.x010611StudentDeskIcon = [
  1736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1740. ];
  1741. //tianyuan
  1742. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1743. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1744. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1746. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1747. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1748. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1751. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1752. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1753. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1754. ];
  1755. //010611
  1756. U.MD.D.I.tianyuanStudentDeskIcon = [
  1757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1760. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1761. ];
  1762. //320101
  1763. U.MD.D.I.x320101TeacherDeskIcon = [
  1764. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1765. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1766. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1767. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1768. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1769. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1770. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1771. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1772. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1773. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1774. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1775. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1776. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1777. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1778. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1779. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1780. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1781. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1782. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1783. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1784. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1785. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1786. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1787. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1788. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1789. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1790. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1791. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1792. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1793. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1794. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1795. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1796. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1801. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1802. ];
  1803. //320101
  1804. U.MD.D.I.x320101StudentDeskIcon = [
  1805. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. ];
  1810. //szsy
  1811. U.MD.D.I.szsyTeacherDeskIcon = [
  1812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1818. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1819. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1820. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1821. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1822. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1823. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1824. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1825. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1826. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1827. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1828. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1829. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1830. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1831. ];
  1832. //szsy
  1833. U.MD.D.I.szsyStudentDeskIcon = [
  1834. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1835. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1839. ];
  1840. //#region 桌面初始化a
  1841. /**
  1842. * 初始化桌面的起始函数
  1843. *
  1844. */
  1845. U.MD.D.I.init = function () {
  1846. if ($("#U_MD_D_K")[0]) {
  1847. //初始化桌面图标
  1848. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1849. // var clickUrl = ':12588/requestIp.php';
  1850. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1851. // U.MD.D.I.Ip = data;
  1852. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1853. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1854. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1855. // })
  1856. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1857. // })
  1858. }
  1859. }
  1860. /**
  1861. * 模式切换
  1862. *
  1863. */
  1864. U.MD.D.I.ModeCheck = function (type) {
  1865. if (US.Config.type == type) {
  1866. return
  1867. }
  1868. US.Config.type = type
  1869. $('.U_PBL_Check .active')[0].className = ''
  1870. if (type == 1) {
  1871. $('.U_PBL_Check div')[0].className = 'active'
  1872. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1873. } else {
  1874. $('.U_PBL_Check div')[1].className = 'active'
  1875. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1876. }
  1877. //初始化桌面图标
  1878. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1879. if (type == 2) {
  1880. U.MD.D.I.openApplication("project")
  1881. }
  1882. }
  1883. /**
  1884. * 隐藏任务栏
  1885. *
  1886. * @param {element} 桌面元素
  1887. */
  1888. U.MD.D.I.hiddenTaskbar = function (el) {
  1889. //任务栏位置变小
  1890. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1891. //桌面的位置变大
  1892. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1893. }
  1894. /**
  1895. * 隐藏任务栏
  1896. *
  1897. * @param {element} 桌面元素
  1898. */
  1899. U.MD.D.I.hiddenTaskbarout = function (el) {
  1900. //任务栏位置变小
  1901. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1902. //任务栏位置变化
  1903. U.selectEl(el).css({ "bottom": "-60px" });
  1904. //桌面的位置变大
  1905. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1906. }
  1907. }
  1908. /**
  1909. * 初始化打印桌面图标
  1910. *
  1911. * @param {element} 桌面元素
  1912. */
  1913. U.MD.D.I.initDesktopIcons = function (el, type) {
  1914. var i, //用于循环
  1915. _content, //桌面图标元素
  1916. _iconcontent, //桌面图标元素
  1917. _frag = $$("frag"), //定义一个碎片元素
  1918. _type = US.userInfo.type,
  1919. _org = US.userInfo.org,
  1920. _oid = US.userInfo.organizeid,
  1921. _role = US.userInfo.role,
  1922. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1923. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1924. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1925. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1926. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1927. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1928. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1929. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1930. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1931. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1932. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1933. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1934. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1935. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1936. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1937. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1938. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1939. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1940. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1941. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1942. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1943. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1944. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1945. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1946. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1947. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1948. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1949. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1950. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1951. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1952. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1953. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1954. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1955. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1956. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1957. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1958. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1959. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1960. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1961. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1962. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1963. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1964. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1965. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1966. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1967. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1968. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1969. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1970. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1971. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1972. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1973. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1974. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1975. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1976. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1977. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1978. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1979. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1980. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1981. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1982. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1983. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1984. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1985. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1986. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1987. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1988. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1989. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1990. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1991. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1992. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1993. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1994. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1995. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1996. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1997. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1998. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1999. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2000. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2001. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2002. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2003. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2004. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2005. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2006. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2007. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2008. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2009. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2010. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2011. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2012. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2013. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2014. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2015. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2016. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2017. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2018. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2019. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2020. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2021. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2022. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2023. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2024. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2025. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2026. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2027. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2028. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2029. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2030. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2031. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2032. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2033. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2034. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2035. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2036. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2037. 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','2c5d4971-ed9e-11ef-b508-005056924926'];
  2038. 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','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636'];
  2039. //清楚桌面图标
  2040. el.innerHTML = "";
  2041. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2042. _teacherDesktopIconInfo.push(
  2043. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2044. { "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)" } },
  2045. )
  2046. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2047. }
  2048. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2049. _teacherDesktopIconInfo.push(
  2050. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2051. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2052. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2055. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2056. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2057. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2058. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2059. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2060. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2061. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2062. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2063. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2064. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2065. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2066. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2067. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2068. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2069. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2070. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2071. )
  2072. }
  2073. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2074. _teacherDesktopIconInfo.push(
  2075. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2076. )
  2077. }
  2078. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2079. // _teacherDesktopIconInfo.push(
  2080. // )
  2081. // }
  2082. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2083. _teacherDesktopIconInfo.push(
  2084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2086. )
  2087. }
  2088. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2089. _teacherDesktopIconInfo.push(
  2090. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2091. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2092. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2093. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2094. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2095. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2096. )
  2097. _studentDesktopIconInfo.push(
  2098. )
  2099. }
  2100. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2101. _teacherDesktopIconInfo.push(
  2102. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2103. )
  2104. _studentDesktopIconInfo.push(
  2105. )
  2106. }
  2107. //010606 组织
  2108. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2109. _teacherDesktopIconInfo.push(
  2110. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2111. )
  2112. _studentDesktopIconInfo.push(
  2113. )
  2114. }
  2115. //麒麟二中 和 民新小学
  2116. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2117. _teacherDesktopIconInfo.push(
  2118. )
  2119. }
  2120. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2121. _teacherDesktopIconInfo.push(
  2122. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2123. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2124. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2125. )
  2126. }
  2127. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2128. _hkTeacherDeskIconInfo.push(
  2129. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2130. )
  2131. }
  2132. //北师大附中(010601)
  2133. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2134. // _teacherDesktopIconInfo.push(
  2135. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2136. // )
  2137. // _studentDesktopIconInfo.push(
  2138. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2139. // )
  2140. // }
  2141. //樂善堂余近卿中學
  2142. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2143. _teacherDesktopIconInfo.push(
  2144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2145. )
  2146. }
  2147. // Education Artificial Intelligence
  2148. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2149. _teacherDesktopIconInfo.push(
  2150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2151. )
  2152. }
  2153. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2154. _teacherDesktopIconInfo.push(
  2155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2156. )
  2157. }
  2158. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2159. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2160. _teacherDesktopIconInfo.push(
  2161. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2162. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2163. )
  2164. }
  2165. //麒麟二中
  2166. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2167. _studentDesktopIconInfo.push(
  2168. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2169. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2170. )
  2171. }
  2172. //万科双语
  2173. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2174. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2175. if (el.Name == '项目管理') {
  2176. el.Name = 'PBL项目'
  2177. }
  2178. return el
  2179. })
  2180. _studentDesktopIconInfo3.push(
  2181. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2182. )
  2183. }
  2184. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2185. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2186. return el.Name != '魔盒识字' && el.Name != '24点'
  2187. })
  2188. }
  2189. 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) {
  2190. _studentDesktopIconInfo.push(
  2191. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2192. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2193. )
  2194. }
  2195. //循环创建桌面图标
  2196. if (type == 1) {
  2197. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2198. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_studentDesktopIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_studentDesktopIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2215. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_hkZJLSStudentDeskIconInfo[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2230. } //
  2231. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2232. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2233. _content = $$("div", {
  2234. className: "U_MD_D_KO",
  2235. "onmousedown": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_ytyStudentDeskIconInfo[i]]),
  2239. "onclick": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_ytyStudentDeskIconInfo[i]])
  2243. }, _frag); //
  2244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2247. } //
  2248. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2249. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_jccssylStudentDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_jccssylStudentDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2266. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_scnuaiStudentDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_scnuaiStudentDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2283. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2284. _content = $$("div", {
  2285. className: "U_MD_D_KO",
  2286. "onmousedown": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_caleStudentDeskIconInfo[i]]),
  2290. "onclick": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_caleStudentDeskIconInfo[i]])
  2294. }, _frag); //
  2295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2298. }
  2299. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2300. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2301. _content = $$("div", {
  2302. className: "U_MD_D_KO",
  2303. "onmousedown": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_thuioeStudentDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_thuioeStudentDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2317. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2318. _content = $$("div", {
  2319. className: "U_MD_D_KO",
  2320. "onmousedown": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_tpcStudentDeskIconInfo[i]]),
  2324. "onclick": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_tpcStudentDeskIconInfo[i]])
  2328. }, _frag); //
  2329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2332. } //
  2333. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2334. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_chjyjStudentDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_chjyjStudentDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2351. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_szjkyStudentDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_szjkyStudentDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2368. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_x020201StudentDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_x020201StudentDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2385. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_SCNUETStudentDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_SCNUETStudentDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2400. }
  2401. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2402. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2403. _content = $$("div", {
  2404. className: "U_MD_D_KO",
  2405. "onmousedown": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_dseiStudentDeskIconInfo[i]]),
  2409. "onclick": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_dseiStudentDeskIconInfo[i]])
  2413. }, _frag); //
  2414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2417. }
  2418. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2419. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2420. _content = $$("div", {
  2421. className: "U_MD_D_KO",
  2422. "onmousedown": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2426. "onclick": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2430. }, _frag); //
  2431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2434. }
  2435. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2436. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2437. _content = $$("div", {
  2438. className: "U_MD_D_KO",
  2439. "onmousedown": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_nsfxStudentDeskIconInfo[i]]),
  2443. "onclick": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_nsfxStudentDeskIconInfo[i]])
  2447. }, _frag); //
  2448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2451. }
  2452. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2453. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2454. _content = $$("div", {
  2455. className: "U_MD_D_KO",
  2456. "onmousedown": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_stiaStudentDeskIconInfo[i]]),
  2460. "onclick": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_stiaStudentDeskIconInfo[i]])
  2464. }, _frag); //
  2465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2468. }
  2469. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2470. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2471. _content = $$("div", {
  2472. className: "U_MD_D_KO",
  2473. "onmousedown": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_szdjgStudentDeskIconInfo[i]]),
  2477. "onclick": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_szdjgStudentDeskIconInfo[i]])
  2481. }, _frag); //
  2482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2485. }
  2486. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2487. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_x010607StudentDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_x010607StudentDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2504. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2505. _content = $$("div", {
  2506. className: "U_MD_D_KO",
  2507. "onmousedown": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_xhlyStudentDeskIconInfo[i]]),
  2511. "onclick": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_xhlyStudentDeskIconInfo[i]])
  2515. }, _frag); //
  2516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2519. }
  2520. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2521. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2538. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2539. _content = $$("div", {
  2540. className: "U_MD_D_KO",
  2541. "onmousedown": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010503StudentDeskIconInfo[i]]),
  2545. "onclick": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010503StudentDeskIconInfo[i]])
  2549. }, _frag); //
  2550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2553. }
  2554. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2555. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x010504StudentDeskIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_x010504StudentDeskIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2572. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_x010204StudentDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_x010204StudentDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2589. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2590. _content = $$("div", {
  2591. className: "U_MD_D_KO",
  2592. "onmousedown": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_x320101StudentDeskIconInfo[i]]),
  2596. "onclick": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_x320101StudentDeskIconInfo[i]])
  2600. }, _frag); //
  2601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2604. }
  2605. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2606. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_trailStudentDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_trailStudentDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2621. }
  2622. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2623. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2640. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_szsyStudentDeskIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_szsyStudentDeskIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2657. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_x010608StudentDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_x010608StudentDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2674. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_x010611StudentDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_x010611StudentDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2689. }
  2690. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2691. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_tianyuantudentDeskIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_tianyuantudentDeskIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2708. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_siesStudentDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_siesStudentDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2725. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_guzmsStudentDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_guzmsStudentDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2742. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2743. _content = $$("div", {
  2744. className: "U_MD_D_KO",
  2745. "onmousedown": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_hkStudentDeskIconInfo[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_hkStudentDeskIconInfo[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2757. }
  2758. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2759. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_hkaceStudentDeskIconInfo[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_hkaceStudentDeskIconInfo[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2774. }
  2775. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2776. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_BSDNSstudentDesktopIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2793. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2794. _content = $$("div", {
  2795. className: "U_MD_D_KO",
  2796. "onmousedown": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_cocobizStudentDeskIconInfo[i]]),
  2800. "onclick": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_cocobizStudentDeskIconInfo[i]])
  2804. }, _frag); //
  2805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2808. }
  2809. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2810. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2811. _content = $$("div", {
  2812. className: "U_MD_D_KO",
  2813. "onmousedown": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2817. "onclick": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_xxzjkyStudentDeskIconInfo[i]])
  2821. }, _frag); //
  2822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2825. }
  2826. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2827. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_studentDesktopIconInfo[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_studentDesktopIconInfo[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2842. }
  2843. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2844. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_tcStudentDeskIconInfo[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_tcStudentDeskIconInfo[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2859. }
  2860. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2861. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2862. _content = $$("div", {
  2863. className: "U_MD_D_KO",
  2864. "onmousedown": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_szscStudentDeskIconInfo[i]]),
  2868. "onclick": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_szscStudentDeskIconInfo[i]])
  2872. }, _frag); //
  2873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2876. }
  2877. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2878. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_studentDesktopIconInfo3[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_studentDesktopIconInfo3[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2893. }
  2894. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2895. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2896. _content = $$("div", {
  2897. className: "U_MD_D_KO",
  2898. "onmousedown": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_studentDesktopIconInfo2[i]]),
  2902. "onclick": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_studentDesktopIconInfo2[i]])
  2906. }, _frag); //
  2907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2910. }
  2911. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2912. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2913. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2914. continue
  2915. }
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_wanketeacherDesktopIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_wanketeacherDesktopIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2932. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_wankeAdminDesktopIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_wankeAdminDesktopIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2949. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2950. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2951. continue
  2952. }
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_scnuaiTeacherDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2969. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2970. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2971. continue
  2972. }
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_BSDNSteacherDesktopIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2989. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_scnuaiAdminDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_scnuaiAdminDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3004. }
  3005. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3006. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3007. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3008. continue
  3009. }
  3010. _content = $$("div", {
  3011. className: "U_MD_D_KO",
  3012. "onmousedown": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_jccssylTeacherDeskIconInfo[i]]),
  3016. "onclick": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_jccssylTeacherDeskIconInfo[i]])
  3020. }, _frag); //
  3021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3024. }
  3025. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3026. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3027. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3028. continue
  3029. }
  3030. _content = $$("div", {
  3031. className: "U_MD_D_KO",
  3032. "onmousedown": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_caleTeacherDeskIconInfo[i]]),
  3036. "onclick": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_caleTeacherDeskIconInfo[i]])
  3040. }, _frag); //
  3041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3044. }
  3045. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3046. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3047. _content = $$("div", {
  3048. className: "U_MD_D_KO",
  3049. "onmousedown": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_tpcOrganizerDeskIconInfo[i]]),
  3053. "onclick": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_tpcOrganizerDeskIconInfo[i]])
  3057. }, _frag); //
  3058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3061. }
  3062. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3063. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3064. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3065. continue
  3066. }
  3067. _content = $$("div", {
  3068. className: "U_MD_D_KO",
  3069. "onmousedown": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_tpcTeacherDeskIconInfo[i]]),
  3073. "onclick": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_tpcTeacherDeskIconInfo[i]])
  3077. }, _frag); //
  3078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3081. }
  3082. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3083. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3084. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3085. continue
  3086. }
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_teacherDesktopIconInfo2[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_teacherDesktopIconInfo2[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3101. }
  3102. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3103. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3104. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3105. continue
  3106. }
  3107. _content = $$("div", {
  3108. className: "U_MD_D_KO",
  3109. "onmousedown": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_thuioeTeacherDeskIconInfo[i]]),
  3113. "onclick": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_thuioeTeacherDeskIconInfo[i]])
  3117. }, _frag); //
  3118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3121. }
  3122. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3123. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3124. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3125. continue
  3126. }
  3127. _content = $$("div", {
  3128. className: "U_MD_D_KO",
  3129. "onmousedown": U.UF.C.closure(function (obj) {
  3130. //防止拖动图标即打开了桌面应用
  3131. U.MD.D.click(this, obj);
  3132. }, [_lotechTeacherDeskIconInfo[i]]),
  3133. "onclick": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_lotechTeacherDeskIconInfo[i]])
  3137. }, _frag); //
  3138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3141. }//
  3142. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3143. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3144. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3145. continue
  3146. }
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3163. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3164. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3165. continue
  3166. }
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesTeacherDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesTeacherDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3184. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3185. continue
  3186. }
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_guzmsTeacherDeskIconInfo[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_guzmsTeacherDeskIconInfo[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3203. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_longhuaTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_longhuaTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3223. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3224. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_ytyTeacherDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_ytyTeacherDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3243. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_yunhaiTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. } //_hkStudentDeskIconInfo
  3262. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3263. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3264. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3283. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_hkTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_hkTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3303. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_hkaceTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_hkaceTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. }
  3322. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3323. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_cocobizTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_cocobizTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3343. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. }
  3362. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3363. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_gdjgAdminDeskIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_gdjgAdminDeskIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3380. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3381. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3382. continue
  3383. }
  3384. _content = $$("div", {
  3385. className: "U_MD_D_KO",
  3386. "onmousedown": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_gdjgTeacherDeskIconInfo[i]]),
  3390. "onclick": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_gdjgTeacherDeskIconInfo[i]])
  3394. }, _frag); //
  3395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3398. }
  3399. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3400. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3401. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3402. continue
  3403. }
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_szherTeacherDeskIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_szherTeacherDeskIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3418. }
  3419. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3420. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3421. _content = $$("div", {
  3422. className: "U_MD_D_KO",
  3423. "onmousedown": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_heyuannAdminDeskIconInfo[i]]),
  3427. "onclick": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_heyuannAdminDeskIconInfo[i]])
  3431. }, _frag); //
  3432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3435. }
  3436. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3437. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3438. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3439. continue
  3440. }
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_heyuanTeacherDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_heyuanTeacherDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3455. } //
  3456. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3457. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3458. _content = $$("div", {
  3459. className: "U_MD_D_KO",
  3460. "onmousedown": U.UF.C.closure(function (obj) {
  3461. //防止拖动图标即打开了桌面应用
  3462. U.MD.D.click(this, obj);
  3463. }, [_dseiAdminDeskIconInfo[i]]),
  3464. "onclick": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_dseiAdminDeskIconInfo[i]])
  3468. }, _frag); //
  3469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3472. }
  3473. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3474. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3475. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3476. continue
  3477. }
  3478. _content = $$("div", {
  3479. className: "U_MD_D_KO",
  3480. "onmousedown": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_dseiTeacherDeskIconInfo[i]]),
  3484. "onclick": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_dseiTeacherDeskIconInfo[i]])
  3488. }, _frag); //
  3489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3492. } //
  3493. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3494. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3495. _content = $$("div", {
  3496. className: "U_MD_D_KO",
  3497. "onmousedown": U.UF.C.closure(function (obj) {
  3498. //防止拖动图标即打开了桌面应用
  3499. U.MD.D.click(this, obj);
  3500. }, [_chjyjAdminDeskIconInfo[i]]),
  3501. "onclick": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_chjyjAdminDeskIconInfo[i]])
  3505. }, _frag); //
  3506. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3507. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3508. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3509. }//
  3510. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3511. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3512. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3513. continue
  3514. }
  3515. _content = $$("div", {
  3516. className: "U_MD_D_KO",
  3517. "onmousedown": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_chjyjTeacherDeskIconInfo[i]]),
  3521. "onclick": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_chjyjTeacherDeskIconInfo[i]])
  3525. }, _frag); //
  3526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3529. }
  3530. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3531. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3532. _content = $$("div", {
  3533. className: "U_MD_D_KO",
  3534. "onmousedown": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_szjkyAdminDeskIconInfo[i]]),
  3538. "onclick": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_szjkyAdminDeskIconInfo[i]])
  3542. }, _frag); //
  3543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3546. }//
  3547. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3548. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3549. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3550. continue
  3551. }
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_szjkyTeacherDeskIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_szjkyTeacherDeskIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3566. }
  3567. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3568. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3569. _content = $$("div", {
  3570. className: "U_MD_D_KO",
  3571. "onmousedown": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_x020201AdminDeskIconInfo[i]]),
  3575. "onclick": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_x020201AdminDeskIconInfo[i]])
  3579. }, _frag); //
  3580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3583. }//
  3584. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3585. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3586. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3587. continue
  3588. }
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_x020201TeacherDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_x020201TeacherDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3605. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3606. _content = $$("div", {
  3607. className: "U_MD_D_KO",
  3608. "onmousedown": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_SCNUETAdminDeskIconInfo[i]]),
  3612. "onclick": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_SCNUETAdminDeskIconInfo[i]])
  3616. }, _frag); //
  3617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3620. }//
  3621. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3622. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3623. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3624. continue
  3625. }
  3626. _content = $$("div", {
  3627. className: "U_MD_D_KO",
  3628. "onmousedown": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3632. "onclick": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_SCNUETTeacherDeskIconInfo[i]])
  3636. }, _frag); //
  3637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3640. }
  3641. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3642. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_futianAdminDeskIconInfo[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_futianAdminDeskIconInfo[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3657. }
  3658. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3659. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3660. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3661. continue
  3662. }
  3663. _content = $$("div", {
  3664. className: "U_MD_D_KO",
  3665. "onmousedown": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_futianTeacherDeskIconInfo[i]]),
  3669. "onclick": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_futianTeacherDeskIconInfo[i]])
  3673. }, _frag); //
  3674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3677. }
  3678. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3679. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3680. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3681. continue
  3682. }
  3683. _content = $$("div", {
  3684. className: "U_MD_D_KO",
  3685. "onmousedown": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_MingdeTeacherDeskIcon[i]]),
  3689. "onclick": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_MingdeTeacherDeskIcon[i]])
  3693. }, _frag); //
  3694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3697. }
  3698. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3699. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3700. _content = $$("div", {
  3701. className: "U_MD_D_KO",
  3702. "onmousedown": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_lhsAdminDesktopIconInfo[i]]),
  3706. "onclick": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_lhsAdminDesktopIconInfo[i]])
  3710. }, _frag); //
  3711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3714. }
  3715. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3716. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3717. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3718. continue
  3719. }
  3720. _content = $$("div", {
  3721. className: "U_MD_D_KO",
  3722. "onmousedown": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_lhsteacherDesktopIconInfo[i]]),
  3726. "onclick": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_lhsteacherDesktopIconInfo[i]])
  3730. }, _frag); //
  3731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3734. }
  3735. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3736. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3737. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3738. continue
  3739. }
  3740. _content = $$("div", {
  3741. className: "U_MD_D_KO",
  3742. "onmousedown": U.UF.C.closure(function (obj) {
  3743. //防止拖动图标即打开了桌面应用
  3744. U.MD.D.click(this, obj);
  3745. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3746. "onclick": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_zhoujiateacherDesktopIconInfo[i]])
  3750. }, _frag); //
  3751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3754. }
  3755. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3756. for (i = 0; i < _hanDeskIcon.length; i++) {
  3757. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3758. continue
  3759. }
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_hanDeskIcon[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖动图标即打开了桌面应用
  3768. U.MD.D.click(this, obj);
  3769. }, [_hanDeskIcon[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3774. }
  3775. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3776. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3777. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_orgStemDeskIcon[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖动图标即打开了桌面应用
  3788. U.MD.D.click(this, obj);
  3789. }, [_orgStemDeskIcon[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3796. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3797. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3798. continue
  3799. }
  3800. _content = $$("div", {
  3801. className: "U_MD_D_KO",
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_szulsDeskIcon[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_szulsDeskIcon[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3814. }
  3815. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3816. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3817. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3818. continue
  3819. }
  3820. _content = $$("div", {
  3821. className: "U_MD_D_KO",
  3822. "onmousedown": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_orgDesktopIconInfo[i]]),
  3826. "onclick": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_orgDesktopIconInfo[i]])
  3830. }, _frag); //
  3831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3834. }
  3835. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3836. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3837. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3838. continue
  3839. }
  3840. _content = $$("div", {
  3841. className: "U_MD_D_KO",
  3842. "onmousedown": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_schoolDesktopIconInfo[i]]),
  3846. "onclick": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_schoolDesktopIconInfo[i]])
  3850. }, _frag); //
  3851. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3852. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3853. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3854. }
  3855. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3856. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3857. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3858. continue
  3859. }
  3860. _content = $$("div", {
  3861. className: "U_MD_D_KO",
  3862. "onmousedown": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_GMteacherDesktopIconInfo[i]]),
  3866. "onclick": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_GMteacherDesktopIconInfo[i]])
  3870. }, _frag); //
  3871. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3872. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3873. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3874. }
  3875. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3876. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3877. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3878. continue
  3879. }
  3880. _content = $$("div", {
  3881. className: "U_MD_D_KO",
  3882. "onmousedown": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_SONGteacherDesktopIconInfo[i]]),
  3886. "onclick": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_SONGteacherDesktopIconInfo[i]])
  3890. }, _frag); //
  3891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3894. }
  3895. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3896. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3897. _content = $$("div", {
  3898. className: "U_MD_D_KO",
  3899. "onmousedown": U.UF.C.closure(function (obj) {
  3900. //防止拖动图标即打开了桌面应用
  3901. U.MD.D.click(this, obj);
  3902. }, [_GMstudentDesktopIconInfo[i]]),
  3903. "onclick": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_GMstudentDesktopIconInfo[i]])
  3907. }, _frag); //
  3908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3911. }
  3912. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3913. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3914. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3915. continue
  3916. }
  3917. _content = $$("div", {
  3918. className: "U_MD_D_KO",
  3919. "onmousedown": U.UF.C.closure(function (obj) {
  3920. //防止拖动图标即打开了桌面应用
  3921. U.MD.D.click(this, obj);
  3922. }, [_tcTeacherDeskIconInfo[i]]),
  3923. "onclick": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_tcTeacherDeskIconInfo[i]])
  3927. }, _frag); //
  3928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3931. }
  3932. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3933. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3934. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3935. continue
  3936. }
  3937. _content = $$("div", {
  3938. className: "U_MD_D_KO",
  3939. "onmousedown": U.UF.C.closure(function (obj) {
  3940. //防止拖动图标即打开了桌面应用
  3941. U.MD.D.click(this, obj);
  3942. }, [_tcOrganizerDeskIconInfo[i]]),
  3943. "onclick": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_tcOrganizerDeskIconInfo[i]])
  3947. }, _frag); //
  3948. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3949. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3950. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3951. }
  3952. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3953. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3954. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3955. continue
  3956. }
  3957. _content = $$("div", {
  3958. className: "U_MD_D_KO",
  3959. "onmousedown": U.UF.C.closure(function (obj) {
  3960. //防止拖动图标即打开了桌面应用
  3961. U.MD.D.click(this, obj);
  3962. }, [_szscTeacherDeskIconInfo[i]]),
  3963. "onclick": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_szscTeacherDeskIconInfo[i]])
  3967. }, _frag); //
  3968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3971. }
  3972. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3973. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3974. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3975. continue
  3976. }
  3977. _content = $$("div", {
  3978. className: "U_MD_D_KO",
  3979. "onmousedown": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_szscOrganizerDeskIconInfo[i]]),
  3983. "onclick": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_szscOrganizerDeskIconInfo[i]])
  3987. }, _frag); //
  3988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3991. }
  3992. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3993. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3994. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3995. continue
  3996. }
  3997. _content = $$("div", {
  3998. className: "U_MD_D_KO",
  3999. "onmousedown": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_nsfxTeacherDeskIconInfo[i]]),
  4003. "onclick": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_nsfxTeacherDeskIconInfo[i]])
  4007. }, _frag); //
  4008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4011. }
  4012. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4013. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4014. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4015. continue
  4016. }
  4017. _content = $$("div", {
  4018. className: "U_MD_D_KO",
  4019. "onmousedown": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_stiaTeacherDeskIconInfo[i]]),
  4023. "onclick": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_stiaTeacherDeskIconInfo[i]])
  4027. }, _frag); //
  4028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4031. }
  4032. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4033. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4034. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4035. continue
  4036. }
  4037. _content = $$("div", {
  4038. className: "U_MD_D_KO",
  4039. "onmousedown": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_szdjgTeacherDeskIconInfo[i]]),
  4043. "onclick": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_szdjgTeacherDeskIconInfo[i]])
  4047. }, _frag); //
  4048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4051. }
  4052. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4053. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4054. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4055. continue
  4056. }
  4057. _content = $$("div", {
  4058. className: "U_MD_D_KO",
  4059. "onmousedown": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_x010607TeacherDeskIconInfo[i]]),
  4063. "onclick": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_x010607TeacherDeskIconInfo[i]])
  4067. }, _frag); //
  4068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4071. }
  4072. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4073. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4074. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4075. continue
  4076. }
  4077. _content = $$("div", {
  4078. className: "U_MD_D_KO",
  4079. "onmousedown": U.UF.C.closure(function (obj) {
  4080. //防止拖动图标即打开了桌面应用
  4081. U.MD.D.click(this, obj);
  4082. }, [_xhlyTeacherDeskIconInfo[i]]),
  4083. "onclick": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_xhlyTeacherDeskIconInfo[i]])
  4087. }, _frag); //
  4088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4091. }
  4092. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4093. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4094. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4095. continue
  4096. }
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4113. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_x010503TeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x010503TeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4133. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4134. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_x010504TeacherDeskIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x010504TeacherDeskIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4153. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4154. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4155. continue
  4156. }
  4157. _content = $$("div", {
  4158. className: "U_MD_D_KO",
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_x010204TeacherDeskIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_x010204TeacherDeskIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4171. }
  4172. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4173. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4174. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4175. continue
  4176. }
  4177. _content = $$("div", {
  4178. className: "U_MD_D_KO",
  4179. "onmousedown": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_x320101TeacherDeskIconInfo[i]]),
  4183. "onclick": U.UF.C.closure(function (obj) {
  4184. //防止拖动图标即打开了桌面应用
  4185. U.MD.D.click(this, obj);
  4186. }, [_x320101TeacherDeskIconInfo[i]])
  4187. }, _frag); //
  4188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4191. }
  4192. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4193. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4194. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4195. continue
  4196. }
  4197. _content = $$("div", {
  4198. className: "U_MD_D_KO",
  4199. "onmousedown": U.UF.C.closure(function (obj) {
  4200. //防止拖动图标即打开了桌面应用
  4201. U.MD.D.click(this, obj);
  4202. }, [_trailTeacherDeskIconInfo[i]]),
  4203. "onclick": U.UF.C.closure(function (obj) {
  4204. //防止拖动图标即打开了桌面应用
  4205. U.MD.D.click(this, obj);
  4206. }, [_trailTeacherDeskIconInfo[i]])
  4207. }, _frag); //
  4208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4211. }
  4212. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4213. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4214. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4215. continue
  4216. }
  4217. _content = $$("div", {
  4218. className: "U_MD_D_KO",
  4219. "onmousedown": U.UF.C.closure(function (obj) {
  4220. //防止拖动图标即打开了桌面应用
  4221. U.MD.D.click(this, obj);
  4222. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4223. "onclick": U.UF.C.closure(function (obj) {
  4224. //防止拖动图标即打开了桌面应用
  4225. U.MD.D.click(this, obj);
  4226. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4227. }, _frag); //
  4228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4231. }
  4232. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4233. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4234. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4235. continue
  4236. }
  4237. _content = $$("div", {
  4238. className: "U_MD_D_KO",
  4239. "onmousedown": U.UF.C.closure(function (obj) {
  4240. //防止拖动图标即打开了桌面应用
  4241. U.MD.D.click(this, obj);
  4242. }, [_szsyTeacherDeskIconInfo[i]]),
  4243. "onclick": U.UF.C.closure(function (obj) {
  4244. //防止拖动图标即打开了桌面应用
  4245. U.MD.D.click(this, obj);
  4246. }, [_szsyTeacherDeskIconInfo[i]])
  4247. }, _frag); //
  4248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4251. }
  4252. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4253. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4254. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4255. continue
  4256. }
  4257. _content = $$("div", {
  4258. className: "U_MD_D_KO",
  4259. "onmousedown": U.UF.C.closure(function (obj) {
  4260. //防止拖动图标即打开了桌面应用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010608TeacherDeskIconInfo[i]]),
  4263. "onclick": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_x010608TeacherDeskIconInfo[i]])
  4267. }, _frag); //
  4268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4271. }
  4272. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4273. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4274. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4275. continue
  4276. }
  4277. _content = $$("div", {
  4278. className: "U_MD_D_KO",
  4279. "onmousedown": U.UF.C.closure(function (obj) {
  4280. //防止拖动图标即打开了桌面应用
  4281. U.MD.D.click(this, obj);
  4282. }, [_x010611TeacherDeskIconInfo[i]]),
  4283. "onclick": U.UF.C.closure(function (obj) {
  4284. //防止拖动图标即打开了桌面应用
  4285. U.MD.D.click(this, obj);
  4286. }, [_x010611TeacherDeskIconInfo[i]])
  4287. }, _frag); //
  4288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4291. }
  4292. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4293. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4294. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4295. continue
  4296. }
  4297. _content = $$("div", {
  4298. className: "U_MD_D_KO",
  4299. "onmousedown": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4303. "onclick": U.UF.C.closure(function (obj) {
  4304. //防止拖动图标即打开了桌面应用
  4305. U.MD.D.click(this, obj);
  4306. }, [_tianyuanTeacherDeskIconInfo[i]])
  4307. }, _frag); //
  4308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4311. }
  4312. } else {
  4313. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4314. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4315. continue
  4316. }
  4317. _content = $$("div", {
  4318. className: "U_MD_D_KO",
  4319. "onmousedown": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_teacherDesktopIconInfo[i]]),
  4323. "onclick": U.UF.C.closure(function (obj) {
  4324. //防止拖动图标即打开了桌面应用
  4325. U.MD.D.click(this, obj);
  4326. }, [_teacherDesktopIconInfo[i]])
  4327. }, _frag); //
  4328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4331. }
  4332. }
  4333. } else {
  4334. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4335. _content = $$("div", {
  4336. className: "U_MD_D_KO",
  4337. style: { 'width': '124px', 'height': '145px' },
  4338. "onmousedown": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_easyDesktopIconInfo[i]]),
  4342. "onclick": U.UF.C.closure(function (obj) {
  4343. //防止拖动图标即打开了桌面应用
  4344. U.MD.D.click(this, obj);
  4345. }, [_easyDesktopIconInfo[i]])
  4346. }, _frag); //
  4347. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4350. }
  4351. }
  4352. if (type == 1) {
  4353. //加载好后给图标定位
  4354. U.MD.D.iconPostion($(_frag).Child());
  4355. } else {
  4356. //加载好后给图标定位
  4357. U.MD.D.iconPostion2($(_frag).Child());
  4358. }
  4359. //把图标加载到页面
  4360. el.appendChild(_frag);
  4361. }
  4362. /**
  4363. * 显示任务栏
  4364. *
  4365. * @param {element} 桌面元素
  4366. */
  4367. U.MD.D.I.displayTaskbar = function (el) {
  4368. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4369. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4370. //任务栏位置变化
  4371. U.selectEl(el).css({ "bottom": "0px" });
  4372. //桌面位置变话
  4373. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4374. }
  4375. }
  4376. //#region 桌面图标拖动逻辑
  4377. /**
  4378. * 桌面排列图标
  4379. *
  4380. * @param {element} 桌面元素
  4381. * @param {object} 上下相距的距离
  4382. * @param {object} 左右相距的距离
  4383. * @return {object} 命名空间
  4384. */
  4385. U.MD.D.iconPostion = function (childs, top, left) {
  4386. var i; //用于循环处理
  4387. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4388. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4389. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4390. for (i = 0; i < childs.length; i++) {
  4391. //如果竖排top超过了范围处理
  4392. if (top + 95 > US.height - 10) {
  4393. //left超过了页面范围处理,则向上重叠打印处理
  4394. if ((left + 180) > US.width) {
  4395. top -= 110;
  4396. left -= 90;
  4397. }
  4398. //没有超过范围,那么left+90添加到下一个竖排打印
  4399. else {
  4400. left += 90;
  4401. top = 15;
  4402. };
  4403. }
  4404. //给图标的位置赋值
  4405. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4406. if (i < childs.length - 1) {
  4407. //页面图标每次向下加95
  4408. top += 95;
  4409. }
  4410. }
  4411. //返回最后调用的图标的位置
  4412. return [top, left];
  4413. }
  4414. /**
  4415. * 桌面排列图标
  4416. *
  4417. * @param {element} 桌面元素
  4418. * @param {object} 上下相距的距离
  4419. * @param {object} 左右相距的距离
  4420. * @return {object} 命名空间
  4421. */
  4422. U.MD.D.iconPostion2 = function (childs, top, left) {
  4423. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4424. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4425. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4426. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4427. for (i = 0; i < childs.length; i++) {
  4428. //如果竖排top超过了范围处理
  4429. if (left + 150 > US.width - 10) {
  4430. //left超过了页面范围处理,则向上重叠打印处理
  4431. if ((top + 180) > US.Height) {
  4432. top -= 150;
  4433. left -= 150;
  4434. }
  4435. //没有超过范围,那么left+90添加到下一个竖排打印
  4436. else {
  4437. top += 150;
  4438. left = ol;
  4439. };
  4440. }
  4441. //给图标的位置赋值
  4442. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4443. if (i < childs.length - 1) {
  4444. //页面图标每次向下加95
  4445. left += 150;
  4446. }
  4447. }
  4448. //返回最后调用的图标的位置
  4449. return [top, left];
  4450. }
  4451. /**
  4452. * 桌面点击事件逻辑
  4453. *
  4454. * @param {element} 桌面元素
  4455. * @param {object} 上下相距的距离
  4456. * @param {object} 左右相距的距离
  4457. * @return {object} 命名空间
  4458. */
  4459. U.MD.D.click = function (el, obj) {
  4460. var _buttonnumber = event.button; //点击的按钮的事件值
  4461. var _userinfo = US.userInfo;
  4462. U.UF.EV.stopBubble(); //阻止向上冒泡
  4463. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4464. if (_buttonnumber < 2) {
  4465. //如果是click事件的处理
  4466. if (event.type == "click") {
  4467. //如果元素在mousemove事件中没有移动则出发click事件
  4468. if (!U.MD.D.I.IsDrag) {
  4469. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4470. U.alert("请先登录您的账号!");
  4471. setTimeout(() => {
  4472. U.MD.U.L.login();
  4473. }, 2000);
  4474. } else {
  4475. //打开应用处理
  4476. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4477. }
  4478. }
  4479. }
  4480. //如果是mouse事件的处理
  4481. else {
  4482. if (US.Config.type == '1') {
  4483. //拖动处理,添加拖动和拖动结束事件
  4484. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4485. }
  4486. }
  4487. U.MD.D.I.IsDrag = false;
  4488. }
  4489. }
  4490. /**
  4491. * 拖动的处理
  4492. *
  4493. */
  4494. U.MD.D.iconMove = function () {
  4495. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4496. U.MD.D.I.IsDrag = true;
  4497. }
  4498. /**
  4499. * 拖动结束后,这里是定位处理,以网状的形式定位
  4500. *
  4501. * @param {element} 拖动的元素
  4502. * @return {object} 命名空间
  4503. */
  4504. U.MD.D.iconUp = function (el) {
  4505. var _top = 15,
  4506. _left = 20,
  4507. _margin,
  4508. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4509. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4510. if (_positioninfo["OT"] > 15) {
  4511. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4512. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4513. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4514. }
  4515. if (_positioninfo["OL"] > 20) {
  4516. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4517. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4518. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4519. }
  4520. //while循环判断么一个重叠的元素
  4521. do {
  4522. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4523. _top = _positioninfo[0] + 95; //得到定位后的top
  4524. _left = _positioninfo[1]; //得到定位后的left
  4525. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4526. }
  4527. /**
  4528. * 判断拖动后图标是否重叠
  4529. *
  4530. * @param {element} 拖动的元素
  4531. * @param {element} 桌面所有的元素
  4532. * @param {array} 拖动元素的位置
  4533. ----------[0] 上 top
  4534. ----------[1] 左 left
  4535. * @return {object} 命名空间
  4536. */
  4537. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4538. //循环所有的图标
  4539. for (var i = 0; i < childs.length; i++) {
  4540. //判断有没有和该图标诶子重叠的元素
  4541. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4542. return childs[i]; //如果有返回
  4543. }
  4544. }
  4545. }
  4546. //#endregion
  4547. //#endregion
  4548. //#region 桌面应用
  4549. /**
  4550. * 打开应用
  4551. *
  4552. * @param {string} 类型
  4553. -----------------Disk 网盘系统
  4554. -----------------PDisk 学习系统网盘
  4555. -----------------Poto 图片
  4556. -----------------Video 视频
  4557. -----------------Music 音乐
  4558. -----------------Word word
  4559. -----------------Excel excel
  4560. -----------------Txt 记事本
  4561. -----------------PB 学习系统
  4562. -----------------Blog 朋友圈系统
  4563. -----------------FTP ftp系统
  4564. -----------------Group 好友群
  4565. -----------------SY 首页系统
  4566. -----------------Set 个人设置
  4567. -----------------XSet 系统设置
  4568. -----------------App 我们所有的app
  4569. -----------------BC c.1473.cn 平台
  4570. -----------------CWeb d.1473.cn 变成平台
  4571. -----------------其他的外联系统 我们统一用iframe打开
  4572. * @param {array} 类型
  4573. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4574. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4575. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4576. 如果第一个参数为其他,则无第二个参数
  4577. * @returns {array}
  4578. */
  4579. window.addEventListener('message', function (e) { // 监听 message 事件
  4580. // alert(e.data.type);
  4581. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4582. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4583. //3是展示全部阶段 2学生 1老师 4专家
  4584. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4585. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4586. //3是展示全部阶段 2学生 1老师 4专家
  4587. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4588. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4589. //3是展示全部阶段 2学生 1老师 4专家
  4590. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4591. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4592. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4593. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4594. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4595. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4596. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4597. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4598. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4599. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4600. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4601. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4602. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4603. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4604. //3是展示全部阶段 2学生 1老师 4专家
  4605. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4606. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4607. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4608. U.MD.D.I.selectUser();
  4609. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4610. var _formel = document.getElementById("study");
  4611. U.UF.F.windowZooming(_formel);
  4612. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4613. var _formel = document.getElementById("studyDetail");
  4614. U.UF.F.windowZooming(_formel);
  4615. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4616. var _formel = document.getElementById("studyDetail");
  4617. U.UF.F.windowZooming(_formel);
  4618. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4619. var _formel = document.getElementById("studentStudy");
  4620. U.UF.F.windowZooming(_formel);
  4621. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4622. // var _formel = document.getElementById("study");
  4623. //如果最大化了,那么就把他缩小
  4624. // if (_formel.ismaximize) {
  4625. // return;
  4626. // }
  4627. // U.UF.F.windowZooming(_formel);
  4628. // U.UF.F.topWindow(_formel);
  4629. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4630. // var _formel = document.getElementById("studyDetail");
  4631. //如果最大化了,那么就把他缩小
  4632. // if (_formel.ismaximize) {
  4633. // return;
  4634. // }
  4635. // U.UF.F.windowZooming(_formel);
  4636. // U.UF.F.topWindow(_formel);
  4637. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4638. // var _formel = document.getElementById("studentStudy");
  4639. // if (_formel.ismaximize) {
  4640. // return;
  4641. // }
  4642. // U.UF.F.windowZooming(_formel);
  4643. // U.UF.F.topWindow(_formel);
  4644. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4645. var _formel = document.getElementById("study");
  4646. // if (_formel.ismaximize) {
  4647. // return;
  4648. // }
  4649. // U.UF.F.windowZooming(_formel);
  4650. U.UF.F.topWindow(_formel);
  4651. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4652. var _formel = document.getElementById("studentIndex");
  4653. U.UF.F.windowZooming(_formel);
  4654. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4655. var _formel = document.getElementById("studyDetailS");
  4656. U.UF.F.windowZooming(_formel);
  4657. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4658. var _formel = document.getElementById("studioIndex");
  4659. U.UF.F.windowZooming(_formel);
  4660. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4661. var _formel = document.getElementById("studyDetailStudio");
  4662. U.UF.F.windowZooming(_formel);
  4663. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4664. var _formel = document.getElementById("studyDetailStudio");
  4665. U.UF.F.windowZooming(_formel);
  4666. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4667. var _formel = document.getElementById("studyDetailNT");
  4668. U.UF.F.windowZooming(_formel);
  4669. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4670. var _formel = document.getElementById("studyDetailS");
  4671. U.UF.F.windowZooming(_formel);
  4672. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4673. var _formel = document.getElementById("studyDetailS");
  4674. U.UF.F.topWindow(_formel);
  4675. } else if (e.data.tools && e.data.tools == "1") {
  4676. // U.MD.D.I.openApplication("whiteboard")
  4677. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4678. } else if (e.data.tools && e.data.tools == "2") {
  4679. U.MD.D.I.openApplication("note")
  4680. } else if (e.data.tools && e.data.tools == "3") {
  4681. // U.MD.D.I.openApplication("mind")
  4682. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "4") {
  4684. U.MD.D.I.openApplication("investigation")
  4685. } else if (e.data.tools && e.data.tools == "6") {
  4686. // U.MD.D.I.openApplication("doc")
  4687. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4688. } else if (e.data.tools && e.data.tools == "7") {
  4689. // U.MD.D.I.openApplication("mindNetwork")
  4690. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4691. } else if (e.data.tools && e.data.tools == "8") {
  4692. U.MD.D.I.openApplication("library")
  4693. } else if (e.data.tools && e.data.tools == "17") {
  4694. U.MD.D.I.openApplication("stuLibrary")
  4695. } else if (e.data.tools && e.data.tools == "18") {
  4696. U.MD.D.I.openApplication("train")
  4697. } else if (e.data.tools && e.data.tools == "21") {
  4698. U.MD.D.I.openApplication("program")
  4699. } else if (e.data.tools && e.data.tools == "22") {
  4700. U.MD.D.I.openApplication("AIprogram2")
  4701. } else if (e.data.tools && e.data.tools == "23") {
  4702. U.MD.D.I.openApplication("Pythonprogram")
  4703. } else if (e.data.tools && e.data.tools == "24") {
  4704. U.MD.D.I.openApplication("AIprogram")
  4705. } else if (e.data.tools && e.data.tools == "25") {
  4706. U.MD.D.I.openApplication("sys")
  4707. } else if (e.data.tools && e.data.tools == "26") {
  4708. // U.MD.D.I.openApplication("courseDesign")
  4709. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4710. } else if (e.data.tools && e.data.tools == "31") {
  4711. U.MD.D.I.openApplication("netWorkPanel")
  4712. } else if (e.data.tools && e.data.tools == "32") {
  4713. U.MD.D.I.openApplication("codeEdit")
  4714. } else if (e.data.tools && e.data.tools == "57") {
  4715. U.MD.D.I.openApplication("CocoPi")
  4716. } else if (e.data.tools && e.data.tools == "63") {
  4717. U.MD.D.I.openApplication("Wood")
  4718. } else if (e.data.tools && e.data.tools == "58") {
  4719. U.MD.D.I.openApplication("car")
  4720. } else if (e.data.tools && e.data.tools == "59") {
  4721. U.MD.D.I.openApplication("lineSearch")
  4722. } else if (e.data.tools && e.data.tools == "60") {
  4723. U.MD.D.I.openApplication("deepLearning")
  4724. } else if (e.data.tools && e.data.tools == "61") {
  4725. U.MD.D.I.openApplication("allHistory")
  4726. } else if (e.data.tools && e.data.tools == "28") {
  4727. U.MD.D.I.openApplication("translation")
  4728. } else if (e.data.tools && e.data.tools == "37") {
  4729. U.MD.D.I.openApplication("mohe")
  4730. } else if (e.data.tools && e.data.tools == "38") {
  4731. U.MD.D.I.openApplication("24game")
  4732. } else if (e.data.tools && e.data.tools == "39") {
  4733. U.MD.D.I.openApplication("GeoGebra")
  4734. } else if (e.data.tools && e.data.tools == "43") {
  4735. U.MD.D.I.openApplication("studentEvaluate")
  4736. } else if (e.data.tools && e.data.tools == "44") {
  4737. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4738. } else if (e.data.tools && e.data.tools == "46") {
  4739. U.MD.D.I.openApplication("project")
  4740. } else if (e.data.tools && e.data.tools == "71") {
  4741. U.MD.D.I.openApplication("aigptCourse")
  4742. } else if (e.data.tools && e.data.tools == "1s") {
  4743. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4744. } else if (e.data.tools && e.data.tools == "3s") {
  4745. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4746. } else if (e.data.tools && e.data.tools == "6s") {
  4747. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4748. } else if (e.data.tools && e.data.tools == "1studio") {
  4749. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4750. } else if (e.data.tools && e.data.tools == "3studio") {
  4751. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4752. } else if (e.data.tools && e.data.tools == "6studio") {
  4753. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4754. } else if (e.data.tools && e.data.tools == "3y") {
  4755. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4756. } else if (e.data.tools && e.data.tools == "1y") {
  4757. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4758. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4759. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4760. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4761. U.MD.D.I.openApplication("AIAnalyse")
  4762. } else if (e.data.tools && e.data.tools == "1teacher") {
  4763. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4764. } else if (e.data.tools && e.data.tools == "3teacher") {
  4765. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4766. } else if (e.data.tools && e.data.tools == "7teacher") {
  4767. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4768. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4769. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4770. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4771. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4772. } else if (e.data.tools && e.data.tools == "1E") {
  4773. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4774. } else if (e.data.tools && e.data.tools == "3E") {
  4775. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4776. } else if (e.data.tools && e.data.tools == "57y") {
  4777. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4778. } else if (e.data.tools && e.data.tools == "57u") {
  4779. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4780. } else if (e.data.tools && e.data.tools == "57teacher") {
  4781. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4782. } else if (e.data.tools && e.data.tools == "64") {
  4783. U.MD.D.I.openApplication("AIChat")
  4784. } else if (e.data.tools && e.data.tools == "66") {
  4785. U.MD.D.I.openApplication("formulaEdi")
  4786. } else if (e.data.tools && e.data.tools == "67") {
  4787. U.MD.D.I.openApplication("molStr")
  4788. } else if (e.data.tools && e.data.tools == "68") {
  4789. U.MD.D.I.openApplication("timeAxis")
  4790. } else if (e.data.tools && e.data.tools == "openCourse") {
  4791. let _data = {
  4792. typea: e.data.typea || '',
  4793. typeb: e.data.typeb || '',
  4794. typed: e.data.typed || '',
  4795. }
  4796. U.MD.D.I.openInApplication("index", _data)
  4797. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4798. let _data = {
  4799. classid: e.data.classid || '',
  4800. }
  4801. U.MD.D.I.openInApplication("dataClass", _data)
  4802. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4803. let _data = {
  4804. cid: e.data.cid || '',
  4805. gid: e.data.gid || '',
  4806. }
  4807. U.MD.D.I.openInApplication("opencCscl", _data)
  4808. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4809. U.MD.D.I.openApplication("dataBoardTest")
  4810. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4811. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4812. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4813. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4814. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4815. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4816. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4817. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4818. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4819. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4820. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4821. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4822. }else if (e.data.tools && e.data.tools == "loginSz") {
  4823. U.MD.D.I.openInApplication("loginSz")
  4824. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4825. if($('#classroom_observation_board')[0]){
  4826. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4827. }
  4828. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4829. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4830. if($('#classroom_observation_ob_comment')[0]){
  4831. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4832. }
  4833. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4834. }else if (e.data.tools && e.data.tools == "logout"){
  4835. U.MD.U.LO.logoutSystem()
  4836. }else if (e.data.tools && e.data.tools == "getLogin"){
  4837. let _iframe = $('#UI_Login')[0];
  4838. if (_iframe) {
  4839. var userInfo = US.userInfo;
  4840. var type = 2
  4841. if(userInfo && userInfo.userid){
  4842. type = 1
  4843. }
  4844. _contentWindow = _iframe.contentWindow;
  4845. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4846. }
  4847. }
  4848. });
  4849. U.MD.D.I.selectUser = function () {
  4850. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4851. if (res.value[0].length > 0) {
  4852. US.userInfo = res.value[0][0];
  4853. $(".userName")[0].innerHTML = US.userInfo.username;
  4854. }
  4855. }, [], { "type": "GET", "withCredentials": true });
  4856. }
  4857. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4858. var _userinfo = US.userInfo, //登录用户信息
  4859. _userid = US.userInfo.userid, //登录用户id
  4860. _oid = _userinfo.organizeid,
  4861. _type = US.userInfo.type,
  4862. _org = US.userInfo.org,
  4863. _role = US.userInfo.role,
  4864. _classId = US.userInfo.classid;
  4865. if (_type == 4) {
  4866. tType = 4
  4867. }
  4868. switch (str) {
  4869. case "studyDetailNT": //无终端模式
  4870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4871. setTimeout(() => {
  4872. U.MD.U.L.login();
  4873. }, 2000);
  4874. } else {
  4875. _formdiv = new U.UF.UI.form(
  4876. "课程详情",
  4877. $$("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 }), {
  4878. "id": "studyDetailNT",
  4879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _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); } }
  4885. break;
  4886. }
  4887. case "studyDetail":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "课程详情",
  4895. $$("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 }), {
  4896. "id": "studyDetail",
  4897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4903. break;
  4904. }
  4905. case "studyDetailTrain":
  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-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4914. "id": "studyDetailTrain",
  4915. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _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); } }
  4921. break;
  4922. }
  4923. case "studyDetailS":
  4924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4925. setTimeout(() => {
  4926. U.MD.U.L.login();
  4927. }, 2000);
  4928. } else {
  4929. _formdiv = new U.UF.UI.form(
  4930. "项目详情",
  4931. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4932. "id": "studyDetailS",
  4933. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _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); } }
  4939. break;
  4940. }
  4941. case "studyDetailStudio":
  4942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4943. setTimeout(() => {
  4944. U.MD.U.L.login();
  4945. }, 2000);
  4946. } else {
  4947. _formdiv = new U.UF.UI.form(
  4948. "工作详情",
  4949. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4950. "id": "studyDetailStudio",
  4951. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4957. break;
  4958. }
  4959. case "studyDetailS5":
  4960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4961. setTimeout(() => {
  4962. U.MD.U.L.login();
  4963. }, 2000);
  4964. } else {
  4965. _formdiv = new U.UF.UI.form(
  4966. "项目详情",
  4967. $$("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 }), {
  4968. "id": "studyDetailS",
  4969. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _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); } }
  4975. break;
  4976. }
  4977. case "studyDetailGM":
  4978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4979. setTimeout(() => {
  4980. U.MD.U.L.login();
  4981. }, 2000);
  4982. } else {
  4983. _formdiv = new U.UF.UI.form(
  4984. "课程详情",
  4985. $$("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 }), {
  4986. "id": "studyDetail",
  4987. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. }
  4995. case "hanUrl":
  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": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5004. "id": "hanUrl",
  5005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. _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); } }
  5011. break;
  5012. }
  5013. case "index":
  5014. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5015. setTimeout(() => {
  5016. U.MD.U.L.login();
  5017. }, 2000);
  5018. } else {
  5019. _formdiv = new U.UF.UI.form(
  5020. "课程中心",
  5021. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-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 }), {
  5022. "id": "study",
  5023. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. _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); } }
  5029. break;
  5030. }
  5031. case "dataClass":
  5032. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5033. setTimeout(() => {
  5034. U.MD.U.L.login();
  5035. }, 2000);
  5036. } else {
  5037. _formdiv = new U.UF.UI.form(
  5038. "数据报告",
  5039. $$("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 }), {
  5040. "id": "dataClass",
  5041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _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); } }
  5047. break;
  5048. }
  5049. case "opencCscl":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "协同建构",
  5057. $$("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 }), {
  5058. "id": "futureClass",
  5059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. _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); } }
  5065. break;
  5066. }
  5067. case "openCourseUpdate":
  5068. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5069. setTimeout(() => {
  5070. U.MD.U.L.login();
  5071. }, 2000);
  5072. } else {
  5073. _formdiv = new U.UF.UI.form(
  5074. "课程管理",
  5075. $$("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 }), {
  5076. "id": "openCourseUpdate",
  5077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. break;
  5083. }
  5084. case "openNewCourseUpdate":
  5085. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5086. setTimeout(() => {
  5087. U.MD.U.L.login();
  5088. }, 2000);
  5089. } else {
  5090. _formdiv = new U.UF.UI.form(
  5091. "课程管理",
  5092. $$("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 }), {
  5093. "id": "openCourseUpdate",
  5094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. break;
  5100. }
  5101. case "openCourseEUpdate":
  5102. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5103. setTimeout(() => {
  5104. U.MD.U.L.login();
  5105. }, 2000);
  5106. } else {
  5107. _formdiv = new U.UF.UI.form(
  5108. "课程管理",
  5109. $$("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 }), {
  5110. "id": "openCourseUpdate",
  5111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. break;
  5117. }
  5118. case "openCourseAiUpdate":
  5119. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5120. setTimeout(() => {
  5121. U.MD.U.L.login();
  5122. }, 2000);
  5123. } else {
  5124. _formdiv = new U.UF.UI.form(
  5125. "课程管理",
  5126. $$("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 }), {
  5127. "id": "openCourseUpdate",
  5128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5129. "onresize": function () { }
  5130. }, {
  5131. closecallback: function () { }
  5132. }, { "style": { "height": "36px" } }).form; //创建窗体
  5133. break;
  5134. }
  5135. case "openCourseAiUpdate2":
  5136. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5137. setTimeout(() => {
  5138. U.MD.U.L.login();
  5139. }, 2000);
  5140. } else {
  5141. _formdiv = new U.UF.UI.form(
  5142. "课程管理",
  5143. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5144. "id": "openCourseUpdate",
  5145. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. break;
  5151. }
  5152. case "openCourseNewUpdate":
  5153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5154. setTimeout(() => {
  5155. U.MD.U.L.login();
  5156. }, 2000);
  5157. } else {
  5158. _formdiv = new U.UF.UI.form(
  5159. "课程管理",
  5160. $$("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 }), {
  5161. "id": "openCourseUpdate",
  5162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. break;
  5168. }
  5169. case "inviteLoginSz":
  5170. _formdiv = new U.UF.UI.form(
  5171. "随机码登录",
  5172. $$("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 }), {
  5173. "id": "loginSz",
  5174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5175. "onresize": function () { }
  5176. }, {
  5177. closecallback: function () { }
  5178. }, { "style": { "height": "36px" } }).form; //创建窗体
  5179. break;
  5180. case "loginSz":
  5181. _formdiv = new U.UF.UI.form(
  5182. "教师登录",
  5183. $$("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" }), {
  5184. "id": "loginSz",
  5185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. break;
  5191. case "teacher":
  5192. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5193. setTimeout(() => {
  5194. U.MD.U.L.login();
  5195. }, 2000);
  5196. } else {
  5197. _formdiv = new U.UF.UI.form(
  5198. "教师管理",
  5199. $$("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 }), {
  5200. "id": "teacher",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. break;
  5207. }
  5208. case "dataBoardSZArea":
  5209. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5210. setTimeout(() => {
  5211. U.MD.U.L.login();
  5212. }, 2000);
  5213. } else {
  5214. _formdiv = new U.UF.UI.form(
  5215. "综合数据看板",
  5216. $$("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 }), {
  5217. "id": "dataBoardSZArea",
  5218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. break;
  5224. }
  5225. case "dataBoardSZCity":
  5226. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5227. setTimeout(() => {
  5228. U.MD.U.L.login();
  5229. }, 2000);
  5230. } else {
  5231. _formdiv = new U.UF.UI.form(
  5232. "综合数据看板",
  5233. $$("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 }), {
  5234. "id": "dataBoardSZCity",
  5235. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. break;
  5241. }
  5242. case "classroom_observation_board":
  5243. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5244. setTimeout(() => {
  5245. U.MD.U.L.login();
  5246. }, 2000);
  5247. } else {
  5248. _formdiv = new U.UF.UI.form(
  5249. "课堂观察",
  5250. $$("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 }), {
  5251. "id": "classroom_observation_board",
  5252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. break;
  5258. }
  5259. case "classroom_observation_ob_comment":
  5260. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5261. setTimeout(() => {
  5262. U.MD.U.L.login();
  5263. }, 2000);
  5264. } else {
  5265. _formdiv = new U.UF.UI.form(
  5266. "课堂审核",
  5267. $$("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 }), {
  5268. "id": "classroom_observation_ob_comment",
  5269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. break;
  5275. }
  5276. }
  5277. }
  5278. U.MD.D.I.openApplication = function (str, obj, info) {
  5279. obj = obj || {};
  5280. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5281. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5282. _userinfo = US.userInfo, //登录用户信息
  5283. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5284. _oid = obj.organizeid || _userinfo.organizeid,
  5285. _type = US.userInfo.type,
  5286. _org = US.userInfo.org,
  5287. _role = US.userInfo.role,
  5288. _classId = US.userInfo.classid,
  5289. _TscreenType = 1
  5290. _screenType = 2,
  5291. _SscreenType = 3;
  5292. let iframeBool = true
  5293. if(U.UF.UI.form.allForm[str]){
  5294. iframeBool = false
  5295. }
  5296. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5297. return;
  5298. }
  5299. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5300. switch (str) {
  5301. case "studnetProject": //好友打开
  5302. _formdiv = new U.UF.UI.form(
  5303. "我的项目",
  5304. $$("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 }), {
  5305. "id": "studnetProject",
  5306. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _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); } }
  5312. break;
  5313. case "studentEvaluate": //好友打开
  5314. _formdiv = new U.UF.UI.form(
  5315. "我的评价",
  5316. $$("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 }), {
  5317. "id": "studentEvaluate",
  5318. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. _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); } }
  5324. break;
  5325. case "my":
  5326. _formdiv = new U.UF.UI.form(
  5327. "我的资料",
  5328. $$("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 }), {
  5329. "id": "my",
  5330. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5331. "onresize": function () { }
  5332. }, {
  5333. closecallback: function () { }
  5334. }, { "style": { "height": "36px" } }).form; //创建窗体
  5335. _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); } }
  5336. break;
  5337. case "program":
  5338. _formdiv = new U.UF.UI.form(
  5339. "编程平台",
  5340. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5341. "id": "program",
  5342. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. case "library":
  5350. _formdiv = new U.UF.UI.form(
  5351. "素材库",
  5352. $$("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 }), {
  5353. "id": "library",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. _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); } }
  5360. break;
  5361. case "whiteboard":
  5362. _formdiv = new U.UF.UI.form(
  5363. "电子白板",
  5364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5365. "id": "whiteboard",
  5366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. case "investigation":
  5374. _formdiv = new U.UF.UI.form(
  5375. "问卷调查",
  5376. $$("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 }), {
  5377. "id": "investigation",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _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); } }
  5384. break;
  5385. case "note":
  5386. _formdiv = new U.UF.UI.form(
  5387. "便签分类",
  5388. $$("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 }), {
  5389. "id": "note",
  5390. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _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); } }
  5396. break;
  5397. // case "score":
  5398. // _formdiv = new U.UF.UI.form(
  5399. // "量规评分",
  5400. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5401. // "id": "score",
  5402. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5403. // "onresize": function() {}
  5404. // }, {
  5405. // closecallback: function() {}
  5406. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. // _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); } }
  5408. // break;
  5409. case "mind":
  5410. _formdiv = new U.UF.UI.form(
  5411. "思维导图",
  5412. $$("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"
  5413. "id": "mind",
  5414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //创建窗体
  5419. _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); } }
  5420. break;
  5421. case "doc":
  5422. // U.MD.D.I.isRoom();
  5423. _formdiv = new U.UF.UI.form(
  5424. "协同文档",
  5425. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5426. "id": "doc",
  5427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5433. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5434. // })
  5435. _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); } }
  5436. break;
  5437. case "studentStudy":
  5438. _formdiv = new U.UF.UI.form(
  5439. "课程中心",
  5440. $$("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
  5441. "id": "studentStudy",
  5442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. _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); } }
  5448. break;
  5449. case "train": //好友打开
  5450. _formdiv = new U.UF.UI.form(
  5451. "训练平台",
  5452. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5453. "id": "train",
  5454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5455. "onresize": function () { }
  5456. }, {
  5457. closecallback: function () { }
  5458. }, { "style": { "height": "36px" } }).form; //创建窗体
  5459. _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); } }
  5460. break;
  5461. case "mindNetwork": //好友打开
  5462. _formdiv = new U.UF.UI.form(
  5463. "思维网格",
  5464. $$("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 }), {
  5465. "id": "mindNetwork",
  5466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. _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); } }
  5472. break;
  5473. case "studentClassRoom": //好友打开
  5474. _formdiv = new U.UF.UI.form(
  5475. "实时课堂",
  5476. $$("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 }), {
  5477. "id": "studentClassRoom",
  5478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. _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); } }
  5484. setTimeout(() => {
  5485. U.UF.F.windowZooming(_formdiv)
  5486. }, 0);
  5487. break;
  5488. }
  5489. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5490. switch (str) {
  5491. case "studnetProject": //好友打开
  5492. _formdiv = new U.UF.UI.form(
  5493. "我的项目",
  5494. $$("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 }), {
  5495. "id": "studnetProject",
  5496. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "studentEvaluate": //好友打开
  5504. _formdiv = new U.UF.UI.form(
  5505. "我的评价",
  5506. $$("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 }), {
  5507. "id": "studentEvaluate",
  5508. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. case "my":
  5516. _formdiv = new U.UF.UI.form(
  5517. "我的资料",
  5518. $$("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 }), {
  5519. "id": "my",
  5520. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "program":
  5528. _formdiv = new U.UF.UI.form(
  5529. "编程平台",
  5530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5531. "id": "program",
  5532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5538. break;
  5539. case "library":
  5540. _formdiv = new U.UF.UI.form(
  5541. "素材库",
  5542. $$("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 }), {
  5543. "id": "library",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5550. break;
  5551. case "whiteboard":
  5552. _formdiv = new U.UF.UI.form(
  5553. "电子白板",
  5554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5555. "id": "whiteboard",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5562. break;
  5563. case "investigation":
  5564. _formdiv = new U.UF.UI.form(
  5565. "问卷调查",
  5566. $$("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 }), {
  5567. "id": "investigation",
  5568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5574. break;
  5575. case "note":
  5576. _formdiv = new U.UF.UI.form(
  5577. "便签分类",
  5578. $$("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 }), {
  5579. "id": "note",
  5580. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5586. break;
  5587. // case "score":
  5588. // _formdiv = new U.UF.UI.form(
  5589. // "量规评分",
  5590. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5591. // "id": "score",
  5592. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. // "onresize": function() {}
  5594. // }, {
  5595. // closecallback: function() {}
  5596. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5598. // break;
  5599. case "mind":
  5600. _formdiv = new U.UF.UI.form(
  5601. "思维导图",
  5602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5603. "id": "mind",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5610. break;
  5611. case "doc":
  5612. // U.MD.D.I.isRoom();
  5613. _formdiv = new U.UF.UI.form(
  5614. "协同文档",
  5615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5616. "id": "doc",
  5617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5618. "onresize": function () { }
  5619. }, {
  5620. closecallback: function () { }
  5621. }, { "style": { "height": "36px" } }).form; //创建窗体
  5622. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5623. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5624. })
  5625. _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); } }
  5626. break;
  5627. case "train": //好友打开
  5628. _formdiv = new U.UF.UI.form(
  5629. "训练平台",
  5630. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5631. "id": "train",
  5632. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5633. "onresize": function () { }
  5634. }, {
  5635. closecallback: function () { }
  5636. }, { "style": { "height": "36px" } }).form; //创建窗体
  5637. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5638. break;
  5639. case "studentStudy":
  5640. _formdiv = new U.UF.UI.form(
  5641. "课程中心",
  5642. $$("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
  5643. "id": "studentStudy",
  5644. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5645. "onresize": function () { }
  5646. }, {
  5647. closecallback: function () { }
  5648. }, { "style": { "height": "36px" } }).form; //创建窗体
  5649. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5650. break;
  5651. case "mindNetwork": //好友打开
  5652. _formdiv = new U.UF.UI.form(
  5653. "思维网格",
  5654. $$("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 }), {
  5655. "id": "mindNetwork",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5662. break;
  5663. case "studentClassRoom": //好友打开
  5664. _formdiv = new U.UF.UI.form(
  5665. "实时课堂",
  5666. $$("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 }), {
  5667. "id": "studentClassRoom",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5674. setTimeout(() => {
  5675. U.UF.F.windowZooming(_formdiv)
  5676. }, 0);
  5677. break;
  5678. }
  5679. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5680. //选择应用处理
  5681. switch (str) {
  5682. case "project": //好友打开
  5683. _formdiv = new U.UF.UI.form(
  5684. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5685. $$("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 }), {
  5686. "id": "project",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _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); } }
  5693. break;
  5694. case "student":
  5695. _formdiv = new U.UF.UI.form(
  5696. "学生管理",
  5697. $$("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 }), {
  5698. "id": "student",
  5699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _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); } }
  5705. break;
  5706. case "evaluate":
  5707. _formdiv = new U.UF.UI.form(
  5708. "学生评价",
  5709. $$("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 }), {
  5710. "id": "evaluate",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. case "sys":
  5719. _formdiv = new U.UF.UI.form(
  5720. "目标管理",
  5721. $$("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 }), {
  5722. "id": "sys",
  5723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _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); } }
  5729. break;
  5730. case "courseDesign":
  5731. _formdiv = new U.UF.UI.form(
  5732. "项目设计",
  5733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5734. "id": "courseDesign",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _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); } }
  5741. break;
  5742. case "program":
  5743. _formdiv = new U.UF.UI.form(
  5744. "编程平台",
  5745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5746. "id": "program",
  5747. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. case "class":
  5755. _formdiv = new U.UF.UI.form(
  5756. "班级管理",
  5757. $$("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 }), {
  5758. "id": "class",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "Grade":
  5767. _formdiv = new U.UF.UI.form(
  5768. "年级管理",
  5769. $$("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 }), {
  5770. "id": "Grade",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _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); } }
  5777. break;
  5778. case "teacherOffice":
  5779. _formdiv = new U.UF.UI.form(
  5780. "教研室",
  5781. $$("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 }), {
  5782. "id": "teacherOffice",
  5783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5784. "onresize": function () { }
  5785. }, {
  5786. closecallback: function () { }
  5787. }, { "style": { "height": "36px" } }).form; //创建窗体
  5788. _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); } }
  5789. break;
  5790. case "my":
  5791. _formdiv = new U.UF.UI.form(
  5792. "我的资料",
  5793. $$("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 }), {
  5794. "id": "my",
  5795. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5796. "onresize": function () { }
  5797. }, {
  5798. closecallback: function () { }
  5799. }, { "style": { "height": "36px" } }).form; //创建窗体
  5800. _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); } }
  5801. break;
  5802. case "notice":
  5803. _formdiv = new U.UF.UI.form(
  5804. "通知公告",
  5805. $$("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 }), {
  5806. "id": "notice",
  5807. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5808. "onresize": function () { }
  5809. }, {
  5810. closecallback: function () { }
  5811. }, { "style": { "height": "36px" } }).form; //创建窗体
  5812. _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); } }
  5813. break;
  5814. case "library":
  5815. _formdiv = new U.UF.UI.form(
  5816. "素材库",
  5817. $$("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 }), {
  5818. "id": "library",
  5819. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5820. "onresize": function () { }
  5821. }, {
  5822. closecallback: function () { }
  5823. }, { "style": { "height": "36px" } }).form; //创建窗体
  5824. _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); } }
  5825. break;
  5826. case "whiteboard":
  5827. _formdiv = new U.UF.UI.form(
  5828. "电子白板",
  5829. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5830. "id": "whiteboard",
  5831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _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); } }
  5837. break;
  5838. case "investigation":
  5839. _formdiv = new U.UF.UI.form(
  5840. "问卷调查",
  5841. $$("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 }), {
  5842. "id": "investigation",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _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); } }
  5849. break;
  5850. case "note":
  5851. _formdiv = new U.UF.UI.form(
  5852. "便签分类",
  5853. $$("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 }), {
  5854. "id": "note",
  5855. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. break;
  5862. // case "score":
  5863. // _formdiv = new U.UF.UI.form(
  5864. // "量规评分",
  5865. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5866. // "id": "score",
  5867. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. // "onresize": function() {}
  5869. // }, {
  5870. // closecallback: function() {}
  5871. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. // _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); } }
  5873. // break;
  5874. case "mind":
  5875. _formdiv = new U.UF.UI.form(
  5876. "思维导图",
  5877. $$("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"
  5878. "id": "mind",
  5879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "doc":
  5887. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  5891. "id": "doc",
  5892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5893. "onresize": function () { }
  5894. }, {
  5895. closecallback: function () { }
  5896. }, { "style": { "height": "36px" } }).form; //创建窗体
  5897. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5898. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5899. })
  5900. _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); } }
  5901. break;
  5902. case "study":
  5903. _formdiv = new U.UF.UI.form(
  5904. "课程中心",
  5905. $$("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
  5906. "id": "study",
  5907. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _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); } }
  5913. break;
  5914. case "mindNetwork": //好友打开
  5915. _formdiv = new U.UF.UI.form(
  5916. "思维网格",
  5917. $$("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 }), {
  5918. "id": "mindNetwork",
  5919. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5925. break;
  5926. case "train": //好友打开
  5927. _formdiv = new U.UF.UI.form(
  5928. "训练平台",
  5929. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5930. "id": "mindNetwork",
  5931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _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); } }
  5937. break;
  5938. case "teacherClassRoom": //好友打开
  5939. _formdiv = new U.UF.UI.form(
  5940. "实时课堂",
  5941. $$("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 }), {
  5942. "id": "teacherClassRoom",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. setTimeout(() => {
  5950. U.UF.F.windowZooming(_formdiv)
  5951. }, 0);
  5952. break;
  5953. }
  5954. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5955. switch (str) {
  5956. case "project": //好友打开
  5957. _formdiv = new U.UF.UI.form(
  5958. "课程管理",
  5959. $$("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 }), {
  5960. "id": "project",
  5961. "style": { "width": "90%", "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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5967. break;
  5968. case "evaluate":
  5969. _formdiv = new U.UF.UI.form(
  5970. "学生评价",
  5971. $$("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 }), {
  5972. "id": "evaluate",
  5973. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5979. break;
  5980. case "notice":
  5981. _formdiv = new U.UF.UI.form(
  5982. "通知公告",
  5983. $$("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 }), {
  5984. "id": "notice",
  5985. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5991. break;
  5992. case "stuLibrary":
  5993. _formdiv = new U.UF.UI.form(
  5994. "学习资料",
  5995. $$("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 }), {
  5996. "id": "stuLibrary",
  5997. "style": { "width": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6003. break;
  6004. case "program":
  6005. _formdiv = new U.UF.UI.form(
  6006. "编程平台",
  6007. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6008. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6015. break;
  6016. case "whiteboard":
  6017. _formdiv = new U.UF.UI.form(
  6018. "电子白板",
  6019. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6020. "id": "whiteboard",
  6021. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6027. break;
  6028. case "investigation":
  6029. _formdiv = new U.UF.UI.form(
  6030. "问卷调查",
  6031. $$("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 }), {
  6032. "id": "investigation",
  6033. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6039. break;
  6040. case "mind":
  6041. _formdiv = new U.UF.UI.form(
  6042. "思维导图",
  6043. $$("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"
  6044. "id": "mind",
  6045. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6051. break;
  6052. case "doc":
  6053. // U.MD.D.I.isRoom();
  6054. _formdiv = new U.UF.UI.form(
  6055. "协同文档",
  6056. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6057. "id": "doc",
  6058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6064. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6065. })
  6066. _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); } }
  6067. break;
  6068. case "study":
  6069. _formdiv = new U.UF.UI.form(
  6070. "课程中心",
  6071. $$("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
  6072. "id": "study",
  6073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6074. "onresize": function () { }
  6075. }, {
  6076. closecallback: function () { }
  6077. }, { "style": { "height": "36px" } }).form; //创建窗体
  6078. _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); } }
  6079. break;
  6080. case "mindNetwork": //好友打开
  6081. _formdiv = new U.UF.UI.form(
  6082. "思维网格",
  6083. $$("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 }), {
  6084. "id": "mindNetwork",
  6085. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6086. "onresize": function () { }
  6087. }, {
  6088. closecallback: function () { }
  6089. }, { "style": { "height": "36px" } }).form; //创建窗体
  6090. _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); } }
  6091. break;
  6092. case "train": //好友打开
  6093. _formdiv = new U.UF.UI.form(
  6094. "训练平台",
  6095. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6096. "id": "train",
  6097. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6098. "onresize": function () { }
  6099. }, {
  6100. closecallback: function () { }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _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); } }
  6103. break;
  6104. case "sys":
  6105. _formdiv = new U.UF.UI.form(
  6106. "目标管理",
  6107. $$("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 }), {
  6108. "id": "sys",
  6109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _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); } }
  6115. break;
  6116. case "courseDesign":
  6117. _formdiv = new U.UF.UI.form(
  6118. "项目设计",
  6119. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6120. "id": "courseDesign",
  6121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. }
  6129. } else if (!_type) {
  6130. switch (str) {
  6131. case "my":
  6132. _formdiv = new U.UF.UI.form(
  6133. "我的资料",
  6134. $$("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 }), {
  6135. "id": "my",
  6136. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _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); } }
  6142. break;
  6143. }
  6144. }
  6145. switch (str) {
  6146. // AIprogram2 AI体验 aihub.cocorobo.cn
  6147. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6148. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6149. case "formulaEdi": //公式编辑
  6150. _formdiv = new U.UF.UI.form(
  6151. "公式编辑",
  6152. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6153. "id": "formulaEdi",
  6154. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "molStr": //分子结构
  6162. _formdiv = new U.UF.UI.form(
  6163. "分子结构",
  6164. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6165. "id": "molStr",
  6166. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "timeAxis": //时间轴
  6174. _formdiv = new U.UF.UI.form(
  6175. "时间轴",
  6176. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6177. "id": "timeAxis",
  6178. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "AIprogram2": //AI体验
  6186. _formdiv = new U.UF.UI.form(
  6187. "AI体验",
  6188. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6189. "id": "AIprogram2",
  6190. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. break;
  6197. case "Pythonprogram": //python编程
  6198. _formdiv = new U.UF.UI.form(
  6199. "Python编程",
  6200. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6201. "id": "Pythonprogram",
  6202. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. break;
  6209. case "AIprogram": //ai编程
  6210. _formdiv = new U.UF.UI.form(
  6211. "AI编程平台",
  6212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6213. "id": "AIprogram",
  6214. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. _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); } }
  6220. break;
  6221. case "CocoPi": //CocoPi
  6222. _formdiv = new U.UF.UI.form(
  6223. "CocoPi",
  6224. $$("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" }), {
  6225. "id": "CocoPi",
  6226. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6227. "onresize": function () { }
  6228. }, {
  6229. closecallback: function () { }
  6230. }, { "style": { "height": "36px" } }).form; //创建窗体
  6231. _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); } }
  6232. break;
  6233. case "Wood": //Wood
  6234. _formdiv = new U.UF.UI.form(
  6235. "海龟编程",
  6236. $$("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/" }), {
  6237. "id": "Wood",
  6238. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _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); } }
  6244. break;
  6245. case "car": //模拟驾驶
  6246. _formdiv = new U.UF.UI.form(
  6247. "模拟驾驶",
  6248. $$("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/" }), {
  6249. "id": "car",
  6250. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. case "lineSearch": //路径搜索
  6258. _formdiv = new U.UF.UI.form(
  6259. "路径搜索",
  6260. $$("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/" }), {
  6261. "id": "lineSearch",
  6262. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6263. "onresize": function () { }
  6264. }, {
  6265. closecallback: function () { }
  6266. }, { "style": { "height": "36px" } }).form; //创建窗体
  6267. _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); } }
  6268. break;
  6269. case "deepLearning": //深度学习
  6270. _formdiv = new U.UF.UI.form(
  6271. "深度学习",
  6272. $$("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/#" }), {
  6273. "id": "deepLearning",
  6274. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6275. "onresize": function () { }
  6276. }, {
  6277. closecallback: function () { }
  6278. }, { "style": { "height": "36px" } }).form; //创建窗体
  6279. _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); } }
  6280. break;
  6281. case "allHistory": //深度学习
  6282. _formdiv = new U.UF.UI.form(
  6283. "全历史",
  6284. $$("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/" }), {
  6285. "id": "allHistory",
  6286. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6287. "onresize": function () { }
  6288. }, {
  6289. closecallback: function () { }
  6290. }, { "style": { "height": "36px" } }).form; //创建窗体
  6291. _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); } }
  6292. break;
  6293. case "chatPDF": //ai编程
  6294. _formdiv = new U.UF.UI.form(
  6295. "chatPDF",
  6296. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6297. "id": "chatPDF",
  6298. "style": { "width": "70%", "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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6304. break;
  6305. case "resources": //国家教育
  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": "https://so.eduyun.cn/synResource" }), {
  6309. "id": "resources",
  6310. "style": { "width": "80%", "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/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6316. break;
  6317. case "codeEdit": //源码编辑
  6318. _formdiv = new U.UF.UI.form(
  6319. "源码编辑",
  6320. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6321. "id": "codeEdit",
  6322. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break; //
  6329. case "MindMap": //MindMap
  6330. _formdiv = new U.UF.UI.form(
  6331. "MindMap",
  6332. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6333. "id": "MindMap",
  6334. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. case "netWorkPanel": //netWorkPanel
  6342. _formdiv = new U.UF.UI.form(
  6343. "netWorkPanel",
  6344. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6345. "id": "netWorkPanel",
  6346. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "GeoGebra": //GeoGebra
  6354. _formdiv = new U.UF.UI.form(
  6355. "GeoGebra",
  6356. $$("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" }), {
  6357. "id": "GeoGebra",
  6358. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. case "translation": //翻译
  6366. _formdiv = new U.UF.UI.form(
  6367. "翻译",
  6368. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6369. "id": "translation",
  6370. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6371. "onresize": function () { }
  6372. }, {
  6373. closecallback: function () { }
  6374. }, { "style": { "height": "36px" } }).form; //创建窗体
  6375. _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); } }
  6376. break;
  6377. case "mohe": //魔盒
  6378. _formdiv = new U.UF.UI.form(
  6379. "魔盒识字",
  6380. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6381. "id": "mohe",
  6382. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. case "24game": //24点
  6390. _formdiv = new U.UF.UI.form(
  6391. "24点",
  6392. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6393. "id": "24game",
  6394. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. case "case":
  6402. _formdiv = new U.UF.UI.form(
  6403. "课程进展",
  6404. $$("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 }), {
  6405. "id": "case",
  6406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6407. "onresize": function () { }
  6408. }, {
  6409. closecallback: function () { }
  6410. }, { "style": { "height": "36px" } }).form; //创建窗体
  6411. _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); } }
  6412. break;
  6413. case "snf":
  6414. _formdiv = new U.UF.UI.form(
  6415. "赛诺梵",
  6416. $$("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" }), {
  6417. "id": "snf",
  6418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6419. "onresize": function () { }
  6420. }, {
  6421. closecallback: function () { }
  6422. }, { "style": { "height": "36px" } }).form; //创建窗体
  6423. _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); } }
  6424. break;
  6425. case "hanFamily":
  6426. _formdiv = new U.UF.UI.form(
  6427. "汉字家族",
  6428. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6429. "id": "hanFamily",
  6430. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6431. "onresize": function () { }
  6432. }, {
  6433. closecallback: function () { }
  6434. }, { "style": { "height": "36px" } }).form; //创建窗体
  6435. _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); } }
  6436. break;
  6437. case "hanClassics":
  6438. _formdiv = new U.UF.UI.form(
  6439. "国学经典",
  6440. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6441. "id": "hanClassics",
  6442. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6443. "onresize": function () { }
  6444. }, {
  6445. closecallback: function () { }
  6446. }, { "style": { "height": "36px" } }).form; //创建窗体
  6447. _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); } }
  6448. break;
  6449. case "hanTraining":
  6450. _formdiv = new U.UF.UI.form(
  6451. "笔画训练",
  6452. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6453. "id": "hanTraining",
  6454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6455. "onresize": function () { }
  6456. }, {
  6457. closecallback: function () { }
  6458. }, { "style": { "height": "36px" } }).form; //创建窗体
  6459. _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); } }
  6460. break;
  6461. case "hanClass":
  6462. _formdiv = new U.UF.UI.form(
  6463. "书法课堂",
  6464. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6465. "id": "hanClass",
  6466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6467. "onresize": function () { }
  6468. }, {
  6469. closecallback: function () { }
  6470. }, { "style": { "height": "36px" } }).form; //创建窗体
  6471. _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); } }
  6472. break;
  6473. case "han":
  6474. _formdiv = new U.UF.UI.form(
  6475. "汉字宫",
  6476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6477. "id": "han",
  6478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. _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); } }
  6484. break;
  6485. case "projectGM": //课程管理
  6486. _formdiv = new U.UF.UI.form(
  6487. "课程管理",
  6488. $$("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 }), {
  6489. "id": "projectGM",
  6490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _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); } }
  6496. break;
  6497. case "studyGM": //课程中心
  6498. _formdiv = new U.UF.UI.form(
  6499. "课程中心",
  6500. $$("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
  6501. "id": "study",
  6502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6503. "onresize": function () { }
  6504. }, {
  6505. closecallback: function () { }
  6506. }, { "style": { "height": "36px" } }).form; //创建窗体
  6507. _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); } }
  6508. break;
  6509. // studentGM
  6510. case "studentGM": //学生管理
  6511. _formdiv = new U.UF.UI.form(
  6512. "学生管理",
  6513. $$("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 }), {
  6514. "id": "studentGM",
  6515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _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); } }
  6521. break;
  6522. case "evaluateGM": //学生评价
  6523. _formdiv = new U.UF.UI.form(
  6524. "学生评价",
  6525. $$("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 }), {
  6526. "id": "evaluateGM",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. // classGM
  6535. case "classGM": //班级管理
  6536. _formdiv = new U.UF.UI.form(
  6537. "班级管理",
  6538. $$("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 }), {
  6539. "id": "classGM",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _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); } }
  6546. break;
  6547. // dataGM
  6548. case "dataGM":
  6549. _formdiv = new U.UF.UI.form(
  6550. "我的资料",
  6551. $$("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 }), {
  6552. "id": "dataGM",
  6553. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _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); } }
  6559. break;
  6560. // caseGM
  6561. case "caseGM": //课程进展
  6562. _formdiv = new U.UF.UI.form(
  6563. "课程进展",
  6564. $$("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 }), {
  6565. "id": "caseGM",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. // meterialGM
  6574. case "meterialGM": //素材库
  6575. _formdiv = new U.UF.UI.form(
  6576. "素材库",
  6577. $$("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 }), {
  6578. "id": "meterialGM",
  6579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. // evaluateSGM
  6587. case "evaluateSGM": //我的评价
  6588. _formdiv = new U.UF.UI.form(
  6589. "我的评价",
  6590. $$("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 }), {
  6591. "id": "evaluateSGM",
  6592. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _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); } }
  6598. break;
  6599. case "jupyter": //jupyter
  6600. _formdiv = new U.UF.UI.form(
  6601. "jupyter",
  6602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6603. "id": "jupyter",
  6604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. break;
  6611. case "number": //数字实验室
  6612. _formdiv = new U.UF.UI.form(
  6613. "数字实验室",
  6614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6615. "id": "number",
  6616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break;
  6623. case "studentCourse": //项目管理 学生
  6624. _formdiv = new U.UF.UI.form(
  6625. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6626. $$("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 }), {
  6627. "id": "studentCourse",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "studentCourseS": //项目管理 老师
  6636. _formdiv = new U.UF.UI.form(
  6637. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6638. $$("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 }), {
  6639. "id": "studentCourseS",
  6640. "style": { "width": "90%", "height": "90%", "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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6646. break;
  6647. case "studentIndex": //项目中心
  6648. _formdiv = new U.UF.UI.form(
  6649. "项目中心",
  6650. $$("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 }), {
  6651. "id": "studentIndex",
  6652. "style": { "width": "90%", "height": "90%", "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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6658. break;
  6659. case "CaseDesignS":
  6660. _formdiv = new U.UF.UI.form(
  6661. "项目进展",
  6662. $$("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 }), {
  6663. "id": "case",
  6664. "style": { "width": "90%", "height": "90%", "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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6670. break;
  6671. case "tcStudent": //腾讯学生管理
  6672. _formdiv = new U.UF.UI.form(
  6673. "学生管理",
  6674. $$("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 }), {
  6675. "id": "tcStudent",
  6676. "style": { "width": "90%", "height": "90%", "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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6682. break;
  6683. case "tcSchool": //腾讯学校管理
  6684. _formdiv = new U.UF.UI.form(
  6685. "学校管理",
  6686. $$("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 }), {
  6687. "id": "tcSchool",
  6688. "style": { "width": "90%", "height": "90%", "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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "tcTeacher": //腾讯学校管理
  6696. _formdiv = new U.UF.UI.form(
  6697. "教师管理",
  6698. $$("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 }), {
  6699. "id": "tcTeacher",
  6700. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "teacher":
  6708. _formdiv = new U.UF.UI.form(
  6709. "教师管理",
  6710. $$("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 }), {
  6711. "id": "teacher",
  6712. "style": { "width": "90%", "height": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "tcData": //腾讯我的资料
  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-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6723. "id": "tcData",
  6724. "style": { "width": "42%", "height": "90%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "tcNotice": //腾讯消息通知
  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/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6735. "id": "tcNotice",
  6736. "style": { "width": "90%", "height": "90%", "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/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. case "myReport": //好友打开
  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/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  6747. "id": "myReport",
  6748. "style": { "width": "100%", "height": "100%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6754. break;
  6755. case "learnAna": //好友打开
  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/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6759. "id": "learnAna",
  6760. "style": { "width": "100%", "height": "100%", "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/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "AIChat": //AI共创
  6768. _formdiv = new U.UF.UI.form(
  6769. "AI共创",
  6770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6771. "id": "AIChat",
  6772. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. istop: true,
  6776. closecallback: function () { $("#aichat_icon").remove(); },
  6777. narrowcallback: function () {
  6778. if (!$("#aichat_icon")[0]) {
  6779. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6780. }
  6781. },
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. case "ainew": //AI共创
  6786. _formdiv = new U.UF.UI.form(
  6787. "AI协同",
  6788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6789. "id": "ainew",
  6790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6791. "onresize": function () { }
  6792. }, {
  6793. closecallback: function () { }
  6794. }, { "style": { "height": "36px" } }).form; //创建窗体
  6795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6796. break;
  6797. case "gpt4": //gpt4
  6798. _formdiv = new U.UF.UI.form(
  6799. "AI助手",
  6800. $$("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 }), {
  6801. "id": "gpt4",
  6802. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6803. "onresize": function () { }
  6804. }, {
  6805. closecallback: function () { }
  6806. }, { "style": { "height": "36px" } }).form; //创建窗体
  6807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6808. break;
  6809. case "aigpt": //gpt4
  6810. _formdiv = new U.UF.UI.form(
  6811. "AI助手+",
  6812. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6813. "id": "aigpt",
  6814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () {
  6818. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6819. }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _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); } }
  6822. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6823. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6824. })
  6825. break;
  6826. case "aiKnowledge": //aiKnowledge
  6827. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6828. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6829. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6830. }
  6831. _formdiv = new U.UF.UI.form(
  6832. "知识建构",
  6833. $$("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": _url }), {
  6834. "id": "aiKnowledge",
  6835. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, { "style": { "height": "36px" } }).form; //创建窗体
  6840. _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); } }
  6841. break;
  6842. case "futureClass": //AI共创
  6843. _formdiv = new U.UF.UI.form(
  6844. "协同建构",
  6845. $$("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
  6846. "id": "synergyCourse",
  6847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () {
  6851. $("iframe", _formdiv)[0].contentWindow.loginout();
  6852. }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "aiagent": //ai agent
  6857. _formdiv = new U.UF.UI.form(
  6858. "AI Agent",
  6859. $$("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" }), {
  6860. "id": "AIAgent",
  6861. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _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); } }
  6867. break;
  6868. case "dataBoard": //数据看板
  6869. _formdiv = new U.UF.UI.form(
  6870. "数据看板",
  6871. $$("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 }), {
  6872. "id": "dataBoard",
  6873. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _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); } }
  6879. break;
  6880. case "dataBoardSies": //数据融合
  6881. _formdiv = new U.UF.UI.form(
  6882. "数据融合",
  6883. $$("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 }), {
  6884. "id": "dataBoardSies",
  6885. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _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); } }
  6891. break;
  6892. case "dataBoardNew": //数据看板
  6893. _formdiv = new U.UF.UI.form(
  6894. "综合看板",
  6895. $$("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 }), {
  6896. "id": "dataBoardNew",
  6897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _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); } }
  6903. break;
  6904. case "dataBoardTest": //数据看板
  6905. _formdiv = new U.UF.UI.form(
  6906. "评测看板",
  6907. $$("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 }), {
  6908. "id": "dataBoardTest",
  6909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, { "style": { "height": "36px" } }).form; //创建窗体
  6914. _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); } }
  6915. break;
  6916. case "AIAnalyse": //AI共创
  6917. _formdiv = new U.UF.UI.form(
  6918. "AI分析",
  6919. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6920. "id": "AIAnalyse",
  6921. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, { "style": { "height": "36px" } }).form; //创建窗体
  6926. _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); } }
  6927. break;
  6928. case "studioCourse": //AI共创
  6929. _formdiv = new U.UF.UI.form(
  6930. "工作管理",
  6931. $$("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 }), {
  6932. "id": "studioCourse",
  6933. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _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); } }
  6939. break;
  6940. case "studioIndex": //AI共创
  6941. _formdiv = new U.UF.UI.form(
  6942. "工作中心",
  6943. $$("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 }), {
  6944. "id": "studioIndex",
  6945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _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); } }
  6951. break;
  6952. case "source":
  6953. _formdiv = new U.UF.UI.form(
  6954. "教学资源",
  6955. $$("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 }), {
  6956. "id": "source",
  6957. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _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); } }
  6963. break;
  6964. case "testTeacher":
  6965. _formdiv = new U.UF.UI.form(
  6966. "智能表单",
  6967. $$("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 }), {
  6968. "id": "testTeacher",
  6969. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _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); } }
  6975. break;
  6976. case "testStudent":
  6977. _formdiv = new U.UF.UI.form(
  6978. "教师中心",
  6979. $$("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 }), {
  6980. "id": "testStudent",
  6981. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _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); } }
  6987. break;
  6988. case "testTeacherSies":
  6989. _formdiv = new U.UF.UI.form(
  6990. "教师管理",
  6991. $$("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 }), {
  6992. "id": "testTeacherSies",
  6993. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _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); } }
  6999. break;
  7000. case "testStudentSies":
  7001. _formdiv = new U.UF.UI.form(
  7002. "教师中心",
  7003. $$("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 }), {
  7004. "id": "testStudentSies",
  7005. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _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); } }
  7011. break;
  7012. case "ytpbl": //消息通知
  7013. _formdiv = new U.UF.UI.form(
  7014. "案例征集",
  7015. $$("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 }), {
  7016. "id": "ytpbl",
  7017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _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); } }
  7023. // 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");
  7024. break;
  7025. case "aiCourseResource": //人工智能窗体
  7026. _formdiv = new U.UF.UI.form(
  7027. false,
  7028. $$("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 }), {
  7029. "id": "aiCourseResource",
  7030. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7031. "onresize": function () { },
  7032. "isdrag": false,
  7033. }, {
  7034. closecallback: function () { }
  7035. }, { "style": { "height": "36px" } }).form; //创建窗体
  7036. _taskbar = ''
  7037. break;
  7038. case "szdjgCocooroboX": //图形化编程
  7039. _formdiv = new U.UF.UI.form(
  7040. "图形化编程",
  7041. $$("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" }), {
  7042. "id": "szdjgCocooroboX",
  7043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7044. "onresize": function () { }
  7045. }, {
  7046. closecallback: function () { }
  7047. }, { "style": { "height": "36px" } }).form; //创建窗体
  7048. _taskbar = ''
  7049. break;
  7050. case "szdjgPython": //python编程
  7051. _formdiv = new U.UF.UI.form(
  7052. "Python编程",
  7053. $$("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" }), {
  7054. "id": "szdjgPython",
  7055. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7056. "onresize": function () { }
  7057. }, {
  7058. closecallback: function () { }
  7059. }, { "style": { "height": "36px" } }).form; //创建窗体
  7060. _taskbar = ''
  7061. break;
  7062. case "Record":
  7063. _formdiv = new U.UF.UI.form(
  7064. "观察记录",
  7065. $$("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 }), {
  7066. "id": "Record",
  7067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, { "style": { "height": "36px" } }).form; //创建窗体
  7072. _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); } }
  7073. break;
  7074. case "aigptCourse":
  7075. _formdiv = new U.UF.UI.form(
  7076. "AI智能体",
  7077. $$("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' }), {
  7078. "id": "aigptCourse",
  7079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7080. "onresize": function () { }
  7081. }, {
  7082. closecallback: function () { }
  7083. }, { "style": { "height": "36px" } }).form; //创建窗体
  7084. _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); } }
  7085. break;
  7086. case "classroomObservation":
  7087. _formdiv = new U.UF.UI.form(
  7088. "课堂观察",
  7089. $$("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 }), {
  7090. "id": "classroomObservation",
  7091. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7092. "onresize": function () { }
  7093. }, {
  7094. closecallback: function () { }
  7095. }, { "style": { "height": "36px" } }).form; //创建窗体
  7096. _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); } }
  7097. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7098. break;
  7099. case "pblCourse":
  7100. _formdiv = new U.UF.UI.form(
  7101. "学生PBL",
  7102. $$("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 }), {
  7103. "id": "pblCourse",
  7104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7105. "onresize": function () { }
  7106. }, {
  7107. closecallback: function () { }
  7108. }, { "style": { "height": "36px" } }).form; //创建窗体
  7109. _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); } }
  7110. break;
  7111. case "appStore":
  7112. _formdiv = new U.UF.UI.form(
  7113. "CocoFlow",
  7114. $$("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": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7115. "id": "appStore",
  7116. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7117. "onresize": function () { }
  7118. }, {
  7119. closecallback: function () { }
  7120. }, { "style": { "height": "36px" } }).form; //创建窗体
  7121. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7122. break;
  7123. case "sassPlatform":
  7124. _formdiv = new U.UF.UI.form(
  7125. "Sass通用后台管理",
  7126. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7127. "id": "sassPlatform",
  7128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7129. "onresize": function () { }
  7130. }, {
  7131. closecallback: function () { }
  7132. }, { "style": { "height": "36px" } }).form; //创建窗体
  7133. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7134. break;
  7135. case "EDU":
  7136. _formdiv = new U.UF.UI.form(
  7137. "EDU",
  7138. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7139. "id": "EDU",
  7140. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7141. "onresize": function () { }
  7142. }, {
  7143. closecallback: function () { }
  7144. }, { "style": { "height": "36px" } }).form; //创建窗体
  7145. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7146. break;
  7147. case "knowledge":
  7148. _formdiv = new U.UF.UI.form(
  7149. "知识库",
  7150. $$("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://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7151. "id": "knowledge",
  7152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7153. "onresize": function () { }
  7154. }, {
  7155. closecallback: function () { }
  7156. }, { "style": { "height": "36px" } }).form; //创建窗体
  7157. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7158. break;
  7159. case "userExamine":
  7160. _formdiv = new U.UF.UI.form(
  7161. "账号申请",
  7162. $$("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": "//user.cocorobo.cn/#/examineDialog" }), {
  7163. "id": "userExamine",
  7164. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7165. "onresize": function () { }
  7166. }, {
  7167. closecallback: function () { }
  7168. }, { "style": { "height": "36px" } }).form; //创建窗体
  7169. break;
  7170. }
  7171. //U.MD.D.I.openClick(str);
  7172. //如果有任务栏信息
  7173. if (_taskbar) {
  7174. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7175. }
  7176. if(iframeBool){
  7177. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7178. $("iframe", _formdiv)[0].contentWindow.addEventListener('DOMContentLoaded', function() {
  7179. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7180. });
  7181. if(!$("iframe", _formdiv)[0].contentWindow){
  7182. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7183. }
  7184. let onload = U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7185. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7186. })
  7187. let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7188. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7189. };
  7190. if(!(onload || onloadListener)){
  7191. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7192. }
  7193. }
  7194. }
  7195. // U.MD.D.I.openClick = function(str){
  7196. // var click = '';
  7197. // switch(str){
  7198. // case 'friend':
  7199. // click = '我的好友';
  7200. // break;
  7201. // case 'domain':
  7202. // click = '域名管理';
  7203. // break;
  7204. // case 'disk':
  7205. // click = '我的云盘';
  7206. // break;
  7207. // case 'word':
  7208. // click = 'Word';
  7209. // break;
  7210. // case 'excel':
  7211. // click = 'Execl';
  7212. // break;
  7213. // case 'txt':
  7214. // click = '文本文件';
  7215. // break;
  7216. // case 'lookupFriend':
  7217. // click = '查找好友';
  7218. // break;
  7219. // case 'ftp':
  7220. // click = 'FTP';
  7221. // break;
  7222. // case 'group':
  7223. // click = '群组';
  7224. // break;
  7225. // case 'set':
  7226. // click = '我的设置';
  7227. // break;
  7228. // case 'systemSet':
  7229. // click = '系统设置';
  7230. // break;
  7231. // case 'boomYun':
  7232. // click = '互联办公';
  7233. // break;
  7234. // case 'xz':
  7235. // click = '云端下载';
  7236. // break;
  7237. // case 'client':
  7238. // click = '有思浏览器';
  7239. // break;
  7240. // case 'backEndProgramming':
  7241. // click = '在线后台编程';
  7242. // break;
  7243. // case 'frontEndProgramming':
  7244. // click = '在线前端编程';
  7245. // break;
  7246. // default: break;
  7247. // }
  7248. // if(U.MD.D.I.Ip && click){
  7249. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7250. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7251. // })
  7252. // }
  7253. // }
  7254. /**
  7255. *函数作用:ajax简易函数,使用post格式
  7256. *@param url {data} 后台地址
  7257. *@param data {data} 参数json
  7258. *@param fn {data} 回调函数
  7259. *
  7260. */
  7261. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7262. // var xhr = new XMLHttpRequest();
  7263. // xhr.open("GET",url,true);
  7264. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7265. // xhr.onreadystatechange = function(){
  7266. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7267. // fn.call(this,xhr.responseText);
  7268. // }
  7269. // };
  7270. // xhr.send();
  7271. // }
  7272. /*判断是否是内网IP*/
  7273. // U.MD.D.I.isInnerIPFn = function(str){
  7274. // var curPageUrl = str;
  7275. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7276. // curPageUrl =curPageUrl.replace(reg1,'');
  7277. // // console.log('curPageUrl-1 '+curPageUrl);
  7278. // var reg2 = /\:+/g;//替换冒号为一点
  7279. // curPageUrl =curPageUrl.replace(reg2,'.');
  7280. // // console.log('curPageUrl-2 '+curPageUrl);
  7281. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7282. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7283. // if(curPageUrl[2] != '16'){
  7284. // return ipAddress;
  7285. // }else{
  7286. // return false;
  7287. // }
  7288. // }
  7289. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7290. // //compatibility for firefox and chrome
  7291. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7292. // var pc = new myPeerConnection({
  7293. // iceServers: []
  7294. // }),
  7295. // noop = function() {},
  7296. // localIPs = {},
  7297. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7298. // key;
  7299. // function iterateIP(ip) {
  7300. // if (!localIPs[ip]) onNewIP(ip);
  7301. // localIPs[ip] = true;
  7302. // }
  7303. // //create a bogus data channel
  7304. // pc.createDataChannel("");
  7305. // // create offer and set local description
  7306. // pc.createOffer().then(function(sdp) {
  7307. // sdp.sdp.split('\n').forEach(function(line) {
  7308. // if (line.indexOf('candidate') < 0) return;
  7309. // line.match(ipRegex).forEach(iterateIP);
  7310. // });
  7311. // pc.setLocalDescription(sdp, noop, noop);
  7312. // }).catch(function(reason) {
  7313. // // An error occurred, so handle the failure to connect
  7314. // });
  7315. // //sten for candidate events
  7316. // pc.onicecandidate = function(ice) {
  7317. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7318. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7319. // };
  7320. // }
  7321. // U.MD.D.I.getUserIpBool = function(callback){
  7322. // U.MD.D.I.getUserIP(function(ip){
  7323. // alert("Got IP! :" + ip);
  7324. // });
  7325. //}
  7326. //#endregion
  7327. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7328. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7329. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7330. _userinfo = US.userInfo, //登录用户信息
  7331. _userid = US.userInfo.userid //登录用户id
  7332. let _iframe;
  7333. let _cid = cid,
  7334. _stage = stage,
  7335. _task = task,
  7336. _tool = tool;
  7337. var _jie = $$("div", {
  7338. "style": {
  7339. "position": "absolute",
  7340. "bottom": "50px",
  7341. "right": "50px",
  7342. "zIndex": "9999",
  7343. "backgroundColor": "#2268bc",
  7344. "color": "#fff",
  7345. "padding": "12px 20px",
  7346. "cursor": "pointer",
  7347. "borderRadius": "4px",
  7348. },
  7349. "innerHTML": "提交作业"
  7350. })
  7351. let aTool = ''
  7352. let _loading = document.createElement('div')
  7353. _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;"
  7354. // _loading.id = "";
  7355. let _lchild = document.createElement('div')
  7356. let _limg = document.createElement('img')
  7357. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7358. _limg.style = "width: 26px;margin-right: 10px;"
  7359. _lchild.appendChild(_limg)
  7360. let _lspan = document.createElement('span')
  7361. _lspan.innerHTML = "上传中..."
  7362. _lchild.appendChild(_lspan)
  7363. _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%);"
  7364. _loading.appendChild(_lchild)
  7365. var _box = $$('div', {
  7366. "style": {
  7367. "position": "relative",
  7368. "width": "100%",
  7369. "height": "100%",
  7370. },
  7371. })
  7372. _box.appendChild(_loading)
  7373. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7374. switch (str) {
  7375. case "whiteboard":
  7376. aTool = 1;
  7377. _iframe = $$("iframe", {
  7378. "frameborder": "no",
  7379. "border": "0",
  7380. "scrolling ": "no",
  7381. "style": {
  7382. "cssText": "border:0;width:100%;height:100%"
  7383. },
  7384. "src": "https://beta.iwb.cocorobo.cn/"
  7385. })
  7386. _box.appendChild(_iframe);
  7387. _box.appendChild(_jie);
  7388. _formdiv = new U.UF.UI.form(
  7389. "电子白板",
  7390. _box, {
  7391. "id": "whiteboard" + cid + stage + task + tool,
  7392. "style": {
  7393. "width": "90%",
  7394. "height": "90%",
  7395. "overflow": 'hidden'
  7396. },
  7397. "onresize": function () { }
  7398. }, {
  7399. closecallback: function () { }
  7400. }, {
  7401. "style": {
  7402. "height": "36px"
  7403. }
  7404. }).form; //创建窗体
  7405. _taskbar = {
  7406. "id": str + _formdiv.id,
  7407. "style": {
  7408. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7409. },
  7410. "name": "电子白板",
  7411. "forms": _formdiv,
  7412. "click": function () {
  7413. U.MD.D.I.openApplication(str, obj, info);
  7414. }
  7415. }
  7416. break;
  7417. case "mind":
  7418. aTool = 3;
  7419. _iframe = $$("iframe", {
  7420. "frameborder": "no",
  7421. "border": "0",
  7422. "scrolling ": "no",
  7423. "style": {
  7424. "cssText": "border:0;width:100%;height:100%"
  7425. },
  7426. "src": "/kityminder-editor/dist/index.html"
  7427. })
  7428. _box.appendChild(_iframe);
  7429. _box.appendChild(_jie);
  7430. _formdiv = new U.UF.UI.form(
  7431. "思维导图",
  7432. _box, { //"/jsmind/example/demo.html"
  7433. "id": "mind" + cid + stage + task + tool,
  7434. "style": {
  7435. "width": "90%",
  7436. "height": "90%",
  7437. "overflow": 'hidden'
  7438. },
  7439. "onresize": function () { }
  7440. }, {
  7441. closecallback: function () { }
  7442. }, {
  7443. "style": {
  7444. "height": "36px"
  7445. }
  7446. }).form; //创建窗体
  7447. _taskbar = {
  7448. "id": str + _formdiv.id,
  7449. "style": {
  7450. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7451. },
  7452. "name": "思维导图",
  7453. "forms": _formdiv,
  7454. "click": function () {
  7455. U.MD.D.I.openApplication(str, obj, info);
  7456. }
  7457. }
  7458. break;
  7459. case "MindMap":
  7460. aTool = 3;
  7461. _iframe = $$("iframe", {
  7462. "frameborder": "no",
  7463. "border": "0",
  7464. "scrolling ": "no",
  7465. "style": {
  7466. "cssText": "border:0;width:100%;height:100%"
  7467. },
  7468. "src": "//cloud.cocorobo.cn/mind/"
  7469. })
  7470. _box.appendChild(_iframe);
  7471. _box.appendChild(_jie);
  7472. _formdiv = new U.UF.UI.form(
  7473. "思维导图",
  7474. _box, { //"/jsmind/example/demo.html"
  7475. "id": "mind" + cid + stage + task + tool,
  7476. "style": {
  7477. "width": "90%",
  7478. "height": "90%",
  7479. "overflow": 'hidden'
  7480. },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, {
  7485. "style": {
  7486. "height": "36px"
  7487. }
  7488. }).form; //创建窗体
  7489. _taskbar = {
  7490. "id": str + _formdiv.id,
  7491. "style": {
  7492. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7493. },
  7494. "name": "思维导图",
  7495. "forms": _formdiv,
  7496. "click": function () {
  7497. U.MD.D.I.openApplication(str, obj, info);
  7498. }
  7499. }
  7500. break;
  7501. case "doc":
  7502. aTool = 6;
  7503. _iframe = $$("iframe", {
  7504. "frameborder": "no",
  7505. "border": "0",
  7506. "scrolling ": "no",
  7507. "style": {
  7508. "cssText": "border:0;width:100%;height:100%"
  7509. },
  7510. "src": "/Office/Word/WordEditArea.htm"
  7511. })
  7512. _box.appendChild(_iframe);
  7513. _box.appendChild(_jie);
  7514. _formdiv = new U.UF.UI.form(
  7515. "协同文档",
  7516. _box, {
  7517. "id": "doc" + cid + stage + task + tool,
  7518. "style": {
  7519. "width": "90%",
  7520. "height": "90%",
  7521. "overflow": 'hidden'
  7522. },
  7523. "onresize": function () { }
  7524. }, {
  7525. closecallback: function () { }
  7526. }, {
  7527. "style": {
  7528. "height": "36px"
  7529. }
  7530. }).form; //创建窗体
  7531. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7532. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7533. })
  7534. _taskbar = {
  7535. "id": str + _formdiv.id,
  7536. "style": {
  7537. "backgroundImage": "url(/img/icon/doc.png)"
  7538. },
  7539. "name": "协同文档",
  7540. "forms": _formdiv,
  7541. "click": function () {
  7542. U.MD.D.I.openApplication(str, obj, info);
  7543. }
  7544. }
  7545. break;
  7546. case "mindNetwork": //好友打开
  7547. aTool = 7;
  7548. _iframe = $$("iframe", {
  7549. "webkitallowfullscreen": "",
  7550. "mozallowfullscreen": "",
  7551. "allowfullscreen": "",
  7552. "frameborder": "no",
  7553. "border": "0",
  7554. "scrolling ": "no",
  7555. "style": {
  7556. "cssText": "border:0; width:100%; height:100%;"
  7557. },
  7558. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7559. })
  7560. _box.appendChild(_iframe);
  7561. _box.appendChild(_jie);
  7562. _formdiv = new U.UF.UI.form(
  7563. "思维网格",
  7564. _box, {
  7565. "id": "mindNetwork" + cid + stage + task + tool,
  7566. "style": {
  7567. "width": "90%",
  7568. "height": "90%",
  7569. "overflow": 'hidden'
  7570. },
  7571. "onresize": function () { }
  7572. }, {
  7573. closecallback: function () { }
  7574. }, {
  7575. "style": {
  7576. "height": "36px"
  7577. }
  7578. }).form; //创建窗体
  7579. _taskbar = {
  7580. "id": str + _formdiv.id,
  7581. "style": {
  7582. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7583. },
  7584. "name": "思维网格",
  7585. "forms": _formdiv,
  7586. "click": function () {
  7587. U.MD.D.I.openApplication(str, obj, info);
  7588. }
  7589. }
  7590. break;
  7591. case "courseDesign":
  7592. _iframe = $$("iframe", {
  7593. "webkitallowfullscreen": "",
  7594. "mozallowfullscreen": "",
  7595. "allowfullscreen": "",
  7596. "frameborder": "no",
  7597. "border": "0",
  7598. "scrolling ": "no",
  7599. "style": {
  7600. "cssText": "border:0; width:100%; height:100%;"
  7601. },
  7602. "src": "/course-design-vue"
  7603. })
  7604. _box.appendChild(_iframe);
  7605. _box.appendChild(_jie);
  7606. _formdiv = new U.UF.UI.form(
  7607. "项目设计",
  7608. _box, {
  7609. "id": "courseDesign" + cid + stage + task + tool,
  7610. "style": {
  7611. "width": "90%",
  7612. "height": "90%",
  7613. "overflow": 'hidden'
  7614. },
  7615. "onresize": function () { }
  7616. }, {
  7617. closecallback: function () { }
  7618. }, {
  7619. "style": {
  7620. "height": "36px"
  7621. }
  7622. }).form; //创建窗体
  7623. _taskbar = {
  7624. "id": str + _formdiv.id,
  7625. "style": {
  7626. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7627. },
  7628. "name": "项目设计",
  7629. "forms": _formdiv,
  7630. "click": function () {
  7631. U.MD.D.I.openApplication(str, obj, info);
  7632. }
  7633. }
  7634. break;
  7635. }
  7636. const script1 = document.createElement("script");
  7637. script1.type = "text/javascript";
  7638. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7639. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7640. const script2 = document.createElement("script");
  7641. script2.type = "text/javascript";
  7642. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7643. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7644. const script3 = document.createElement("script");
  7645. script3.type = "text/javascript";
  7646. script3.charset = "UTF-8";
  7647. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7648. const script4 = document.createElement("script");
  7649. script4.type = "text/javascript";
  7650. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7651. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7652. if (_iframe) {
  7653. if (str == 'doc') {
  7654. _iframe = _formdiv.querySelector('iframe')
  7655. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7656. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7657. _iframe.contentWindow.document.body.appendChild(script1);
  7658. _iframe.contentWindow.document.body.appendChild(script2);
  7659. // _iframe.contentWindow.document.body.appendChild(script3);
  7660. _iframe.contentWindow.document.body.appendChild(script4);
  7661. })
  7662. if (onloadListener) {
  7663. _iframe.contentDocument.location.reload()
  7664. } else {
  7665. _iframe.contentDocument.location.reload()
  7666. }
  7667. } else if (str == 'courseDesign') {
  7668. U.UF.DL.iframeLoad(_iframe, function () {
  7669. // _iframe.contentWindow.U.MD.O.W.load();
  7670. // _iframe.contentWindow.document.body.appendChild(script1);
  7671. _iframe.contentWindow.document.body.appendChild(script2);
  7672. _iframe.contentWindow.document.body.appendChild(script4);
  7673. })
  7674. } else if (str == 'mind') {
  7675. _iframe = _formdiv.querySelector('iframe')
  7676. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7677. //
  7678. _iframe.contentWindow.document.body.appendChild(script1);
  7679. _iframe.contentWindow.document.body.appendChild(script2);
  7680. _iframe.contentWindow.document.body.appendChild(script4);
  7681. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7682. })
  7683. if (onloadListener) {
  7684. _iframe.contentDocument.location.reload()
  7685. } else {
  7686. _iframe.contentDocument.location.reload()
  7687. }
  7688. } else if (str == 'whiteboard') {
  7689. _iframe = _formdiv.querySelector('iframe')
  7690. let onloadListener = _iframe.onload = () => {
  7691. _iframe.contentWindow.document.body.appendChild(script1);
  7692. _iframe.contentWindow.document.body.appendChild(script2);
  7693. _iframe.contentWindow.document.body.appendChild(script4);
  7694. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7695. };
  7696. // if (onloadListener) {
  7697. // try {
  7698. // _iframe.src += "?cocorobo="+new Date().getTime()
  7699. // _iframe.contentWindow.document.location.reload()
  7700. // } catch (error) {
  7701. // }
  7702. // } else {
  7703. // _iframe.contentDocument.location.reload()
  7704. // }
  7705. } else {
  7706. _iframe.onload = () => {
  7707. _iframe.contentWindow.document.body.appendChild(script1);
  7708. _iframe.contentWindow.document.body.appendChild(script2);
  7709. // _iframe.contentWindow.document.body.appendChild(script3);
  7710. _iframe.contentWindow.document.body.appendChild(script4);
  7711. };
  7712. }
  7713. _jie.onclick = async () => {
  7714. let text = ''
  7715. if (aTool == 1) {
  7716. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7717. } else if (aTool == 6) {
  7718. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7719. } else if (aTool == 3) {
  7720. text = await U.MD.D.I.getEditorContent(_iframe);
  7721. }
  7722. _loading.style.display = 'flex'
  7723. console.log(_loading);
  7724. var _ajs = _iframe.contentWindow.document.createElement("script");
  7725. _ajs.type = "text/javascript";
  7726. _ajs.innerHTML =
  7727. // 'console.log(' + _loading + ');\n' +
  7728. 'var _js = document.createElement("script");\n' +
  7729. '_js.type="text/javascript";\n' +
  7730. '_js.charset="UTF-8";\n' +
  7731. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7732. "_js.onload = function(){\n" +
  7733. ' var a = document.getElementsByTagName("img")\n' +
  7734. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7735. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7736. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7737. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7738. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7739. "beforeUpload_shishi(file," +
  7740. "'" +
  7741. _userid +
  7742. "'" +
  7743. ", " +
  7744. "'" +
  7745. _cid +
  7746. "'" +
  7747. ", " +
  7748. "'" +
  7749. _stage +
  7750. "'" +
  7751. ", " +
  7752. "'" +
  7753. _task +
  7754. "'" +
  7755. ", " +
  7756. "'" +
  7757. _tool +
  7758. "'" +
  7759. ", " +
  7760. "'" +
  7761. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7762. "'" +
  7763. ", " +
  7764. "'" +
  7765. aTool +
  7766. "'" +
  7767. ", " +
  7768. "`" +
  7769. text +
  7770. "`" +
  7771. ")\n" +
  7772. " });\n" +
  7773. "}\n" +
  7774. "document.head.appendChild(_js);\n";
  7775. _iframe.contentWindow.document.head.appendChild(_ajs);
  7776. }
  7777. }
  7778. //U.MD.D.I.openClick(str);
  7779. //如果有任务栏信息
  7780. // if (_taskbar) {
  7781. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7782. // }
  7783. }
  7784. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7785. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7786. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7787. _userinfo = US.userInfo, //登录用户信息
  7788. _userid = US.userInfo.userid //登录用户id
  7789. let _iframe;
  7790. let _cid = cid,
  7791. _stage = stage,
  7792. _task = task,
  7793. _tool = tool;
  7794. var _jie = $$("div", {
  7795. "style": {
  7796. "position": "absolute",
  7797. "bottom": "50px",
  7798. "right": "50px",
  7799. "zIndex": "9999",
  7800. "backgroundColor": "#2268bc",
  7801. "color": "#fff",
  7802. "padding": "12px 20px",
  7803. "cursor": "pointer",
  7804. "borderRadius": "4px",
  7805. },
  7806. "innerHTML": "提交作业"
  7807. })
  7808. let aTool = ''
  7809. let _loading = document.createElement('div')
  7810. _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;"
  7811. // _loading.id = "";
  7812. let _lchild = document.createElement('div')
  7813. let _limg = document.createElement('img')
  7814. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7815. _limg.style = "width: 26px;margin-right: 10px;"
  7816. _lchild.appendChild(_limg)
  7817. let _lspan = document.createElement('span')
  7818. _lspan.innerHTML = "上传中..."
  7819. _lchild.appendChild(_lspan)
  7820. _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%);"
  7821. _loading.appendChild(_lchild)
  7822. let _box = $$('div', {
  7823. "style": {
  7824. "position": "relative",
  7825. "width": "100%",
  7826. "height": "100%",
  7827. },
  7828. })
  7829. _box.appendChild(_loading)
  7830. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7831. switch (str) {
  7832. case "whiteboard":
  7833. aTool = 1;
  7834. _iframe = $$("iframe", {
  7835. "frameborder": "no",
  7836. "border": "0",
  7837. "scrolling ": "no",
  7838. "style": {
  7839. "cssText": "border:0;width:100%;height:100%"
  7840. },
  7841. "src": "https://beta.iwb.cocorobo.cn/"
  7842. })
  7843. _box.appendChild(_iframe);
  7844. _box.appendChild(_jie);
  7845. _formdiv = new U.UF.UI.form(
  7846. "电子白板",
  7847. _box, {
  7848. "id": "whiteboard" + cid + stage + task + tool,
  7849. "style": {
  7850. "width": "90%",
  7851. "height": "90%",
  7852. "overflow": 'hidden'
  7853. },
  7854. "onresize": function () { }
  7855. }, {
  7856. closecallback: function () { }
  7857. }, {
  7858. "style": {
  7859. "height": "36px"
  7860. }
  7861. }).form; //创建窗体
  7862. _taskbar = {
  7863. "id": str + _formdiv.id,
  7864. "style": {
  7865. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7866. },
  7867. "name": "电子白板",
  7868. "forms": _formdiv,
  7869. "click": function () {
  7870. U.MD.D.I.openApplication(str, obj, info);
  7871. }
  7872. }
  7873. break;
  7874. case "mind":
  7875. aTool = 3;
  7876. _iframe = $$("iframe", {
  7877. "frameborder": "no",
  7878. "border": "0",
  7879. "scrolling ": "no",
  7880. "style": {
  7881. "cssText": "border:0;width:100%;height:100%"
  7882. },
  7883. "src": "/kityminder-editor/dist/index.html"
  7884. })
  7885. _box.appendChild(_iframe);
  7886. _box.appendChild(_jie);
  7887. _formdiv = new U.UF.UI.form(
  7888. "思维导图",
  7889. _box, { //"/jsmind/example/demo.html"
  7890. "id": "mind" + cid + stage + task + tool,
  7891. "style": {
  7892. "width": "90%",
  7893. "height": "90%",
  7894. "overflow": 'hidden'
  7895. },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, {
  7900. "style": {
  7901. "height": "36px"
  7902. }
  7903. }).form; //创建窗体
  7904. _taskbar = {
  7905. "id": str + _formdiv.id,
  7906. "style": {
  7907. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7908. },
  7909. "name": "思维导图",
  7910. "forms": _formdiv,
  7911. "click": function () {
  7912. U.MD.D.I.openApplication(str, obj, info);
  7913. }
  7914. }
  7915. break;
  7916. case "MindMap":
  7917. aTool = 3;
  7918. _iframe = $$("iframe", {
  7919. "frameborder": "no",
  7920. "border": "0",
  7921. "scrolling ": "no",
  7922. "style": {
  7923. "cssText": "border:0;width:100%;height:100%"
  7924. },
  7925. "src": "//cloud.cocorobo.cn/mind/"
  7926. })
  7927. _box.appendChild(_iframe);
  7928. _box.appendChild(_jie);
  7929. _formdiv = new U.UF.UI.form(
  7930. "思维导图",
  7931. _box, { //"/jsmind/example/demo.html"
  7932. "id": "mind" + cid + stage + task + tool,
  7933. "style": {
  7934. "width": "90%",
  7935. "height": "90%",
  7936. "overflow": 'hidden'
  7937. },
  7938. "onresize": function () { }
  7939. }, {
  7940. closecallback: function () { }
  7941. }, {
  7942. "style": {
  7943. "height": "36px"
  7944. }
  7945. }).form; //创建窗体
  7946. _taskbar = {
  7947. "id": str + _formdiv.id,
  7948. "style": {
  7949. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7950. },
  7951. "name": "思维导图",
  7952. "forms": _formdiv,
  7953. "click": function () {
  7954. U.MD.D.I.openApplication(str, obj, info);
  7955. }
  7956. }
  7957. break;
  7958. case "doc":
  7959. aTool = 6;
  7960. _iframe = $$("iframe", {
  7961. "frameborder": "no",
  7962. "border": "0",
  7963. "scrolling ": "no",
  7964. "style": {
  7965. "cssText": "border:0;width:100%;height:100%"
  7966. },
  7967. "src": "/Office/Word/WordEditArea.htm"
  7968. })
  7969. _box.appendChild(_iframe);
  7970. _box.appendChild(_jie);
  7971. _formdiv = new U.UF.UI.form(
  7972. "协同文档",
  7973. _box, {
  7974. "id": "doc" + cid + stage + task + tool,
  7975. "style": {
  7976. "width": "90%",
  7977. "height": "90%",
  7978. "overflow": 'hidden'
  7979. },
  7980. "onresize": function () { }
  7981. }, {
  7982. closecallback: function () { }
  7983. }, {
  7984. "style": {
  7985. "height": "36px"
  7986. }
  7987. }).form; //创建窗体
  7988. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7989. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7990. })
  7991. _taskbar = {
  7992. "id": str + _formdiv.id,
  7993. "style": {
  7994. "backgroundImage": "url(/img/icon/doc.png)"
  7995. },
  7996. "name": "协同文档",
  7997. "forms": _formdiv,
  7998. "click": function () {
  7999. U.MD.D.I.openApplication(str, obj, info);
  8000. }
  8001. }
  8002. break;
  8003. case "mindNetwork": //好友打开
  8004. aTool = 7;
  8005. _iframe = $$("iframe", {
  8006. "webkitallowfullscreen": "",
  8007. "mozallowfullscreen": "",
  8008. "allowfullscreen": "",
  8009. "frameborder": "no",
  8010. "border": "0",
  8011. "scrolling ": "no",
  8012. "style": {
  8013. "cssText": "border:0; width:100%; height:100%;"
  8014. },
  8015. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8016. })
  8017. _box.appendChild(_iframe);
  8018. _box.appendChild(_jie);
  8019. _formdiv = new U.UF.UI.form(
  8020. "思维网格",
  8021. _box, {
  8022. "id": "mindNetwork" + cid + stage + task + tool,
  8023. "style": {
  8024. "width": "90%",
  8025. "height": "90%",
  8026. "overflow": 'hidden'
  8027. },
  8028. "onresize": function () { }
  8029. }, {
  8030. closecallback: function () { }
  8031. }, {
  8032. "style": {
  8033. "height": "36px"
  8034. }
  8035. }).form; //创建窗体
  8036. _taskbar = {
  8037. "id": str + _formdiv.id,
  8038. "style": {
  8039. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8040. },
  8041. "name": "思维网格",
  8042. "forms": _formdiv,
  8043. "click": function () {
  8044. U.MD.D.I.openApplication(str, obj, info);
  8045. }
  8046. }
  8047. break;
  8048. case "courseDesign":
  8049. _iframe = $$("iframe", {
  8050. "webkitallowfullscreen": "",
  8051. "mozallowfullscreen": "",
  8052. "allowfullscreen": "",
  8053. "frameborder": "no",
  8054. "border": "0",
  8055. "scrolling ": "no",
  8056. "style": {
  8057. "cssText": "border:0; width:100%; height:100%;"
  8058. },
  8059. "src": "/course-design-vue"
  8060. })
  8061. _box.appendChild(_iframe);
  8062. _box.appendChild(_jie);
  8063. _formdiv = new U.UF.UI.form(
  8064. "项目设计",
  8065. _box, {
  8066. "id": "courseDesign" + cid + stage + task + tool,
  8067. "style": {
  8068. "width": "90%",
  8069. "height": "90%",
  8070. "overflow": 'hidden'
  8071. },
  8072. "onresize": function () { }
  8073. }, {
  8074. closecallback: function () { }
  8075. }, {
  8076. "style": {
  8077. "height": "36px"
  8078. }
  8079. }).form; //创建窗体
  8080. _taskbar = {
  8081. "id": str + _formdiv.id,
  8082. "style": {
  8083. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8084. },
  8085. "name": "项目设计",
  8086. "forms": _formdiv,
  8087. "click": function () {
  8088. U.MD.D.I.openApplication(str, obj, info);
  8089. }
  8090. }
  8091. break;
  8092. }
  8093. const script1 = document.createElement("script");
  8094. script1.type = "text/javascript";
  8095. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8096. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8097. const script2 = document.createElement("script");
  8098. script2.type = "text/javascript";
  8099. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8100. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8101. const script3 = document.createElement("script");
  8102. script3.type = "text/javascript";
  8103. script3.charset = "UTF-8";
  8104. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8105. const script4 = document.createElement("script");
  8106. script4.type = "text/javascript";
  8107. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8108. script4.src = window.origin + "/js/Common/jietu2E.js";
  8109. if (_iframe) {
  8110. if (str == 'doc') {
  8111. _iframe = _formdiv.querySelector('iframe')
  8112. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8113. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8114. _iframe.contentWindow.document.body.appendChild(script1);
  8115. _iframe.contentWindow.document.body.appendChild(script2);
  8116. // _iframe.contentWindow.document.body.appendChild(script3);
  8117. _iframe.contentWindow.document.body.appendChild(script4);
  8118. })
  8119. if (onloadListener) {
  8120. _iframe.contentDocument.location.reload()
  8121. } else {
  8122. _iframe.contentDocument.location.reload()
  8123. }
  8124. } else if (str == 'courseDesign') {
  8125. U.UF.DL.iframeLoad(_iframe, function () {
  8126. // _iframe.contentWindow.U.MD.O.W.load();
  8127. // _iframe.contentWindow.document.body.appendChild(script1);
  8128. _iframe.contentWindow.document.body.appendChild(script2);
  8129. _iframe.contentWindow.document.body.appendChild(script4);
  8130. })
  8131. } else if (str == 'mind') {
  8132. _iframe = _formdiv.querySelector('iframe')
  8133. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8134. //
  8135. _iframe.contentWindow.document.body.appendChild(script1);
  8136. _iframe.contentWindow.document.body.appendChild(script2);
  8137. _iframe.contentWindow.document.body.appendChild(script4);
  8138. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8139. })
  8140. if (onloadListener) {
  8141. _iframe.contentDocument.location.reload()
  8142. } else {
  8143. _iframe.contentDocument.location.reload()
  8144. }
  8145. } else if (str == 'whiteboard') {
  8146. _iframe = _formdiv.querySelector('iframe')
  8147. let onloadListener = _iframe.onload = () => {
  8148. _iframe.contentWindow.document.body.appendChild(script1);
  8149. _iframe.contentWindow.document.body.appendChild(script2);
  8150. _iframe.contentWindow.document.body.appendChild(script4);
  8151. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8152. };
  8153. // if (onloadListener) {
  8154. // try {
  8155. // _iframe.src += "?cocorobo="+new Date().getTime()
  8156. // _iframe.contentWindow.document.location.reload()
  8157. // } catch (error) {
  8158. // }
  8159. // } else {
  8160. // _iframe.contentDocument.location.reload()
  8161. // }
  8162. } else {
  8163. _iframe.onload = () => {
  8164. _iframe.contentWindow.document.body.appendChild(script1);
  8165. _iframe.contentWindow.document.body.appendChild(script2);
  8166. // _iframe.contentWindow.document.body.appendChild(script3);
  8167. _iframe.contentWindow.document.body.appendChild(script4);
  8168. };
  8169. }
  8170. _jie.onclick = async () => {
  8171. let text = ''
  8172. if (aTool == 1) {
  8173. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8174. } else if (aTool == 6) {
  8175. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8176. } else if (aTool == 3) {
  8177. text = await U.MD.D.I.getEditorContent(_iframe);
  8178. }
  8179. _loading.style.display = 'flex'
  8180. console.log(_loading);
  8181. var _ajs = _iframe.contentWindow.document.createElement("script");
  8182. _ajs.type = "text/javascript";
  8183. _ajs.innerHTML =
  8184. // 'console.log(' + _loading + ');\n' +
  8185. 'var _js = document.createElement("script");\n' +
  8186. '_js.type="text/javascript";\n' +
  8187. '_js.charset="UTF-8";\n' +
  8188. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8189. "_js.onload = function(){\n" +
  8190. ' var a = document.getElementsByTagName("img")\n' +
  8191. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8192. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8193. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8194. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8195. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8196. "beforeUpload_shishi(file," +
  8197. "'" +
  8198. _userid +
  8199. "'" +
  8200. ", " +
  8201. "'" +
  8202. _cid +
  8203. "'" +
  8204. ", " +
  8205. "'" +
  8206. _stage +
  8207. "'" +
  8208. ", " +
  8209. "'" +
  8210. _task +
  8211. "'" +
  8212. ", " +
  8213. "'" +
  8214. _tool +
  8215. "'" +
  8216. ", " +
  8217. "'" +
  8218. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8219. "'" +
  8220. ", " +
  8221. "'" +
  8222. aTool +
  8223. "'" +
  8224. ", " +
  8225. "`" +
  8226. text +
  8227. "`" +
  8228. ")\n" +
  8229. " });\n" +
  8230. "}\n" +
  8231. "document.head.appendChild(_js);\n";
  8232. _iframe.contentWindow.document.head.appendChild(_ajs);
  8233. }
  8234. }
  8235. //U.MD.D.I.openClick(str);
  8236. //如果有任务栏信息
  8237. // if (_taskbar) {
  8238. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8239. // }
  8240. }
  8241. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8242. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8243. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8244. _userid = student.userid, //登录用户id
  8245. _username = student.student //用户名字
  8246. let _iframe;
  8247. let _cid = cid,
  8248. _stage = stage,
  8249. _task = task,
  8250. _tool = tool;
  8251. var _jie = $$("div", {
  8252. "style": {
  8253. "position": "absolute",
  8254. "bottom": "50px",
  8255. "right": "50px",
  8256. "zIndex": "9999",
  8257. "backgroundColor": "#2268bc",
  8258. "color": "#fff",
  8259. "padding": "12px 20px",
  8260. "cursor": "pointer",
  8261. "borderRadius": "4px",
  8262. },
  8263. "innerHTML": "提交作业"
  8264. })
  8265. let aTool = ''
  8266. let _loading = document.createElement('div')
  8267. _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;"
  8268. // _loading.id = "";
  8269. let _lchild = document.createElement('div')
  8270. let _limg = document.createElement('img')
  8271. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8272. _limg.style = "width: 26px;margin-right: 10px;"
  8273. _lchild.appendChild(_limg)
  8274. let _lspan = document.createElement('span')
  8275. _lspan.innerHTML = "上传中..."
  8276. _lchild.appendChild(_lspan)
  8277. _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%);"
  8278. _loading.appendChild(_lchild)
  8279. var _box = $$('div', {
  8280. "style": {
  8281. "position": "relative",
  8282. "width": "100%",
  8283. "height": "100%",
  8284. },
  8285. })
  8286. _box.appendChild(_loading)
  8287. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8288. switch (str) {
  8289. case "whiteboard":
  8290. aTool = 1;
  8291. _iframe = $$("iframe", {
  8292. "frameborder": "no",
  8293. "border": "0",
  8294. "scrolling ": "no",
  8295. "style": {
  8296. "cssText": "border:0;width:100%;height:100%"
  8297. },
  8298. "src": "https://beta.iwb.cocorobo.cn/"
  8299. })
  8300. _box.appendChild(_iframe);
  8301. _box.appendChild(_jie);
  8302. _formdiv = new U.UF.UI.form(
  8303. "电子白板-" + _username,
  8304. _box, {
  8305. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8306. "style": {
  8307. "width": "90%",
  8308. "height": "90%",
  8309. "overflow": 'hidden'
  8310. },
  8311. "onresize": function () { }
  8312. }, {
  8313. closecallback: function () { }
  8314. }, {
  8315. "style": {
  8316. "height": "36px"
  8317. }
  8318. }).form; //创建窗体
  8319. _taskbar = {
  8320. "id": str + _formdiv.id,
  8321. "style": {
  8322. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8323. },
  8324. "name": "电子白板",
  8325. "forms": _formdiv,
  8326. "click": function () {
  8327. U.MD.D.I.openApplication(str, obj, info);
  8328. }
  8329. }
  8330. break;
  8331. case "mind":
  8332. aTool = 3;
  8333. _iframe = $$("iframe", {
  8334. "frameborder": "no",
  8335. "border": "0",
  8336. "scrolling ": "no",
  8337. "style": {
  8338. "cssText": "border:0;width:100%;height:100%"
  8339. },
  8340. "src": "/kityminder-editor/dist/index.html"
  8341. })
  8342. _box.appendChild(_iframe);
  8343. _box.appendChild(_jie);
  8344. _formdiv = new U.UF.UI.form(
  8345. "思维导图-" + _username,
  8346. _box, { //"/jsmind/example/demo.html"
  8347. "id": "mind" + cid + stage + task + tool + _userid,
  8348. "style": {
  8349. "width": "90%",
  8350. "height": "90%",
  8351. "overflow": 'hidden'
  8352. },
  8353. "onresize": function () { }
  8354. }, {
  8355. closecallback: function () { }
  8356. }, {
  8357. "style": {
  8358. "height": "36px"
  8359. }
  8360. }).form; //创建窗体
  8361. _taskbar = {
  8362. "id": str + _formdiv.id,
  8363. "style": {
  8364. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8365. },
  8366. "name": "思维导图",
  8367. "forms": _formdiv,
  8368. "click": function () {
  8369. U.MD.D.I.openApplication(str, obj, info);
  8370. }
  8371. }
  8372. break;
  8373. case "MindMap":
  8374. aTool = 3;
  8375. _iframe = $$("iframe", {
  8376. "frameborder": "no",
  8377. "border": "0",
  8378. "scrolling ": "no",
  8379. "style": {
  8380. "cssText": "border:0;width:100%;height:100%"
  8381. },
  8382. "src": "//cloud.cocorobo.cn/mind/"
  8383. })
  8384. _box.appendChild(_iframe);
  8385. _box.appendChild(_jie);
  8386. _formdiv = new U.UF.UI.form(
  8387. "思维导图-" + _username,
  8388. _box, { //"/jsmind/example/demo.html"
  8389. "id": "mind" + cid + stage + task + tool + _userid,
  8390. "style": {
  8391. "width": "90%",
  8392. "height": "90%",
  8393. "overflow": 'hidden'
  8394. },
  8395. "onresize": function () { }
  8396. }, {
  8397. closecallback: function () { }
  8398. }, {
  8399. "style": {
  8400. "height": "36px"
  8401. }
  8402. }).form; //创建窗体
  8403. _taskbar = {
  8404. "id": str + _formdiv.id,
  8405. "style": {
  8406. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8407. },
  8408. "name": "思维导图",
  8409. "forms": _formdiv,
  8410. "click": function () {
  8411. U.MD.D.I.openApplication(str, obj, info);
  8412. }
  8413. }
  8414. break;
  8415. case "doc":
  8416. aTool = 6;
  8417. _iframe = $$("iframe", {
  8418. "frameborder": "no",
  8419. "border": "0",
  8420. "scrolling ": "no",
  8421. "style": {
  8422. "cssText": "border:0;width:100%;height:100%"
  8423. },
  8424. "src": "/Office/Word/WordEditArea.htm"
  8425. })
  8426. _box.appendChild(_iframe);
  8427. _box.appendChild(_jie);
  8428. _formdiv = new U.UF.UI.form(
  8429. "协同文档-" + _username,
  8430. _box, {
  8431. "id": "doc" + cid + stage + task + tool + _userid,
  8432. "style": {
  8433. "width": "90%",
  8434. "height": "90%",
  8435. "overflow": 'hidden'
  8436. },
  8437. "onresize": function () { }
  8438. }, {
  8439. closecallback: function () { }
  8440. }, {
  8441. "style": {
  8442. "height": "36px"
  8443. }
  8444. }).form; //创建窗体
  8445. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8446. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8447. })
  8448. _taskbar = {
  8449. "id": str + _formdiv.id,
  8450. "style": {
  8451. "backgroundImage": "url(/img/icon/doc.png)"
  8452. },
  8453. "name": "协同文档",
  8454. "forms": _formdiv,
  8455. "click": function () {
  8456. U.MD.D.I.openApplication(str, obj, info);
  8457. }
  8458. }
  8459. break;
  8460. case "mindNetwork": //好友打开
  8461. aTool = 7;
  8462. _iframe = $$("iframe", {
  8463. "webkitallowfullscreen": "",
  8464. "mozallowfullscreen": "",
  8465. "allowfullscreen": "",
  8466. "frameborder": "no",
  8467. "border": "0",
  8468. "scrolling ": "no",
  8469. "style": {
  8470. "cssText": "border:0; width:100%; height:100%;"
  8471. },
  8472. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8473. })
  8474. _box.appendChild(_iframe);
  8475. _box.appendChild(_jie);
  8476. _formdiv = new U.UF.UI.form(
  8477. "思维网格-" + _username,
  8478. _box, {
  8479. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8480. "style": {
  8481. "width": "90%",
  8482. "height": "90%",
  8483. "overflow": 'hidden'
  8484. },
  8485. "onresize": function () { }
  8486. }, {
  8487. closecallback: function () { }
  8488. }, {
  8489. "style": {
  8490. "height": "36px"
  8491. }
  8492. }).form; //创建窗体
  8493. _taskbar = {
  8494. "id": str + _formdiv.id,
  8495. "style": {
  8496. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8497. },
  8498. "name": "思维网格",
  8499. "forms": _formdiv,
  8500. "click": function () {
  8501. U.MD.D.I.openApplication(str, obj, info);
  8502. }
  8503. }
  8504. break;
  8505. case "courseDesign":
  8506. _iframe = $$("iframe", {
  8507. "webkitallowfullscreen": "",
  8508. "mozallowfullscreen": "",
  8509. "allowfullscreen": "",
  8510. "frameborder": "no",
  8511. "border": "0",
  8512. "scrolling ": "no",
  8513. "style": {
  8514. "cssText": "border:0; width:100%; height:100%;"
  8515. },
  8516. "src": "/course-design-vue"
  8517. })
  8518. _box.appendChild(_iframe);
  8519. _box.appendChild(_jie);
  8520. _formdiv = new U.UF.UI.form(
  8521. "项目设计-" + _username,
  8522. _box, {
  8523. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8524. "style": {
  8525. "width": "90%",
  8526. "height": "90%",
  8527. "overflow": 'hidden'
  8528. },
  8529. "onresize": function () { }
  8530. }, {
  8531. closecallback: function () { }
  8532. }, {
  8533. "style": {
  8534. "height": "36px"
  8535. }
  8536. }).form; //创建窗体
  8537. _taskbar = {
  8538. "id": str + _formdiv.id,
  8539. "style": {
  8540. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8541. },
  8542. "name": "项目设计",
  8543. "forms": _formdiv,
  8544. "click": function () {
  8545. U.MD.D.I.openApplication(str, obj, info);
  8546. }
  8547. }
  8548. break;
  8549. }
  8550. const script1 = document.createElement("script");
  8551. script1.type = "text/javascript";
  8552. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8553. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8554. const script2 = document.createElement("script");
  8555. script2.type = "text/javascript";
  8556. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8557. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8558. const script3 = document.createElement("script");
  8559. script3.type = "text/javascript";
  8560. script3.charset = "UTF-8";
  8561. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8562. const script4 = document.createElement("script");
  8563. script4.type = "text/javascript";
  8564. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8565. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8566. if (_iframe) {
  8567. if (str == 'doc') {
  8568. _iframe = _formdiv.querySelector('iframe')
  8569. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8570. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8571. _iframe.contentWindow.document.body.appendChild(script1);
  8572. _iframe.contentWindow.document.body.appendChild(script2);
  8573. // _iframe.contentWindow.document.body.appendChild(script3);
  8574. _iframe.contentWindow.document.body.appendChild(script4);
  8575. })
  8576. if (onloadListener) {
  8577. _iframe.contentDocument.location.reload()
  8578. } else {
  8579. _iframe.contentDocument.location.reload()
  8580. }
  8581. } else if (str == 'courseDesign') {
  8582. U.UF.DL.iframeLoad(_iframe, function () {
  8583. // _iframe.contentWindow.U.MD.O.W.load();
  8584. // _iframe.contentWindow.document.body.appendChild(script1);
  8585. _iframe.contentWindow.document.body.appendChild(script2);
  8586. _iframe.contentWindow.document.body.appendChild(script4);
  8587. })
  8588. } else if (str == 'mind') {
  8589. _iframe = _formdiv.querySelector('iframe')
  8590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8591. //
  8592. _iframe.contentWindow.document.body.appendChild(script1);
  8593. _iframe.contentWindow.document.body.appendChild(script2);
  8594. _iframe.contentWindow.document.body.appendChild(script4);
  8595. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8596. })
  8597. if (onloadListener) {
  8598. _iframe.contentDocument.location.reload()
  8599. } else {
  8600. _iframe.contentDocument.location.reload()
  8601. }
  8602. } else if (str == 'whiteboard') {
  8603. _iframe = _formdiv.querySelector('iframe')
  8604. let onloadListener = _iframe.onload = () => {
  8605. _iframe.contentWindow.document.body.appendChild(script1);
  8606. _iframe.contentWindow.document.body.appendChild(script2);
  8607. _iframe.contentWindow.document.body.appendChild(script4);
  8608. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8609. };
  8610. // if (onloadListener) {
  8611. // try {
  8612. // _iframe.src += "?cocorobo="+new Date().getTime()
  8613. // _iframe.contentWindow.document.location.reload()
  8614. // } catch (error) {
  8615. // }
  8616. // } else {
  8617. // _iframe.contentDocument.location.reload()
  8618. // }
  8619. } else {
  8620. _iframe.onload = () => {
  8621. _iframe.contentWindow.document.body.appendChild(script1);
  8622. _iframe.contentWindow.document.body.appendChild(script2);
  8623. // _iframe.contentWindow.document.body.appendChild(script3);
  8624. _iframe.contentWindow.document.body.appendChild(script4);
  8625. };
  8626. }
  8627. _jie.onclick = async () => {
  8628. let text = ''
  8629. if (aTool == 1) {
  8630. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8631. } else if (aTool == 6) {
  8632. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8633. } else if (aTool == 3) {
  8634. text = await U.MD.D.I.getEditorContent(_iframe);
  8635. }
  8636. _loading.style.display = 'flex'
  8637. console.log(_loading);
  8638. var _ajs = _iframe.contentWindow.document.createElement("script");
  8639. _ajs.type = "text/javascript";
  8640. _ajs.innerHTML =
  8641. // 'console.log(' + _loading + ');\n' +
  8642. 'var _js = document.createElement("script");\n' +
  8643. '_js.type="text/javascript";\n' +
  8644. '_js.charset="UTF-8";\n' +
  8645. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8646. "_js.onload = function(){\n" +
  8647. ' var a = document.getElementsByTagName("img")\n' +
  8648. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8649. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8650. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8651. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8652. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8653. "beforeUpload_shishi(file," +
  8654. "'" +
  8655. _userid +
  8656. "'" +
  8657. ", " +
  8658. "'" +
  8659. _cid +
  8660. "'" +
  8661. ", " +
  8662. "'" +
  8663. _stage +
  8664. "'" +
  8665. ", " +
  8666. "'" +
  8667. _task +
  8668. "'" +
  8669. ", " +
  8670. "'" +
  8671. _tool +
  8672. "'" +
  8673. ", " +
  8674. "'" +
  8675. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8676. "'" +
  8677. ", " +
  8678. "'" +
  8679. aTool +
  8680. "'" +
  8681. ", " +
  8682. "`" +
  8683. text +
  8684. "`" +
  8685. ")\n" +
  8686. " });\n" +
  8687. "}\n" +
  8688. "document.head.appendChild(_js);\n";
  8689. _iframe.contentWindow.document.head.appendChild(_ajs);
  8690. }
  8691. }
  8692. }
  8693. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8694. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8695. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8696. _userid = student.userid, //登录用户id
  8697. _username = student.student //用户名字
  8698. let _iframe;
  8699. let _cid = cid,
  8700. _stage = stage,
  8701. _task = task,
  8702. _tool = tool;
  8703. var _jie = $$("div", {
  8704. "style": {
  8705. "position": "absolute",
  8706. "bottom": "50px",
  8707. "right": "50px",
  8708. "zIndex": "9999",
  8709. "backgroundColor": "#2268bc",
  8710. "color": "#fff",
  8711. "padding": "12px 20px",
  8712. "cursor": "pointer",
  8713. "borderRadius": "4px",
  8714. },
  8715. "innerHTML": "提交作业"
  8716. })
  8717. let aTool = ''
  8718. let _loading = document.createElement('div')
  8719. _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;"
  8720. // _loading.id = "";
  8721. let _lchild = document.createElement('div')
  8722. let _limg = document.createElement('img')
  8723. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8724. _limg.style = "width: 26px;margin-right: 10px;"
  8725. _lchild.appendChild(_limg)
  8726. let _lspan = document.createElement('span')
  8727. _lspan.innerHTML = "上传中..."
  8728. _lchild.appendChild(_lspan)
  8729. _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%);"
  8730. _loading.appendChild(_lchild)
  8731. var _box = $$('div', {
  8732. "style": {
  8733. "position": "relative",
  8734. "width": "100%",
  8735. "height": "100%",
  8736. },
  8737. })
  8738. _box.appendChild(_loading)
  8739. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8740. switch (str) {
  8741. case "whiteboard":
  8742. aTool = 1;
  8743. _iframe = $$("iframe", {
  8744. "frameborder": "no",
  8745. "border": "0",
  8746. "scrolling ": "no",
  8747. "style": {
  8748. "cssText": "border:0;width:100%;height:100%"
  8749. },
  8750. "src": "https://beta.iwb.cocorobo.cn/"
  8751. })
  8752. _box.appendChild(_iframe);
  8753. _box.appendChild(_jie);
  8754. _formdiv = new U.UF.UI.form(
  8755. "电子白板-" + _username,
  8756. _box, {
  8757. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8758. "style": {
  8759. "width": "90%",
  8760. "height": "90%",
  8761. "overflow": 'hidden'
  8762. },
  8763. "onresize": function () { }
  8764. }, {
  8765. closecallback: function () { }
  8766. }, {
  8767. "style": {
  8768. "height": "36px"
  8769. }
  8770. }).form; //创建窗体
  8771. _taskbar = {
  8772. "id": str + _formdiv.id,
  8773. "style": {
  8774. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8775. },
  8776. "name": "电子白板",
  8777. "forms": _formdiv,
  8778. "click": function () {
  8779. U.MD.D.I.openApplication(str, obj, info);
  8780. }
  8781. }
  8782. break;
  8783. case "mind":
  8784. aTool = 3;
  8785. _iframe = $$("iframe", {
  8786. "frameborder": "no",
  8787. "border": "0",
  8788. "scrolling ": "no",
  8789. "style": {
  8790. "cssText": "border:0;width:100%;height:100%"
  8791. },
  8792. "src": "/kityminder-editor/dist/index.html"
  8793. })
  8794. _box.appendChild(_iframe);
  8795. _box.appendChild(_jie);
  8796. _formdiv = new U.UF.UI.form(
  8797. "思维导图-" + _username,
  8798. _box, { //"/jsmind/example/demo.html"
  8799. "id": "mind" + cid + stage + task + tool + _userid,
  8800. "style": {
  8801. "width": "90%",
  8802. "height": "90%",
  8803. "overflow": 'hidden'
  8804. },
  8805. "onresize": function () { }
  8806. }, {
  8807. closecallback: function () { }
  8808. }, {
  8809. "style": {
  8810. "height": "36px"
  8811. }
  8812. }).form; //创建窗体
  8813. _taskbar = {
  8814. "id": str + _formdiv.id,
  8815. "style": {
  8816. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8817. },
  8818. "name": "思维导图",
  8819. "forms": _formdiv,
  8820. "click": function () {
  8821. U.MD.D.I.openApplication(str, obj, info);
  8822. }
  8823. }
  8824. break;
  8825. case "MindMap":
  8826. aTool = 3;
  8827. _iframe = $$("iframe", {
  8828. "frameborder": "no",
  8829. "border": "0",
  8830. "scrolling ": "no",
  8831. "style": {
  8832. "cssText": "border:0;width:100%;height:100%"
  8833. },
  8834. "src": "//cloud.cocorobo.cn/mind/"
  8835. })
  8836. _box.appendChild(_iframe);
  8837. _box.appendChild(_jie);
  8838. _formdiv = new U.UF.UI.form(
  8839. "思维导图-" + _username,
  8840. _box, { //"/jsmind/example/demo.html"
  8841. "id": "mind" + cid + stage + task + tool + _userid,
  8842. "style": {
  8843. "width": "90%",
  8844. "height": "90%",
  8845. "overflow": 'hidden'
  8846. },
  8847. "onresize": function () { }
  8848. }, {
  8849. closecallback: function () { }
  8850. }, {
  8851. "style": {
  8852. "height": "36px"
  8853. }
  8854. }).form; //创建窗体
  8855. _taskbar = {
  8856. "id": str + _formdiv.id,
  8857. "style": {
  8858. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8859. },
  8860. "name": "思维导图",
  8861. "forms": _formdiv,
  8862. "click": function () {
  8863. U.MD.D.I.openApplication(str, obj, info);
  8864. }
  8865. }
  8866. break;
  8867. case "doc":
  8868. aTool = 6;
  8869. _iframe = $$("iframe", {
  8870. "frameborder": "no",
  8871. "border": "0",
  8872. "scrolling ": "no",
  8873. "style": {
  8874. "cssText": "border:0;width:100%;height:100%"
  8875. },
  8876. "src": "/Office/Word/WordEditArea.htm"
  8877. })
  8878. _box.appendChild(_iframe);
  8879. _box.appendChild(_jie);
  8880. _formdiv = new U.UF.UI.form(
  8881. "协同文档-" + _username,
  8882. _box, {
  8883. "id": "doc" + cid + stage + task + tool + _userid,
  8884. "style": {
  8885. "width": "90%",
  8886. "height": "90%",
  8887. "overflow": 'hidden'
  8888. },
  8889. "onresize": function () { }
  8890. }, {
  8891. closecallback: function () { }
  8892. }, {
  8893. "style": {
  8894. "height": "36px"
  8895. }
  8896. }).form; //创建窗体
  8897. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8898. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8899. })
  8900. _taskbar = {
  8901. "id": str + _formdiv.id,
  8902. "style": {
  8903. "backgroundImage": "url(/img/icon/doc.png)"
  8904. },
  8905. "name": "协同文档",
  8906. "forms": _formdiv,
  8907. "click": function () {
  8908. U.MD.D.I.openApplication(str, obj, info);
  8909. }
  8910. }
  8911. break;
  8912. case "mindNetwork": //好友打开
  8913. aTool = 7;
  8914. _iframe = $$("iframe", {
  8915. "webkitallowfullscreen": "",
  8916. "mozallowfullscreen": "",
  8917. "allowfullscreen": "",
  8918. "frameborder": "no",
  8919. "border": "0",
  8920. "scrolling ": "no",
  8921. "style": {
  8922. "cssText": "border:0; width:100%; height:100%;"
  8923. },
  8924. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8925. })
  8926. _box.appendChild(_iframe);
  8927. _box.appendChild(_jie);
  8928. _formdiv = new U.UF.UI.form(
  8929. "思维网格-" + _username,
  8930. _box, {
  8931. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8932. "style": {
  8933. "width": "90%",
  8934. "height": "90%",
  8935. "overflow": 'hidden'
  8936. },
  8937. "onresize": function () { }
  8938. }, {
  8939. closecallback: function () { }
  8940. }, {
  8941. "style": {
  8942. "height": "36px"
  8943. }
  8944. }).form; //创建窗体
  8945. _taskbar = {
  8946. "id": str + _formdiv.id,
  8947. "style": {
  8948. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8949. },
  8950. "name": "思维网格",
  8951. "forms": _formdiv,
  8952. "click": function () {
  8953. U.MD.D.I.openApplication(str, obj, info);
  8954. }
  8955. }
  8956. break;
  8957. case "courseDesign":
  8958. _iframe = $$("iframe", {
  8959. "webkitallowfullscreen": "",
  8960. "mozallowfullscreen": "",
  8961. "allowfullscreen": "",
  8962. "frameborder": "no",
  8963. "border": "0",
  8964. "scrolling ": "no",
  8965. "style": {
  8966. "cssText": "border:0; width:100%; height:100%;"
  8967. },
  8968. "src": "/course-design-vue"
  8969. })
  8970. _box.appendChild(_iframe);
  8971. _box.appendChild(_jie);
  8972. _formdiv = new U.UF.UI.form(
  8973. "项目设计-" + _username,
  8974. _box, {
  8975. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8976. "style": {
  8977. "width": "90%",
  8978. "height": "90%",
  8979. "overflow": 'hidden'
  8980. },
  8981. "onresize": function () { }
  8982. }, {
  8983. closecallback: function () { }
  8984. }, {
  8985. "style": {
  8986. "height": "36px"
  8987. }
  8988. }).form; //创建窗体
  8989. _taskbar = {
  8990. "id": str + _formdiv.id,
  8991. "style": {
  8992. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8993. },
  8994. "name": "项目设计",
  8995. "forms": _formdiv,
  8996. "click": function () {
  8997. U.MD.D.I.openApplication(str, obj, info);
  8998. }
  8999. }
  9000. break;
  9001. }
  9002. const script1 = document.createElement("script");
  9003. script1.type = "text/javascript";
  9004. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9005. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9006. const script2 = document.createElement("script");
  9007. script2.type = "text/javascript";
  9008. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9009. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9010. const script3 = document.createElement("script");
  9011. script3.type = "text/javascript";
  9012. script3.charset = "UTF-8";
  9013. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9014. const script4 = document.createElement("script");
  9015. script4.type = "text/javascript";
  9016. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9017. script4.src = window.origin + "/js/Common/jietu2E.js";
  9018. if (_iframe) {
  9019. if (str == 'doc') {
  9020. _iframe = _formdiv.querySelector('iframe')
  9021. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9022. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9023. _iframe.contentWindow.document.body.appendChild(script1);
  9024. _iframe.contentWindow.document.body.appendChild(script2);
  9025. // _iframe.contentWindow.document.body.appendChild(script3);
  9026. _iframe.contentWindow.document.body.appendChild(script4);
  9027. })
  9028. if (onloadListener) {
  9029. _iframe.contentDocument.location.reload()
  9030. } else {
  9031. _iframe.contentDocument.location.reload()
  9032. }
  9033. } else if (str == 'courseDesign') {
  9034. U.UF.DL.iframeLoad(_iframe, function () {
  9035. // _iframe.contentWindow.U.MD.O.W.load();
  9036. // _iframe.contentWindow.document.body.appendChild(script1);
  9037. _iframe.contentWindow.document.body.appendChild(script2);
  9038. _iframe.contentWindow.document.body.appendChild(script4);
  9039. })
  9040. } else if (str == 'mind') {
  9041. _iframe = _formdiv.querySelector('iframe')
  9042. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9043. //
  9044. _iframe.contentWindow.document.body.appendChild(script1);
  9045. _iframe.contentWindow.document.body.appendChild(script2);
  9046. _iframe.contentWindow.document.body.appendChild(script4);
  9047. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9048. })
  9049. if (onloadListener) {
  9050. _iframe.contentDocument.location.reload()
  9051. } else {
  9052. _iframe.contentDocument.location.reload()
  9053. }
  9054. } else if (str == 'whiteboard') {
  9055. _iframe = _formdiv.querySelector('iframe')
  9056. let onloadListener = _iframe.onload = () => {
  9057. _iframe.contentWindow.document.body.appendChild(script1);
  9058. _iframe.contentWindow.document.body.appendChild(script2);
  9059. _iframe.contentWindow.document.body.appendChild(script4);
  9060. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9061. };
  9062. // if (onloadListener) {
  9063. // try {
  9064. // _iframe.src += "?cocorobo="+new Date().getTime()
  9065. // _iframe.contentWindow.document.location.reload()
  9066. // } catch (error) {
  9067. // }
  9068. // } else {
  9069. // _iframe.contentDocument.location.reload()
  9070. // }
  9071. } else {
  9072. _iframe.onload = () => {
  9073. _iframe.contentWindow.document.body.appendChild(script1);
  9074. _iframe.contentWindow.document.body.appendChild(script2);
  9075. // _iframe.contentWindow.document.body.appendChild(script3);
  9076. _iframe.contentWindow.document.body.appendChild(script4);
  9077. };
  9078. }
  9079. _jie.onclick = async () => {
  9080. let text = ''
  9081. if (aTool == 1) {
  9082. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9083. } else if (aTool == 6) {
  9084. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9085. } else if (aTool == 3) {
  9086. text = await U.MD.D.I.getEditorContent(_iframe);
  9087. }
  9088. _loading.style.display = 'flex'
  9089. console.log(_loading);
  9090. var _ajs = _iframe.contentWindow.document.createElement("script");
  9091. _ajs.type = "text/javascript";
  9092. _ajs.innerHTML =
  9093. // 'console.log(' + _loading + ');\n' +
  9094. 'var _js = document.createElement("script");\n' +
  9095. '_js.type="text/javascript";\n' +
  9096. '_js.charset="UTF-8";\n' +
  9097. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9098. "_js.onload = function(){\n" +
  9099. ' var a = document.getElementsByTagName("img")\n' +
  9100. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9101. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9102. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9103. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9104. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9105. "beforeUpload_shishi(file," +
  9106. "'" +
  9107. _userid +
  9108. "'" +
  9109. ", " +
  9110. "'" +
  9111. _cid +
  9112. "'" +
  9113. ", " +
  9114. "'" +
  9115. _stage +
  9116. "'" +
  9117. ", " +
  9118. "'" +
  9119. _task +
  9120. "'" +
  9121. ", " +
  9122. "'" +
  9123. _tool +
  9124. "'" +
  9125. ", " +
  9126. "'" +
  9127. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9128. "'" +
  9129. ", " +
  9130. "'" +
  9131. aTool +
  9132. "'" +
  9133. ", " +
  9134. "`" +
  9135. text +
  9136. "`" +
  9137. ")\n" +
  9138. " });\n" +
  9139. "}\n" +
  9140. "document.head.appendChild(_js);\n";
  9141. _iframe.contentWindow.document.head.appendChild(_ajs);
  9142. }
  9143. }
  9144. }
  9145. U.MD.D.I.getEditorContent = function (iframe) {
  9146. return new Promise((resolve, reject) => {
  9147. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9148. console.log(content);
  9149. resolve(content)
  9150. });
  9151. });
  9152. }
  9153. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9154. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9155. // if (res.value[0].length > 0) {
  9156. // // resolve(res.value[0][0].text);
  9157. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9158. // $(fileInput).val('');
  9159. // });
  9160. // }
  9161. // }, [], { "type": "GET", "withCredentials": true });
  9162. var xmlhttp;
  9163. var Mac, Sn, DeviceId
  9164. if (window.XMLHttpRequest) {
  9165. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9166. xmlhttp = new XMLHttpRequest();
  9167. } else {
  9168. // IE6, IE5 浏览器执行代码
  9169. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9170. }
  9171. xmlhttp.onreadystatechange = function () {
  9172. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9173. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9174. // resolve(res.value[0][0].text);
  9175. if (type == '2') {
  9176. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9177. } else if (type == '3') {
  9178. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9179. }
  9180. } else {
  9181. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9182. }
  9183. }
  9184. }
  9185. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9186. xmlhttp.send();
  9187. }
  9188. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9189. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9190. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9191. _userinfo = US.userInfo, //登录用户信息
  9192. _userid = US.userInfo.userid //登录用户id
  9193. let _iframe;
  9194. let _cid = cid,
  9195. _stage = stage,
  9196. _task = task,
  9197. _tool = tool;
  9198. var _jie = $$("div", {
  9199. "style": {
  9200. "position": "absolute",
  9201. "bottom": "50px",
  9202. "right": "50px",
  9203. "zIndex": "9999",
  9204. "backgroundColor": "#2268bc",
  9205. "color": "#fff",
  9206. "padding": "12px 20px",
  9207. "cursor": "pointer",
  9208. "borderRadius": "4px",
  9209. },
  9210. "innerHTML": "确认并提交"
  9211. })
  9212. let aTool = ''
  9213. let _loading = document.createElement('div')
  9214. _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;"
  9215. // _loading.id = "";
  9216. let _lchild = document.createElement('div')
  9217. let _limg = document.createElement('img')
  9218. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9219. _limg.style = "width: 26px;margin-right: 10px;"
  9220. _lchild.appendChild(_limg)
  9221. let _lspan = document.createElement('span')
  9222. _lspan.innerHTML = "上传中..."
  9223. _lchild.appendChild(_lspan)
  9224. _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%);"
  9225. _loading.appendChild(_lchild)
  9226. var _box = $$('div', {
  9227. "style": {
  9228. "position": "relative",
  9229. "width": "100%",
  9230. "height": "100%",
  9231. },
  9232. })
  9233. _box.appendChild(_loading)
  9234. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9235. switch (str) {
  9236. case "whiteboard":
  9237. aTool = 1;
  9238. _iframe = $$("iframe", {
  9239. "frameborder": "no",
  9240. "border": "0",
  9241. "scrolling ": "no",
  9242. "style": {
  9243. "cssText": "border:0;width:100%;height:100%"
  9244. },
  9245. "src": "https://beta.iwb.cocorobo.cn/"
  9246. })
  9247. _box.appendChild(_iframe);
  9248. _box.appendChild(_jie);
  9249. _formdiv = new U.UF.UI.form(
  9250. "电子白板",
  9251. _box, {
  9252. "id": "whiteboards" + cid + stage + task + tool,
  9253. "style": {
  9254. "width": "90%",
  9255. "height": "90%",
  9256. "overflow": 'hidden'
  9257. },
  9258. "onresize": function () { }
  9259. }, {
  9260. closecallback: function () { }
  9261. }, {
  9262. "style": {
  9263. "height": "36px"
  9264. }
  9265. }).form; //创建窗体
  9266. _taskbar = {
  9267. "id": str + _formdiv.id,
  9268. "style": {
  9269. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9270. },
  9271. "name": "电子白板",
  9272. "forms": _formdiv,
  9273. "click": function () {
  9274. U.MD.D.I.openApplication(str, obj, info);
  9275. }
  9276. }
  9277. break;
  9278. case "mind":
  9279. aTool = 3;
  9280. _iframe = $$("iframe", {
  9281. "frameborder": "no",
  9282. "border": "0",
  9283. "scrolling ": "no",
  9284. "style": {
  9285. "cssText": "border:0;width:100%;height:100%"
  9286. },
  9287. "src": "/kityminder-editor/dist/index.html"
  9288. });
  9289. _box.appendChild(_iframe);
  9290. _box.appendChild(_jie);
  9291. _formdiv = new U.UF.UI.form(
  9292. "思维导图",
  9293. _box, { //"/jsmind/example/demo.html"
  9294. "id": "minds" + cid + stage + task + tool,
  9295. "style": {
  9296. "width": "90%",
  9297. "height": "90%",
  9298. "overflow": 'hidden'
  9299. },
  9300. "onresize": function () { }
  9301. }, {
  9302. closecallback: function () { }
  9303. }, {
  9304. "style": {
  9305. "height": "36px"
  9306. }
  9307. }).form; //创建窗体
  9308. _taskbar = {
  9309. "id": str + _formdiv.id,
  9310. "style": {
  9311. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9312. },
  9313. "name": "思维导图",
  9314. "forms": _formdiv,
  9315. "click": function () {
  9316. U.MD.D.I.openApplication(str, obj, info);
  9317. }
  9318. }
  9319. break;
  9320. case "doc":
  9321. aTool = 6;
  9322. _iframe = $$("iframe", {
  9323. "frameborder": "no",
  9324. "border": "0",
  9325. "scrolling ": "no",
  9326. "style": {
  9327. "cssText": "border:0;width:100%;height:100%"
  9328. },
  9329. "src": "/Office/Word/WordEditArea.htm"
  9330. })
  9331. _box.appendChild(_iframe);
  9332. _box.appendChild(_jie);
  9333. _formdiv = new U.UF.UI.form(
  9334. "协同文档",
  9335. _box, {
  9336. "id": "docs" + cid + stage + task + tool,
  9337. "style": {
  9338. "width": "90%",
  9339. "height": "90%",
  9340. "overflow": 'hidden'
  9341. },
  9342. "onresize": function () { }
  9343. }, {
  9344. closecallback: function () { }
  9345. }, {
  9346. "style": {
  9347. "height": "36px"
  9348. }
  9349. }).form; //创建窗体
  9350. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9351. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9352. })
  9353. _taskbar = {
  9354. "id": str + _formdiv.id,
  9355. "style": {
  9356. "backgroundImage": "url(/img/icon/doc.png)"
  9357. },
  9358. "name": "协同文档",
  9359. "forms": _formdiv,
  9360. "click": function () {
  9361. U.MD.D.I.openApplication(str, obj, info);
  9362. }
  9363. }
  9364. break;
  9365. }
  9366. const script1 = document.createElement("script");
  9367. script1.type = "text/javascript";
  9368. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9369. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9370. const script2 = document.createElement("script");
  9371. script2.type = "text/javascript";
  9372. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9373. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9374. const script3 = document.createElement("script");
  9375. script3.type = "text/javascript";
  9376. script3.charset = "UTF-8";
  9377. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9378. const script4 = document.createElement("script");
  9379. script4.type = "text/javascript";
  9380. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9381. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9382. if (_iframe) {
  9383. if (str == 'doc') {
  9384. _iframe = _formdiv.querySelector('iframe')
  9385. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9386. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9387. _iframe.contentWindow.document.body.appendChild(script1);
  9388. _iframe.contentWindow.document.body.appendChild(script2);
  9389. // _iframe.contentWindow.document.body.appendChild(script3);
  9390. _iframe.contentWindow.document.body.appendChild(script4);
  9391. })
  9392. if (onloadListener) {
  9393. _iframe.contentDocument.location.reload()
  9394. } else {
  9395. _iframe.contentDocument.location.reload()
  9396. }
  9397. } else if (str == 'mind') {
  9398. _iframe = _formdiv.querySelector('iframe')
  9399. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9400. _iframe.contentWindow.document.body.appendChild(script1);
  9401. _iframe.contentWindow.document.body.appendChild(script2);
  9402. _iframe.contentWindow.document.body.appendChild(script4);
  9403. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9404. })
  9405. if (onloadListener) {
  9406. _iframe.contentDocument.location.reload()
  9407. } else {
  9408. _iframe.contentDocument.location.reload()
  9409. }
  9410. } else {
  9411. _iframe.onload = () => {
  9412. _iframe.contentWindow.document.body.appendChild(script1);
  9413. _iframe.contentWindow.document.body.appendChild(script2);
  9414. // _iframe.contentWindow.document.body.appendChild(script3);
  9415. _iframe.contentWindow.document.body.appendChild(script4);
  9416. };
  9417. }
  9418. _jie.onclick = async () => {
  9419. let text = ''
  9420. if (aTool == 6) {
  9421. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9422. } else if (aTool == 3) {
  9423. text = await U.MD.D.I.getEditorContent(_iframe);
  9424. }
  9425. _loading.style.display = 'flex'
  9426. console.log(_loading);
  9427. var _ajs = _iframe.contentWindow.document.createElement("script");
  9428. _ajs.type = "text/javascript";
  9429. _ajs.innerHTML =
  9430. // 'console.log(' + _loading + ');\n' +
  9431. 'var _js = document.createElement("script");\n' +
  9432. '_js.type="text/javascript";\n' +
  9433. '_js.charset="UTF-8";\n' +
  9434. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9435. "_js.onload = function(){\n" +
  9436. ' var a = document.getElementsByTagName("img")\n' +
  9437. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9438. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9439. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9440. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9441. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9442. "beforeUpload_shishi(file," +
  9443. "'" +
  9444. _userid +
  9445. "'" +
  9446. ", " +
  9447. "'" +
  9448. _cid +
  9449. "'" +
  9450. ", " +
  9451. "'" +
  9452. _stage +
  9453. "'" +
  9454. ", " +
  9455. "'" +
  9456. _task +
  9457. "'" +
  9458. ", " +
  9459. "'" +
  9460. _tool +
  9461. "'" +
  9462. ", " +
  9463. "'" +
  9464. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9465. "'" +
  9466. ", " +
  9467. "'" +
  9468. aTool +
  9469. "'" +
  9470. ", " +
  9471. "`" +
  9472. text +
  9473. "`" +
  9474. ")\n" +
  9475. " });\n" +
  9476. "}\n" +
  9477. "document.head.appendChild(_js);\n";
  9478. _iframe.contentWindow.document.head.appendChild(_ajs);
  9479. }
  9480. }
  9481. //U.MD.D.I.openClick(str);
  9482. //如果有任务栏信息
  9483. // if (_taskbar) {
  9484. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9485. // }
  9486. }
  9487. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9488. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9489. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9490. _userinfo = US.userInfo, //登录用户信息
  9491. _userid = US.userInfo.userid //登录用户id
  9492. let _iframe;
  9493. let _cid = cid,
  9494. _stage = stage,
  9495. _task = task,
  9496. _tool = tool;
  9497. var _jie = $$("div", {
  9498. "style": {
  9499. "position": "absolute",
  9500. "bottom": "50px",
  9501. "right": "50px",
  9502. "zIndex": "9999",
  9503. "backgroundColor": "#2268bc",
  9504. "color": "#fff",
  9505. "padding": "12px 20px",
  9506. "cursor": "pointer",
  9507. "borderRadius": "4px",
  9508. },
  9509. "innerHTML": "确认并提交"
  9510. })
  9511. let aTool = ''
  9512. let _loading = document.createElement('div')
  9513. _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;"
  9514. // _loading.id = "";
  9515. let _lchild = document.createElement('div')
  9516. let _limg = document.createElement('img')
  9517. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9518. _limg.style = "width: 26px;margin-right: 10px;"
  9519. _lchild.appendChild(_limg)
  9520. let _lspan = document.createElement('span')
  9521. _lspan.innerHTML = "上传中..."
  9522. _lchild.appendChild(_lspan)
  9523. _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%);"
  9524. _loading.appendChild(_lchild)
  9525. var _box = $$('div', {
  9526. "style": {
  9527. "position": "relative",
  9528. "width": "100%",
  9529. "height": "100%",
  9530. },
  9531. })
  9532. _box.appendChild(_loading)
  9533. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9534. switch (str) {
  9535. case "whiteboard":
  9536. aTool = 1;
  9537. _iframe = $$("iframe", {
  9538. "frameborder": "no",
  9539. "border": "0",
  9540. "scrolling ": "no",
  9541. "style": {
  9542. "cssText": "border:0;width:100%;height:100%"
  9543. },
  9544. "src": "https://beta.iwb.cocorobo.cn/"
  9545. })
  9546. _box.appendChild(_iframe);
  9547. _box.appendChild(_jie);
  9548. _formdiv = new U.UF.UI.form(
  9549. "电子白板",
  9550. _box, {
  9551. "id": "whiteboards" + cid + stage + task + tool,
  9552. "style": {
  9553. "width": "90%",
  9554. "height": "90%",
  9555. "overflow": 'hidden'
  9556. },
  9557. "onresize": function () { }
  9558. }, {
  9559. closecallback: function () { }
  9560. }, {
  9561. "style": {
  9562. "height": "36px"
  9563. }
  9564. }).form; //创建窗体
  9565. _taskbar = {
  9566. "id": str + _formdiv.id,
  9567. "style": {
  9568. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9569. },
  9570. "name": "电子白板",
  9571. "forms": _formdiv,
  9572. "click": function () {
  9573. U.MD.D.I.openApplication(str, obj, info);
  9574. }
  9575. }
  9576. break;
  9577. case "mind":
  9578. aTool = 3;
  9579. _iframe = $$("iframe", {
  9580. "frameborder": "no",
  9581. "border": "0",
  9582. "scrolling ": "no",
  9583. "style": {
  9584. "cssText": "border:0;width:100%;height:100%"
  9585. },
  9586. "src": "/kityminder-editor/dist/index.html"
  9587. });
  9588. _box.appendChild(_iframe);
  9589. _box.appendChild(_jie);
  9590. _formdiv = new U.UF.UI.form(
  9591. "思维导图",
  9592. _box, { //"/jsmind/example/demo.html"
  9593. "id": "minds" + cid + stage + task + tool,
  9594. "style": {
  9595. "width": "90%",
  9596. "height": "90%",
  9597. "overflow": 'hidden'
  9598. },
  9599. "onresize": function () { }
  9600. }, {
  9601. closecallback: function () { }
  9602. }, {
  9603. "style": {
  9604. "height": "36px"
  9605. }
  9606. }).form; //创建窗体
  9607. _taskbar = {
  9608. "id": str + _formdiv.id,
  9609. "style": {
  9610. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9611. },
  9612. "name": "思维导图",
  9613. "forms": _formdiv,
  9614. "click": function () {
  9615. U.MD.D.I.openApplication(str, obj, info);
  9616. }
  9617. }
  9618. break;
  9619. case "doc":
  9620. aTool = 6;
  9621. _iframe = $$("iframe", {
  9622. "frameborder": "no",
  9623. "border": "0",
  9624. "scrolling ": "no",
  9625. "style": {
  9626. "cssText": "border:0;width:100%;height:100%"
  9627. },
  9628. "src": "/Office/Word/WordEditArea.htm"
  9629. })
  9630. _box.appendChild(_iframe);
  9631. _box.appendChild(_jie);
  9632. _formdiv = new U.UF.UI.form(
  9633. "协同文档",
  9634. _box, {
  9635. "id": "docs" + cid + stage + task + tool,
  9636. "style": {
  9637. "width": "90%",
  9638. "height": "90%",
  9639. "overflow": 'hidden'
  9640. },
  9641. "onresize": function () { }
  9642. }, {
  9643. closecallback: function () { }
  9644. }, {
  9645. "style": {
  9646. "height": "36px"
  9647. }
  9648. }).form; //创建窗体
  9649. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9650. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9651. })
  9652. _taskbar = {
  9653. "id": str + _formdiv.id,
  9654. "style": {
  9655. "backgroundImage": "url(/img/icon/doc.png)"
  9656. },
  9657. "name": "协同文档",
  9658. "forms": _formdiv,
  9659. "click": function () {
  9660. U.MD.D.I.openApplication(str, obj, info);
  9661. }
  9662. }
  9663. break;
  9664. }
  9665. const script1 = document.createElement("script");
  9666. script1.type = "text/javascript";
  9667. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9668. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9669. const script2 = document.createElement("script");
  9670. script2.type = "text/javascript";
  9671. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9672. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9673. const script3 = document.createElement("script");
  9674. script3.type = "text/javascript";
  9675. script3.charset = "UTF-8";
  9676. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9677. const script4 = document.createElement("script");
  9678. script4.type = "text/javascript";
  9679. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9680. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9681. if (_iframe) {
  9682. if (str == 'doc') {
  9683. _iframe = _formdiv.querySelector('iframe')
  9684. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9685. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9686. _iframe.contentWindow.document.body.appendChild(script1);
  9687. _iframe.contentWindow.document.body.appendChild(script2);
  9688. // _iframe.contentWindow.document.body.appendChild(script3);
  9689. _iframe.contentWindow.document.body.appendChild(script4);
  9690. })
  9691. if (onloadListener) {
  9692. _iframe.contentDocument.location.reload()
  9693. } else {
  9694. _iframe.contentDocument.location.reload()
  9695. }
  9696. } else if (str == 'mind') {
  9697. _iframe = _formdiv.querySelector('iframe')
  9698. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9699. _iframe.contentWindow.document.body.appendChild(script1);
  9700. _iframe.contentWindow.document.body.appendChild(script2);
  9701. _iframe.contentWindow.document.body.appendChild(script4);
  9702. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9703. })
  9704. if (onloadListener) {
  9705. _iframe.contentDocument.location.reload()
  9706. } else {
  9707. _iframe.contentDocument.location.reload()
  9708. }
  9709. } else {
  9710. _iframe.onload = () => {
  9711. _iframe.contentWindow.document.body.appendChild(script1);
  9712. _iframe.contentWindow.document.body.appendChild(script2);
  9713. // _iframe.contentWindow.document.body.appendChild(script3);
  9714. _iframe.contentWindow.document.body.appendChild(script4);
  9715. };
  9716. }
  9717. _jie.onclick = async () => {
  9718. let text = ''
  9719. if (aTool == 6) {
  9720. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9721. } else if (aTool == 3) {
  9722. text = await U.MD.D.I.getEditorContent(_iframe);
  9723. }
  9724. _loading.style.display = 'flex'
  9725. console.log(_loading);
  9726. var _ajs = _iframe.contentWindow.document.createElement("script");
  9727. _ajs.type = "text/javascript";
  9728. _ajs.innerHTML =
  9729. // 'console.log(' + _loading + ');\n' +
  9730. 'var _js = document.createElement("script");\n' +
  9731. '_js.type="text/javascript";\n' +
  9732. '_js.charset="UTF-8";\n' +
  9733. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9734. "_js.onload = function(){\n" +
  9735. ' var a = document.getElementsByTagName("img")\n' +
  9736. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9737. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9738. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9739. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9740. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9741. "beforeUpload_shishi(file," +
  9742. "'" +
  9743. _userid +
  9744. "'" +
  9745. ", " +
  9746. "'" +
  9747. _cid +
  9748. "'" +
  9749. ", " +
  9750. "'" +
  9751. _stage +
  9752. "'" +
  9753. ", " +
  9754. "'" +
  9755. _task +
  9756. "'" +
  9757. ", " +
  9758. "'" +
  9759. _tool +
  9760. "'" +
  9761. ", " +
  9762. "'" +
  9763. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9764. "'" +
  9765. ", " +
  9766. "'" +
  9767. aTool +
  9768. "'" +
  9769. ", " +
  9770. "`" +
  9771. text +
  9772. "`" +
  9773. ")\n" +
  9774. " });\n" +
  9775. "}\n" +
  9776. "document.head.appendChild(_js);\n";
  9777. _iframe.contentWindow.document.head.appendChild(_ajs);
  9778. }
  9779. }
  9780. //U.MD.D.I.openClick(str);
  9781. //如果有任务栏信息
  9782. // if (_taskbar) {
  9783. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9784. // }
  9785. }
  9786. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9787. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9788. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9789. _userinfo = US.userInfo, //登录用户信息
  9790. _userid = US.userInfo.userid //登录用户id
  9791. let _iframe;
  9792. let _cid = cid,
  9793. _stage = stage,
  9794. _task = task,
  9795. _tool = tool;
  9796. var _jie = $$("div", {
  9797. "style": {
  9798. "position": "absolute",
  9799. "bottom": "50px",
  9800. "right": "50px",
  9801. "zIndex": "9999",
  9802. "backgroundColor": "#2268bc",
  9803. "color": "#fff",
  9804. "padding": "12px 20px",
  9805. "cursor": "pointer",
  9806. "borderRadius": "4px",
  9807. },
  9808. "innerHTML": "上传模板"
  9809. })
  9810. let aTool = ''
  9811. let _loading = document.createElement('div')
  9812. _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;"
  9813. // _loading.id = "";
  9814. let _lchild = document.createElement('div')
  9815. let _limg = document.createElement('img')
  9816. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9817. _limg.style = "width: 26px;margin-right: 10px;"
  9818. _lchild.appendChild(_limg)
  9819. let _lspan = document.createElement('span')
  9820. _lspan.innerHTML = "上传中..."
  9821. _lchild.appendChild(_lspan)
  9822. _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%);"
  9823. _loading.appendChild(_lchild)
  9824. var _box = $$('div', {
  9825. "style": {
  9826. "position": "relative",
  9827. "width": "100%",
  9828. "height": "100%",
  9829. },
  9830. })
  9831. _box.appendChild(_loading)
  9832. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9833. switch (str) {
  9834. case "whiteboard":
  9835. aTool = 1;
  9836. _iframe = $$("iframe", {
  9837. "frameborder": "no",
  9838. "border": "0",
  9839. "scrolling ": "no",
  9840. "style": {
  9841. "cssText": "border:0;width:100%;height:100%"
  9842. },
  9843. "src": "https://beta.iwb.cocorobo.cn/"
  9844. })
  9845. _box.appendChild(_iframe);
  9846. _box.appendChild(_jie);
  9847. _formdiv = new U.UF.UI.form(
  9848. "电子白板",
  9849. _box, {
  9850. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9851. "style": {
  9852. "width": "90%",
  9853. "height": "90%",
  9854. "overflow": 'hidden'
  9855. },
  9856. "onresize": function () { }
  9857. }, {
  9858. closecallback: function () { }
  9859. }, {
  9860. "style": {
  9861. "height": "36px"
  9862. }
  9863. }).form; //创建窗体
  9864. _taskbar = {
  9865. "id": str + _formdiv.id,
  9866. "style": {
  9867. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9868. },
  9869. "name": "电子白板",
  9870. "forms": _formdiv,
  9871. "click": function () {
  9872. U.MD.D.I.openApplication(str, obj, info);
  9873. }
  9874. }
  9875. break;
  9876. case "mind":
  9877. aTool = 3;
  9878. _iframe = $$("iframe", {
  9879. "frameborder": "no",
  9880. "border": "0",
  9881. "scrolling ": "no",
  9882. "style": {
  9883. "cssText": "border:0;width:100%;height:100%"
  9884. },
  9885. "src": "/kityminder-editor/dist/index.html"
  9886. });
  9887. _box.appendChild(_iframe);
  9888. _box.appendChild(_jie);
  9889. _formdiv = new U.UF.UI.form(
  9890. "思维导图",
  9891. _box, { //"/jsmind/example/demo.html"
  9892. "id": "minds_Yu" + cid + stage + task + tool,
  9893. "style": {
  9894. "width": "90%",
  9895. "height": "90%",
  9896. "overflow": 'hidden'
  9897. },
  9898. "onresize": function () { }
  9899. }, {
  9900. closecallback: function () { }
  9901. }, {
  9902. "style": {
  9903. "height": "36px"
  9904. }
  9905. }).form; //创建窗体
  9906. _taskbar = {
  9907. "id": str + _formdiv.id,
  9908. "style": {
  9909. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9910. },
  9911. "name": "思维导图",
  9912. "forms": _formdiv,
  9913. "click": function () {
  9914. U.MD.D.I.openApplication(str, obj, info);
  9915. }
  9916. }
  9917. break;
  9918. case "doc":
  9919. aTool = 6;
  9920. _iframe = $$("iframe", {
  9921. "frameborder": "no",
  9922. "border": "0",
  9923. "scrolling ": "no",
  9924. "style": {
  9925. "cssText": "border:0;width:100%;height:100%"
  9926. },
  9927. "src": "/Office/Word/WordEditArea.htm"
  9928. })
  9929. _box.appendChild(_iframe);
  9930. _box.appendChild(_jie);
  9931. _formdiv = new U.UF.UI.form(
  9932. "协同文档",
  9933. _box, {
  9934. "id": "docs_Yu" + cid + stage + task + tool,
  9935. "style": {
  9936. "width": "90%",
  9937. "height": "90%",
  9938. "overflow": 'hidden'
  9939. },
  9940. "onresize": function () { }
  9941. }, {
  9942. closecallback: function () { }
  9943. }, {
  9944. "style": {
  9945. "height": "36px"
  9946. }
  9947. }).form; //创建窗体
  9948. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9949. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9950. })
  9951. _taskbar = {
  9952. "id": str + _formdiv.id,
  9953. "style": {
  9954. "backgroundImage": "url(/img/icon/doc.png)"
  9955. },
  9956. "name": "协同文档",
  9957. "forms": _formdiv,
  9958. "click": function () {
  9959. U.MD.D.I.openApplication(str, obj, info);
  9960. }
  9961. }
  9962. break;
  9963. case "CocoPi":
  9964. aTool = 57;
  9965. _iframe = $$("iframe", {
  9966. "allowpaymentrequest": "allowpaymentrequest",
  9967. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9968. "webkitallowfullscreen": "",
  9969. "mozallowfullscreen": "",
  9970. "frameborder": "no",
  9971. "border": "0",
  9972. "scrolling ": "no",
  9973. "style": {
  9974. "cssText": "border:0;width:100%;height:100%"
  9975. },
  9976. "src": "https://pi.cocorobo.cn/"
  9977. })
  9978. _box.appendChild(_iframe);
  9979. _box.appendChild(_jie);
  9980. _formdiv = new U.UF.UI.form(
  9981. "CocoPi",
  9982. _box, {
  9983. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9984. "style": {
  9985. "width": "90%",
  9986. "height": "90%",
  9987. "overflow": 'hidden'
  9988. },
  9989. "onresize": function () { }
  9990. }, {
  9991. closecallback: function () { }
  9992. }, {
  9993. "style": {
  9994. "height": "36px"
  9995. }
  9996. }).form; //创建窗体
  9997. _taskbar = {
  9998. "id": str + _formdiv.id,
  9999. "style": {
  10000. "backgroundImage": "url(/img/icon/cocopi.png)"
  10001. },
  10002. "name": "CocoPi",
  10003. "forms": _formdiv,
  10004. "click": function () {
  10005. U.MD.D.I.openApplication(str, obj, info);
  10006. }
  10007. }
  10008. break;
  10009. }
  10010. if (_iframe) {
  10011. if (str == 'doc') {
  10012. _iframe = _formdiv.querySelector('iframe')
  10013. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10014. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10015. })
  10016. if (onloadListener) {
  10017. _iframe.contentDocument.location.reload()
  10018. } else {
  10019. _iframe.contentDocument.location.reload()
  10020. }
  10021. } else if (str == 'mind') {
  10022. _iframe = _formdiv.querySelector('iframe')
  10023. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10024. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10025. })
  10026. if (onloadListener) {
  10027. _iframe.contentDocument.location.reload()
  10028. } else {
  10029. _iframe.contentDocument.location.reload()
  10030. }
  10031. } else if (str == 'whiteboard') {
  10032. _iframe = _formdiv.querySelector('iframe')
  10033. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10034. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10035. })
  10036. // if (onloadListener) {
  10037. // try {
  10038. // _iframe.src += "?cocorobo="+new Date().getTime()
  10039. // _iframe.contentWindow.document.location.reload()
  10040. // } catch (error) {
  10041. // }
  10042. // } else {
  10043. // _iframe.contentDocument.location.reload()
  10044. // }
  10045. } else if (str == 'CocoPi') {
  10046. _iframe = _formdiv.querySelector('iframe')
  10047. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10048. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10049. })
  10050. if (onloadListener) {
  10051. _iframe.contentDocument.location.reload()
  10052. } else {
  10053. _iframe.contentDocument.location.reload()
  10054. }
  10055. } else {
  10056. _iframe.onload = () => { };
  10057. }
  10058. _jie.onclick = async () => {
  10059. let text = ''
  10060. let type = '2'
  10061. if (aTool == 1) {
  10062. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10063. type = '3'
  10064. } else if (aTool == 6) {
  10065. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10066. type = '1'
  10067. } else if (aTool == 3) {
  10068. text = await U.MD.D.I.getEditorContent(_iframe);
  10069. type = '2'
  10070. } else if (aTool == 57) {
  10071. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10072. type = '4'
  10073. }
  10074. _loading.style.display = 'flex'
  10075. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10076. }
  10077. }
  10078. //U.MD.D.I.openClick(str);
  10079. //如果有任务栏信息
  10080. // if (_taskbar) {
  10081. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10082. // }
  10083. }
  10084. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10085. var xmlhttp;
  10086. var Mac, Sn, DeviceId
  10087. if (window.XMLHttpRequest) {
  10088. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10089. xmlhttp = new XMLHttpRequest();
  10090. } else {
  10091. // IE6, IE5 浏览器执行代码
  10092. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10093. }
  10094. xmlhttp.onreadystatechange = function () {
  10095. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10096. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10097. // resolve(res.value[0][0].text);
  10098. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10099. }
  10100. }
  10101. }
  10102. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10103. xmlhttp.send();
  10104. }
  10105. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10106. var xmlhttp;
  10107. var Mac, Sn, DeviceId
  10108. if (window.XMLHttpRequest) {
  10109. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10110. xmlhttp = new XMLHttpRequest();
  10111. } else {
  10112. // IE6, IE5 浏览器执行代码
  10113. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10114. }
  10115. xmlhttp.onreadystatechange = function () {
  10116. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10117. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10118. // resolve(res.value[0][0].text);
  10119. if (type == '2') {
  10120. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10121. } else if (type == '3') {
  10122. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10123. } else if (type == '4') {
  10124. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10125. }
  10126. } else {
  10127. if (type == '2') {
  10128. iframe.contentWindow.editor.minder.importData('json', '')
  10129. } else if (type == '3') {
  10130. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10131. } else if (type == '4') {
  10132. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10133. }
  10134. }
  10135. }
  10136. }
  10137. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10138. xmlhttp.send();
  10139. }
  10140. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10141. var xmlhttp;
  10142. var Mac, Sn, DeviceId
  10143. if (window.XMLHttpRequest) {
  10144. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10145. xmlhttp = new XMLHttpRequest();
  10146. } else {
  10147. // IE6, IE5 浏览器执行代码
  10148. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10149. }
  10150. xmlhttp.onreadystatechange = function () {
  10151. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10152. if (xmlhttp.response) {
  10153. // resolve(res.value[0][0].text);
  10154. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10155. // $(fileInput).val('');
  10156. // });
  10157. span.innerHTML = '上传成功'
  10158. setTimeout(() => {
  10159. loading.style.display = 'none'
  10160. }, 1000);
  10161. }
  10162. }
  10163. }
  10164. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10165. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10166. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10167. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10168. // 设置请求头,表示请求体的编码格式
  10169. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10170. // 设置请求体,使用url-encoded格式的数据
  10171. }
  10172. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10173. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10174. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10175. _userinfo = US.userInfo, //登录用户信息
  10176. _userid = US.userInfo.userid //登录用户id
  10177. let _iframe;
  10178. let _cid = cid,
  10179. _stage = stage,
  10180. _task = task,
  10181. _tool = tool;
  10182. var _jie = $$("div", {
  10183. "style": {
  10184. "position": "absolute",
  10185. "bottom": "50px",
  10186. "right": "50px",
  10187. "zIndex": "9999",
  10188. "backgroundColor": "#2268bc",
  10189. "color": "#fff",
  10190. "padding": "12px 20px",
  10191. "cursor": "pointer",
  10192. "borderRadius": "4px",
  10193. },
  10194. "innerHTML": "提交作业"
  10195. })
  10196. let aTool = ''
  10197. let _loading = document.createElement('div')
  10198. _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;"
  10199. // _loading.id = "";
  10200. let _lchild = document.createElement('div')
  10201. let _limg = document.createElement('img')
  10202. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10203. _limg.style = "width: 26px;margin-right: 10px;"
  10204. _lchild.appendChild(_limg)
  10205. let _lspan = document.createElement('span')
  10206. _lspan.innerHTML = "上传中..."
  10207. _lchild.appendChild(_lspan)
  10208. _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%);"
  10209. _loading.appendChild(_lchild)
  10210. var _box = $$('div', {
  10211. "style": {
  10212. "position": "relative",
  10213. "width": "100%",
  10214. "height": "100%",
  10215. },
  10216. })
  10217. _box.appendChild(_loading)
  10218. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10219. switch (str) {
  10220. case "CocoPi":
  10221. aTool = 57;
  10222. _iframe = $$("iframe", {
  10223. "allowpaymentrequest": "allowpaymentrequest",
  10224. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10225. "webkitallowfullscreen": "",
  10226. "mozallowfullscreen": "",
  10227. "frameborder": "no",
  10228. "border": "0",
  10229. "scrolling ": "no",
  10230. "style": {
  10231. "cssText": "border:0;width:100%;height:100%"
  10232. },
  10233. "src": "https://pi.cocorobo.cn/"
  10234. })
  10235. _box.appendChild(_iframe);
  10236. _box.appendChild(_jie);
  10237. _formdiv = new U.UF.UI.form(
  10238. "CocoPi",
  10239. _box, {
  10240. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10241. "style": {
  10242. "width": "90%",
  10243. "height": "90%",
  10244. "overflow": 'hidden'
  10245. },
  10246. "onresize": function () { }
  10247. }, {
  10248. closecallback: function () { }
  10249. }, {
  10250. "style": {
  10251. "height": "36px"
  10252. }
  10253. }).form; //创建窗体
  10254. _taskbar = {
  10255. "id": str + _formdiv.id,
  10256. "style": {
  10257. "backgroundImage": "url(/img/icon/cocopi.png)"
  10258. },
  10259. "name": "CocoPi",
  10260. "forms": _formdiv,
  10261. "click": function () {
  10262. U.MD.D.I.openApplication(str, obj, info);
  10263. }
  10264. }
  10265. break;
  10266. }
  10267. if (_iframe) {
  10268. if (str == 'CocoPi') {
  10269. _iframe = _formdiv.querySelector('iframe')
  10270. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10271. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10272. })
  10273. if (onloadListener) {
  10274. _iframe.contentDocument.location.reload()
  10275. } else {
  10276. _iframe.contentDocument.location.reload()
  10277. }
  10278. }
  10279. _jie.onclick = async () => {
  10280. let text = ''
  10281. if (aTool == 57) {
  10282. text = _iframe.contentWindow.getLoadXmlStr()
  10283. }
  10284. _loading.style.display = 'flex'
  10285. console.log(_loading);
  10286. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10287. _loading.style.display = 'none'
  10288. let _div = document.createElement('div')
  10289. _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;"
  10290. let _inner = document.createElement('div')
  10291. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10292. _inner.innerHTML = "上传成功"
  10293. _div.appendChild(_inner)
  10294. _iframe.contentWindow.window.document.body.appendChild(_div)
  10295. _div.onclick = () => {
  10296. _iframe.contentWindow.window.document.body.removeChild(_div)
  10297. }
  10298. setTimeout(() => {
  10299. _iframe.contentWindow.window.document.body.removeChild(_div)
  10300. }, 1000);
  10301. }, [], { "type": "POST", "withCredentials": true });
  10302. }
  10303. }
  10304. }
  10305. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10306. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10307. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10308. _userid = student.userid, //登录用户id
  10309. _username = student.student //用户名字
  10310. let _iframe;
  10311. let _cid = cid,
  10312. _stage = stage,
  10313. _task = task,
  10314. _tool = tool;
  10315. var _jie = $$("div", {
  10316. "style": {
  10317. "position": "absolute",
  10318. "bottom": "50px",
  10319. "right": "50px",
  10320. "zIndex": "9999",
  10321. "backgroundColor": "#2268bc",
  10322. "color": "#fff",
  10323. "padding": "12px 20px",
  10324. "cursor": "pointer",
  10325. "borderRadius": "4px",
  10326. },
  10327. "innerHTML": "提交作业"
  10328. })
  10329. let aTool = ''
  10330. let _loading = document.createElement('div')
  10331. _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;"
  10332. // _loading.id = "";
  10333. let _lchild = document.createElement('div')
  10334. let _limg = document.createElement('img')
  10335. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10336. _limg.style = "width: 26px;margin-right: 10px;"
  10337. _lchild.appendChild(_limg)
  10338. let _lspan = document.createElement('span')
  10339. _lspan.innerHTML = "上传中..."
  10340. _lchild.appendChild(_lspan)
  10341. _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%);"
  10342. _loading.appendChild(_lchild)
  10343. var _box = $$('div', {
  10344. "style": {
  10345. "position": "relative",
  10346. "width": "100%",
  10347. "height": "100%",
  10348. },
  10349. })
  10350. _box.appendChild(_loading)
  10351. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10352. switch (str) {
  10353. case "CocoPi":
  10354. aTool = 57;
  10355. _iframe = $$("iframe", {
  10356. "allowpaymentrequest": "allowpaymentrequest",
  10357. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10358. "webkitallowfullscreen": "",
  10359. "mozallowfullscreen": "",
  10360. "frameborder": "no",
  10361. "border": "0",
  10362. "scrolling ": "no",
  10363. "style": {
  10364. "cssText": "border:0;width:100%;height:100%"
  10365. },
  10366. "src": "https://pi.cocorobo.cn/"
  10367. })
  10368. _box.appendChild(_iframe);
  10369. _box.appendChild(_jie);
  10370. _formdiv = new U.UF.UI.form(
  10371. "CocoPi-" + _username,
  10372. _box, {
  10373. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10374. "style": {
  10375. "width": "90%",
  10376. "height": "90%",
  10377. "overflow": 'hidden'
  10378. },
  10379. "onresize": function () { }
  10380. }, {
  10381. closecallback: function () { }
  10382. }, {
  10383. "style": {
  10384. "height": "36px"
  10385. }
  10386. }).form; //创建窗体
  10387. _taskbar = {
  10388. "id": str + _formdiv.id,
  10389. "style": {
  10390. "backgroundImage": "url(/img/icon/cocopi.png)"
  10391. },
  10392. "name": "CocoPi",
  10393. "forms": _formdiv,
  10394. "click": function () {
  10395. U.MD.D.I.openApplication(str, obj, info);
  10396. }
  10397. }
  10398. break;
  10399. }
  10400. if (_iframe) {
  10401. if (str == 'CocoPi') {
  10402. _iframe = _formdiv.querySelector('iframe')
  10403. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10404. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10405. })
  10406. if (onloadListener) {
  10407. _iframe.contentDocument.location.reload()
  10408. } else {
  10409. _iframe.contentDocument.location.reload()
  10410. }
  10411. }
  10412. _jie.onclick = async () => {
  10413. let text = ''
  10414. if (aTool == 57) {
  10415. text = _iframe.contentWindow.getLoadXmlStr()
  10416. }
  10417. _loading.style.display = 'flex'
  10418. console.log(_loading);
  10419. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10420. _loading.style.display = 'none'
  10421. let _div = document.createElement('div')
  10422. _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;"
  10423. let _inner = document.createElement('div')
  10424. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10425. _inner.innerHTML = "上传成功"
  10426. _div.appendChild(_inner)
  10427. _iframe.contentWindow.window.document.body.appendChild(_div)
  10428. _div.onclick = () => {
  10429. _iframe.contentWindow.window.document.body.removeChild(_div)
  10430. }
  10431. setTimeout(() => {
  10432. _iframe.contentWindow.window.document.body.removeChild(_div)
  10433. }, 1000);
  10434. }, [], { "type": "POST", "withCredentials": true });
  10435. }
  10436. }
  10437. }
  10438. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10439. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10440. if (res.value[0].length > 0) {
  10441. if (atool == 57) {
  10442. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10443. }
  10444. } else {
  10445. if (atool == 57) {
  10446. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10447. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10448. }
  10449. }
  10450. }, [], { "type": "POST", "withCredentials": true });
  10451. }