DeskTop.js 673 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  604. ];
  605. //中山小学教师桌面图标的全局变量
  606. U.MD.D.I.guzmsteacherDeskIcon = [
  607. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  608. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  609. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  610. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  611. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  612. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  613. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  614. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  615. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  617. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  618. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  619. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  620. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  621. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  622. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  623. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  624. ];
  625. //中山小学学生桌面图标的全局变量
  626. U.MD.D.I.guzmsStudentDeskIcon = [
  627. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  628. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  629. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  630. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  631. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  632. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  633. ];
  634. //福田
  635. U.MD.D.I.gdjgTeacherDeskIcon = [
  636. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  637. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  638. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  639. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  640. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  641. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  642. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  643. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  644. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  645. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  649. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  650. ];
  651. //gdjg
  652. U.MD.D.I.gdjgAdminDeskIcon = [
  653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  657. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  658. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  659. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  660. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  661. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  664. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  665. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  666. ];
  667. //hk
  668. U.MD.D.I.hkteacherDeskIcon = [
  669. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  670. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  671. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  672. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  673. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  675. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  676. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  677. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  678. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  679. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  680. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  681. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  682. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  685. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  687. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  688. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  689. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  690. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  691. ];
  692. //hk
  693. U.MD.D.I.hkStudentDeskIcon = [
  694. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  695. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  697. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  700. ];
  701. //hk
  702. U.MD.D.I.hkaceteacherDeskIcon = [
  703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  709. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  710. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  711. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  712. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  713. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  714. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  715. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  716. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  719. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  720. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  721. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  722. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  723. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  724. ];
  725. //hk
  726. U.MD.D.I.hkaceStudentDeskIcon = [
  727. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  728. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  730. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  733. ];
  734. //香海正覺蓮社佛教正覺中學
  735. U.MD.D.I.hkZJLSteacherDeskIcon = [
  736. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  737. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  738. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  739. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  740. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  741. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  742. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  743. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  744. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  745. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  746. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  747. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  748. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  749. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  750. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  751. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  752. ];
  753. //香海正覺蓮社佛教正覺中學
  754. U.MD.D.I.hkZJLSStudentDeskIcon = [
  755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  756. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  759. ];
  760. //云海
  761. U.MD.D.I.yunhaiTeacherDeskIcon = [
  762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  768. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  769. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  770. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  771. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  772. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  773. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  774. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  775. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  776. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  777. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  778. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  779. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  780. ];
  781. //福田
  782. U.MD.D.I.heyuanTeacherDeskIcon = [
  783. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  784. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  787. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  788. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  789. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  790. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  791. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  792. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanAdminDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  806. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  808. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  809. ];
  810. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  811. U.MD.D.I.szherTeacherDeskIcon = [
  812. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  813. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  814. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  815. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  816. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  817. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  822. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  823. ];
  824. //dsei
  825. U.MD.D.I.dseiTeacherDeskIcon = [
  826. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  827. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  828. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  829. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  830. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  832. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  833. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  834. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  835. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  836. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  837. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  838. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  839. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  840. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  841. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  842. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  843. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  844. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  845. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  846. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  847. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  848. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  849. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  850. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  851. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  852. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  853. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  854. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  855. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  856. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  857. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  858. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  859. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  860. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  861. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  862. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  863. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  866. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  867. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  868. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  869. ];
  870. //dsei
  871. U.MD.D.I.dseiAdminDeskIcon = [
  872. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  873. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  874. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  875. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  876. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  877. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  878. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  879. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  880. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  881. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  882. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  883. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  884. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  885. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  886. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  887. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  888. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  889. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  890. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  891. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  892. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  893. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  894. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  895. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  896. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  897. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  898. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  899. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  900. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  901. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  902. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  903. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  904. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  905. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  906. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  907. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  908. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  909. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  912. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  913. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  914. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  915. ];
  916. //dsei
  917. U.MD.D.I.dseiStudentDeskIcon = [
  918. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  919. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  920. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  921. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  924. ];
  925. //未来教育基地
  926. U.MD.D.I.szjkyTeacherDeskIcon = [
  927. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  928. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  929. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  930. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  931. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  932. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  933. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  934. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  935. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  936. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  937. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  938. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  939. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  940. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  943. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  944. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  945. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  946. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  947. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  948. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  949. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  950. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  951. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  952. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  953. ];
  954. //未来教育基地
  955. U.MD.D.I.szjkyAdminDeskIcon = [
  956. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  957. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  958. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  959. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  960. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  961. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  962. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  963. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  964. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  965. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  966. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  967. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  968. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  969. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  972. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  973. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  974. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  975. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  976. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  978. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  979. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  980. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  981. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  982. ];
  983. //未来教育基地
  984. U.MD.D.I.szjkyStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  989. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  990. ];
  991. //成华教育局
  992. U.MD.D.I.chjyjTeacherDeskIcon = [
  993. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  994. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  995. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  996. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  997. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  998. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  999. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1000. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1001. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1002. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1003. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1004. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1006. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1007. ];
  1008. //成华教育局chjyj
  1009. U.MD.D.I.chjyjAdminDeskIcon = [
  1010. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1011. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1012. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1013. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1014. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1015. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1018. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1019. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1020. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1021. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1022. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1025. ];
  1026. //成华教育局chjyj
  1027. U.MD.D.I.chjyjStudentDeskIcon = [
  1028. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1032. ];
  1033. //tpc
  1034. U.MD.D.I.tpcStudentDeskIcon = [
  1035. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcTeacherDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //tpc
  1051. U.MD.D.I.tpcAdminDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1057. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1058. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1059. ];
  1060. //THU-IOE
  1061. U.MD.D.I.thuioeTeacherDeskIcon = [
  1062. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1063. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1064. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1065. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1066. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1067. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1068. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1069. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1070. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1071. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1072. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1073. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1074. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1075. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1076. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1077. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1078. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1079. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1080. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1081. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1082. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1083. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1084. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1085. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1086. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1087. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1088. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1089. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1090. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1091. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1092. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1093. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1094. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1095. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1096. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1097. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1100. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1101. ];
  1102. //THU-IOE
  1103. U.MD.D.I.thuioeStudentDeskIcon = [
  1104. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1108. ];
  1109. //jccssyl
  1110. U.MD.D.I.jccssylTeacherDeskIcon = [
  1111. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1112. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1113. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1114. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1115. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1116. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1117. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1118. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1119. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1120. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1121. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1122. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1123. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1124. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1129. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1130. ];
  1131. //jccssyl
  1132. U.MD.D.I.jccssylStudentDeskIcon = [
  1133. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1137. ];
  1138. //cale
  1139. U.MD.D.I.caleTeacherDeskIcon = [
  1140. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1141. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1142. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1143. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1144. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1145. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1146. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1147. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1148. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1149. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1150. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1151. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1152. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1153. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1157. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1158. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1159. ];
  1160. //cale
  1161. U.MD.D.I.caleStudentDeskIcon = [
  1162. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. ];
  1167. //lqwmsgzs
  1168. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1169. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1170. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1171. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1172. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1173. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1174. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1175. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1176. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1177. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1178. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1179. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1180. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1181. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1182. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1183. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1184. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1185. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1186. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1187. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1188. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1189. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1190. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1191. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1192. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1193. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1194. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1195. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1196. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1197. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1198. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1199. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1200. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1201. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1202. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1205. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1206. ];
  1207. //lqwmsgzs
  1208. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1209. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. ];
  1214. //盐田区幼儿园
  1215. U.MD.D.I.ytyTeacherDeskIcon = [
  1216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1218. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1219. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1220. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1221. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1222. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1223. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1224. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1225. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1227. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1228. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1229. ];
  1230. //盐田区幼儿园
  1231. U.MD.D.I.ytyStudentDeskIcon = [
  1232. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. ];
  1236. //scnuai
  1237. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1238. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1239. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1243. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1244. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1245. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1246. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1247. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1248. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1249. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1250. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1251. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1253. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1254. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1255. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1256. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1257. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1258. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1259. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1260. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1261. ];
  1262. //scnuai
  1263. U.MD.D.I.scnuaiAdminDeskIcon = [
  1264. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1265. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1266. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1267. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1268. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1269. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1270. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1273. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1274. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1275. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1276. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1277. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1279. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1280. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1281. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1282. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1283. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1284. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1285. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1286. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1287. ];
  1288. //scnuai
  1289. U.MD.D.I.scnuaiStudentDeskIcon = [
  1290. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. ];
  1295. //cocobiz
  1296. U.MD.D.I.cocobizteacherDeskIcon = [
  1297. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1298. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1299. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1300. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1301. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1302. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1303. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1304. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1305. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1306. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1307. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1308. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1309. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1310. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1311. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1313. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1314. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1315. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1316. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1317. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1318. ];
  1319. //cocobiz
  1320. U.MD.D.I.cocobizStudentDeskIcon = [
  1321. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1323. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1324. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1327. ];
  1328. //xxzjky
  1329. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1330. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1331. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1332. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1333. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1334. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1335. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1336. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1337. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1338. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1339. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1340. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1349. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1350. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1351. ];
  1352. //xxzjky
  1353. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1354. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1356. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1357. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. ];
  1361. //nsfx
  1362. U.MD.D.I.nsfxTeacherDeskIcon = [
  1363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1365. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1366. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1367. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1368. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1369. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1370. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1371. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1372. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1373. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1376. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1377. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1378. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1379. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1380. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1381. ];
  1382. //nsfx
  1383. U.MD.D.I.nsfxStudentDeskIcon = [
  1384. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. ];
  1389. //stia
  1390. U.MD.D.I.stiaTeacherDeskIcon = [
  1391. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1392. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1393. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1394. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1395. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1396. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1397. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1398. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1399. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1400. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1401. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1402. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1403. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1404. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1405. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1406. ];
  1407. //stia
  1408. U.MD.D.I.stiaStudentDeskIcon = [
  1409. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. ];
  1414. //szdjg
  1415. U.MD.D.I.szdjgTeacherDeskIcon = [
  1416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1418. ];
  1419. //szdjg
  1420. U.MD.D.I.szdjgStudentDeskIcon = [
  1421. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1424. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. ];
  1426. //010607
  1427. U.MD.D.I.x010607TeacherDeskIcon = [
  1428. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1429. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1430. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1431. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1432. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1433. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1434. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1435. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1436. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1437. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1438. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1439. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1440. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1441. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1442. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1443. ];
  1444. //010607
  1445. U.MD.D.I.x010607StudentDeskIcon = [
  1446. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1449. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1450. ];
  1451. //010608
  1452. U.MD.D.I.x010608TeacherDeskIcon = [
  1453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1460. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1461. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1462. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1463. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1464. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1465. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1466. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.x010608StudentDeskIcon = [
  1470. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1471. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1472. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1473. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1474. ];
  1475. //xhly
  1476. U.MD.D.I.xhlyTeacherDeskIcon = [
  1477. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1478. ];
  1479. //010608
  1480. U.MD.D.I.xhlyStudentDeskIcon = [
  1481. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1482. ];
  1483. //北师大
  1484. U.MD.D.I.BSDNSteacherDeskIcon = [
  1485. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1486. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1487. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1488. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1489. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1492. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1493. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1494. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1495. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1496. ];
  1497. //北师大
  1498. U.MD.D.I.BSDNSstudentDeskIcon = [
  1499. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1503. ];
  1504. //CUHK_EDU
  1505. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1506. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1507. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1508. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1509. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1510. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1513. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1516. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1517. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1518. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1519. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1520. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1521. ];
  1522. //CUHK_EDU
  1523. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1524. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1528. ];
  1529. //010503
  1530. U.MD.D.I.x010503TeacherDeskIcon = [
  1531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1537. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1538. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1539. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1540. ];
  1541. //010503
  1542. U.MD.D.I.x010503StudentDeskIcon = [
  1543. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1544. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1545. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1547. ];
  1548. //SPROUT Lab
  1549. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1557. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1558. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1559. ];
  1560. //SPROUT Lab
  1561. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1562. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1563. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1564. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1565. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1566. ];
  1567. //010204
  1568. U.MD.D.I.x010204TeacherDeskIcon = [
  1569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. ];
  1572. //010204
  1573. U.MD.D.I.x010204StudentDeskIcon = [
  1574. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1575. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1576. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1578. ];
  1579. //trail
  1580. U.MD.D.I.trailTeacherDeskIcon = [
  1581. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1582. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1583. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1584. ];
  1585. //trail
  1586. U.MD.D.I.trailStudentDeskIcon = [
  1587. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1588. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1589. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1591. ];
  1592. //010504
  1593. U.MD.D.I.x010504TeacherDeskIcon = [
  1594. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1595. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1597. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1598. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1602. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1603. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1604. ];
  1605. //010504
  1606. U.MD.D.I.x010504StudentDeskIcon = [
  1607. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1610. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1611. ];
  1612. //SCNUET
  1613. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1614. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1615. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1616. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1617. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1618. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1619. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1620. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1621. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1622. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1623. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1624. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1625. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1626. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1627. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1628. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1629. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1630. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1631. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1632. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1633. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1635. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1636. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1637. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1638. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1639. ];
  1640. //SCNUET
  1641. U.MD.D.I.SCNUETAdminDeskIcon = [
  1642. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1643. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1644. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1645. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1646. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1647. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1648. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1649. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1650. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1651. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1652. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1653. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1654. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1655. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1656. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1658. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1659. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1660. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1661. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1662. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1663. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1664. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1665. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1666. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1667. ];
  1668. //SCNUET
  1669. U.MD.D.I.SCNUETStudentDeskIcon = [
  1670. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1671. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1673. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1674. ];
  1675. //x020201
  1676. U.MD.D.I.x020201TeacherDeskIcon = [
  1677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1683. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1684. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1686. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1689. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1690. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1691. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1693. ];
  1694. //x020201
  1695. U.MD.D.I.x020201AdminDeskIcon = [
  1696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1698. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1701. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1702. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1703. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1704. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1705. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1706. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1707. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1708. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1709. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1710. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1711. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1712. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1713. ];
  1714. //020201
  1715. U.MD.D.I.x020201StudentDeskIcon = [
  1716. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1720. ];
  1721. //010611
  1722. U.MD.D.I.x010611TeacherDeskIcon = [
  1723. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1724. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1725. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1726. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1727. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1730. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1731. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1732. ];
  1733. //010611
  1734. U.MD.D.I.x010611StudentDeskIcon = [
  1735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1737. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1739. ];
  1740. //tianyuan
  1741. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1742. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1743. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1744. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1745. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1746. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1747. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1748. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1751. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1752. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1753. ];
  1754. //010611
  1755. U.MD.D.I.tianyuanStudentDeskIcon = [
  1756. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1760. ];
  1761. //320101
  1762. U.MD.D.I.x320101TeacherDeskIcon = [
  1763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1775. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1776. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1777. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1778. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1779. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1780. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1781. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1782. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1783. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1784. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1785. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1786. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1787. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1788. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1789. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1790. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1791. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1792. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1793. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1794. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1795. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1796. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1799. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1800. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1801. ];
  1802. //320101
  1803. U.MD.D.I.x320101StudentDeskIcon = [
  1804. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1806. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1807. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1808. ];
  1809. //#region 桌面初始化a
  1810. /**
  1811. * 初始化桌面的起始函数
  1812. *
  1813. */
  1814. U.MD.D.I.init = function () {
  1815. if ($("#U_MD_D_K")[0]) {
  1816. //初始化桌面图标
  1817. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1818. // var clickUrl = ':12588/requestIp.php';
  1819. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1820. // U.MD.D.I.Ip = data;
  1821. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1822. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1823. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1824. // })
  1825. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1826. // })
  1827. }
  1828. }
  1829. /**
  1830. * 模式切换
  1831. *
  1832. */
  1833. U.MD.D.I.ModeCheck = function (type) {
  1834. if (US.Config.type == type) {
  1835. return
  1836. }
  1837. US.Config.type = type
  1838. $('.U_PBL_Check .active')[0].className = ''
  1839. if (type == 1) {
  1840. $('.U_PBL_Check div')[0].className = 'active'
  1841. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1842. } else {
  1843. $('.U_PBL_Check div')[1].className = 'active'
  1844. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1845. }
  1846. //初始化桌面图标
  1847. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1848. if (type == 2) {
  1849. U.MD.D.I.openApplication("project")
  1850. }
  1851. }
  1852. /**
  1853. * 隐藏任务栏
  1854. *
  1855. * @param {element} 桌面元素
  1856. */
  1857. U.MD.D.I.hiddenTaskbar = function (el) {
  1858. //任务栏位置变小
  1859. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1860. //桌面的位置变大
  1861. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1862. }
  1863. /**
  1864. * 隐藏任务栏
  1865. *
  1866. * @param {element} 桌面元素
  1867. */
  1868. U.MD.D.I.hiddenTaskbarout = function (el) {
  1869. //任务栏位置变小
  1870. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1871. //任务栏位置变化
  1872. U.selectEl(el).css({ "bottom": "-60px" });
  1873. //桌面的位置变大
  1874. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1875. }
  1876. }
  1877. /**
  1878. * 初始化打印桌面图标
  1879. *
  1880. * @param {element} 桌面元素
  1881. */
  1882. U.MD.D.I.initDesktopIcons = function (el, type) {
  1883. var i, //用于循环
  1884. _content, //桌面图标元素
  1885. _iconcontent, //桌面图标元素
  1886. _frag = $$("frag"), //定义一个碎片元素
  1887. _type = US.userInfo.type,
  1888. _org = US.userInfo.org,
  1889. _oid = US.userInfo.organizeid,
  1890. _role = US.userInfo.role,
  1891. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1892. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1893. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1894. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1895. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1896. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1897. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1898. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1899. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1900. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1901. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1902. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1903. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1904. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1905. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1906. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1907. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1908. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1909. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1910. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1911. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1912. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1913. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1914. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1915. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1916. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1917. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1918. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1919. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1920. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1921. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1922. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1923. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1924. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1925. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1926. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1927. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1928. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1929. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1930. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1931. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1932. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1933. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1934. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1935. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1936. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1937. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1938. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1939. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1940. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1941. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1942. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1943. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1944. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1945. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1946. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1947. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1948. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1949. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1950. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1951. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1952. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1953. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1954. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1955. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1956. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1957. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1958. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1959. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1960. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1961. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1962. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1963. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1964. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1965. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1966. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1967. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1968. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1969. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1970. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1971. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1972. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1973. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1974. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1975. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1976. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1977. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1978. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1979. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1980. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1981. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1982. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1983. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1984. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1985. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1986. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1987. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1988. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1989. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1990. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1991. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1992. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1993. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1994. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1995. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1996. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1997. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1998. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1999. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2000. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2001. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2002. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2003. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2004. 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'];
  2005. 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'];
  2006. //清楚桌面图标
  2007. el.innerHTML = "";
  2008. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2009. _teacherDesktopIconInfo.push(
  2010. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2011. { "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)" } },
  2012. )
  2013. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2014. }
  2015. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2016. _teacherDesktopIconInfo.push(
  2017. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2018. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2021. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2022. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2023. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2024. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2025. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2026. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2027. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2028. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2029. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2030. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2031. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2032. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2033. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2034. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2035. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2036. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2037. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2038. )
  2039. }
  2040. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2041. _teacherDesktopIconInfo.push(
  2042. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2043. )
  2044. }
  2045. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2046. // _teacherDesktopIconInfo.push(
  2047. // )
  2048. // }
  2049. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2050. _teacherDesktopIconInfo.push(
  2051. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2052. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2053. )
  2054. }
  2055. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2056. _teacherDesktopIconInfo.push(
  2057. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2058. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2059. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2061. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2062. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2063. )
  2064. _studentDesktopIconInfo.push(
  2065. )
  2066. }
  2067. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2068. _teacherDesktopIconInfo.push(
  2069. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2070. )
  2071. _studentDesktopIconInfo.push(
  2072. )
  2073. }
  2074. //010606 组织
  2075. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2076. _teacherDesktopIconInfo.push(
  2077. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2078. )
  2079. _studentDesktopIconInfo.push(
  2080. )
  2081. }
  2082. //麒麟二中 和 民新小学
  2083. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2084. _teacherDesktopIconInfo.push(
  2085. )
  2086. }
  2087. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2088. _teacherDesktopIconInfo.push(
  2089. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2090. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2091. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2092. )
  2093. }
  2094. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2095. _hkTeacherDeskIconInfo.push(
  2096. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2097. )
  2098. }
  2099. //北师大附中(010601)
  2100. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2101. // _teacherDesktopIconInfo.push(
  2102. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2103. // )
  2104. // _studentDesktopIconInfo.push(
  2105. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2106. // )
  2107. // }
  2108. //樂善堂余近卿中學
  2109. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2110. _teacherDesktopIconInfo.push(
  2111. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2112. )
  2113. }
  2114. // Education Artificial Intelligence
  2115. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2116. _teacherDesktopIconInfo.push(
  2117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2118. )
  2119. }
  2120. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2121. _teacherDesktopIconInfo.push(
  2122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2123. )
  2124. }
  2125. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2126. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2127. _teacherDesktopIconInfo.push(
  2128. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2130. )
  2131. }
  2132. //麒麟二中
  2133. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2134. _studentDesktopIconInfo.push(
  2135. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2136. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2137. )
  2138. }
  2139. //万科双语
  2140. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2141. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2142. if (el.Name == '项目管理') {
  2143. el.Name = 'PBL项目'
  2144. }
  2145. return el
  2146. })
  2147. _studentDesktopIconInfo3.push(
  2148. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2149. )
  2150. }
  2151. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2152. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2153. return el.Name != '魔盒识字' && el.Name != '24点'
  2154. })
  2155. }
  2156. 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) {
  2157. _studentDesktopIconInfo.push(
  2158. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2159. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2160. )
  2161. }
  2162. //循环创建桌面图标
  2163. if (type == 1) {
  2164. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2165. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2166. _content = $$("div", {
  2167. className: "U_MD_D_KO",
  2168. "onmousedown": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_studentDesktopIconInfo[i]]),
  2172. "onclick": U.UF.C.closure(function (obj) {
  2173. //防止拖动图标即打开了桌面应用
  2174. U.MD.D.click(this, obj);
  2175. }, [_studentDesktopIconInfo[i]])
  2176. }, _frag); //
  2177. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2178. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2179. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2180. }
  2181. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2182. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2183. _content = $$("div", {
  2184. className: "U_MD_D_KO",
  2185. "onmousedown": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2189. "onclick": U.UF.C.closure(function (obj) {
  2190. //防止拖动图标即打开了桌面应用
  2191. U.MD.D.click(this, obj);
  2192. }, [_hkZJLSStudentDeskIconInfo[i]])
  2193. }, _frag); //
  2194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2197. } //
  2198. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2199. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2200. _content = $$("div", {
  2201. className: "U_MD_D_KO",
  2202. "onmousedown": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_ytyStudentDeskIconInfo[i]]),
  2206. "onclick": U.UF.C.closure(function (obj) {
  2207. //防止拖动图标即打开了桌面应用
  2208. U.MD.D.click(this, obj);
  2209. }, [_ytyStudentDeskIconInfo[i]])
  2210. }, _frag); //
  2211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2214. } //
  2215. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2216. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2217. _content = $$("div", {
  2218. className: "U_MD_D_KO",
  2219. "onmousedown": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_jccssylStudentDeskIconInfo[i]]),
  2223. "onclick": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_jccssylStudentDeskIconInfo[i]])
  2227. }, _frag); //
  2228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2231. }
  2232. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2233. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2234. _content = $$("div", {
  2235. className: "U_MD_D_KO",
  2236. "onmousedown": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_scnuaiStudentDeskIconInfo[i]]),
  2240. "onclick": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_scnuaiStudentDeskIconInfo[i]])
  2244. }, _frag); //
  2245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2248. }
  2249. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2250. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2251. _content = $$("div", {
  2252. className: "U_MD_D_KO",
  2253. "onmousedown": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_caleStudentDeskIconInfo[i]]),
  2257. "onclick": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_caleStudentDeskIconInfo[i]])
  2261. }, _frag); //
  2262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2265. }
  2266. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2267. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2268. _content = $$("div", {
  2269. className: "U_MD_D_KO",
  2270. "onmousedown": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_thuioeStudentDeskIconInfo[i]]),
  2274. "onclick": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_thuioeStudentDeskIconInfo[i]])
  2278. }, _frag); //
  2279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2282. }
  2283. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2284. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2285. _content = $$("div", {
  2286. className: "U_MD_D_KO",
  2287. "onmousedown": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_tpcStudentDeskIconInfo[i]]),
  2291. "onclick": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_tpcStudentDeskIconInfo[i]])
  2295. }, _frag); //
  2296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2299. } //
  2300. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2301. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2302. _content = $$("div", {
  2303. className: "U_MD_D_KO",
  2304. "onmousedown": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_chjyjStudentDeskIconInfo[i]]),
  2308. "onclick": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_chjyjStudentDeskIconInfo[i]])
  2312. }, _frag); //
  2313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2316. }
  2317. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2318. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2319. _content = $$("div", {
  2320. className: "U_MD_D_KO",
  2321. "onmousedown": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_szjkyStudentDeskIconInfo[i]]),
  2325. "onclick": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_szjkyStudentDeskIconInfo[i]])
  2329. }, _frag); //
  2330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2333. }
  2334. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2335. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2336. _content = $$("div", {
  2337. className: "U_MD_D_KO",
  2338. "onmousedown": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_x020201StudentDeskIconInfo[i]]),
  2342. "onclick": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_x020201StudentDeskIconInfo[i]])
  2346. }, _frag); //
  2347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2350. }
  2351. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2352. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2353. _content = $$("div", {
  2354. className: "U_MD_D_KO",
  2355. "onmousedown": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_SCNUETStudentDeskIconInfo[i]]),
  2359. "onclick": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_SCNUETStudentDeskIconInfo[i]])
  2363. }, _frag); //
  2364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2367. }
  2368. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2369. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2370. _content = $$("div", {
  2371. className: "U_MD_D_KO",
  2372. "onmousedown": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_dseiStudentDeskIconInfo[i]]),
  2376. "onclick": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_dseiStudentDeskIconInfo[i]])
  2380. }, _frag); //
  2381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2384. }
  2385. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2386. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2387. _content = $$("div", {
  2388. className: "U_MD_D_KO",
  2389. "onmousedown": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2393. "onclick": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2397. }, _frag); //
  2398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2401. }
  2402. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2403. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2404. _content = $$("div", {
  2405. className: "U_MD_D_KO",
  2406. "onmousedown": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_nsfxStudentDeskIconInfo[i]]),
  2410. "onclick": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_nsfxStudentDeskIconInfo[i]])
  2414. }, _frag); //
  2415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2418. }
  2419. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2420. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2421. _content = $$("div", {
  2422. className: "U_MD_D_KO",
  2423. "onmousedown": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_stiaStudentDeskIconInfo[i]]),
  2427. "onclick": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_stiaStudentDeskIconInfo[i]])
  2431. }, _frag); //
  2432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2435. }
  2436. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2437. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2438. _content = $$("div", {
  2439. className: "U_MD_D_KO",
  2440. "onmousedown": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_szdjgStudentDeskIconInfo[i]]),
  2444. "onclick": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_szdjgStudentDeskIconInfo[i]])
  2448. }, _frag); //
  2449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2452. }
  2453. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2454. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2455. _content = $$("div", {
  2456. className: "U_MD_D_KO",
  2457. "onmousedown": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_x010607StudentDeskIconInfo[i]]),
  2461. "onclick": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_x010607StudentDeskIconInfo[i]])
  2465. }, _frag); //
  2466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2469. }
  2470. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2471. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_xhlyStudentDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_xhlyStudentDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2488. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2489. _content = $$("div", {
  2490. className: "U_MD_D_KO",
  2491. "onmousedown": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2495. "onclick": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2499. }, _frag); //
  2500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2503. }
  2504. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2505. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2506. _content = $$("div", {
  2507. className: "U_MD_D_KO",
  2508. "onmousedown": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_x010503StudentDeskIconInfo[i]]),
  2512. "onclick": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_x010503StudentDeskIconInfo[i]])
  2516. }, _frag); //
  2517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2520. }
  2521. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2522. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_x010504StudentDeskIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_x010504StudentDeskIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2539. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2540. _content = $$("div", {
  2541. className: "U_MD_D_KO",
  2542. "onmousedown": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x010204StudentDeskIconInfo[i]]),
  2546. "onclick": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_x010204StudentDeskIconInfo[i]])
  2550. }, _frag); //
  2551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2554. }
  2555. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2556. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2557. _content = $$("div", {
  2558. className: "U_MD_D_KO",
  2559. "onmousedown": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_x320101StudentDeskIconInfo[i]]),
  2563. "onclick": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_x320101StudentDeskIconInfo[i]])
  2567. }, _frag); //
  2568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2571. }
  2572. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2573. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2574. _content = $$("div", {
  2575. className: "U_MD_D_KO",
  2576. "onmousedown": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_trailStudentDeskIconInfo[i]]),
  2580. "onclick": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_trailStudentDeskIconInfo[i]])
  2584. }, _frag); //
  2585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2588. }
  2589. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2590. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2591. _content = $$("div", {
  2592. className: "U_MD_D_KO",
  2593. "onmousedown": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2597. "onclick": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2601. }, _frag); //
  2602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2605. }
  2606. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2607. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2608. _content = $$("div", {
  2609. className: "U_MD_D_KO",
  2610. "onmousedown": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_x010608StudentDeskIconInfo[i]]),
  2614. "onclick": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_x010608StudentDeskIconInfo[i]])
  2618. }, _frag); //
  2619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2622. }
  2623. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2624. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2625. _content = $$("div", {
  2626. className: "U_MD_D_KO",
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_x010611StudentDeskIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010611StudentDeskIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2639. }
  2640. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2641. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2642. _content = $$("div", {
  2643. className: "U_MD_D_KO",
  2644. "onmousedown": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_tianyuantudentDeskIconInfo[i]]),
  2648. "onclick": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_tianyuantudentDeskIconInfo[i]])
  2652. }, _frag); //
  2653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2656. }
  2657. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2658. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2659. _content = $$("div", {
  2660. className: "U_MD_D_KO",
  2661. "onmousedown": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_siesStudentDeskIconInfo[i]]),
  2665. "onclick": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_siesStudentDeskIconInfo[i]])
  2669. }, _frag); //
  2670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2673. }
  2674. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2675. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2676. _content = $$("div", {
  2677. className: "U_MD_D_KO",
  2678. "onmousedown": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_guzmsStudentDeskIconInfo[i]]),
  2682. "onclick": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_guzmsStudentDeskIconInfo[i]])
  2686. }, _frag); //
  2687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2690. }
  2691. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2692. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2693. _content = $$("div", {
  2694. className: "U_MD_D_KO",
  2695. "onmousedown": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_hkStudentDeskIconInfo[i]]),
  2699. "onclick": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_hkStudentDeskIconInfo[i]])
  2703. }, _frag); //
  2704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2707. }
  2708. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2709. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2710. _content = $$("div", {
  2711. className: "U_MD_D_KO",
  2712. "onmousedown": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_hkaceStudentDeskIconInfo[i]]),
  2716. "onclick": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_hkaceStudentDeskIconInfo[i]])
  2720. }, _frag); //
  2721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2724. }
  2725. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2726. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_BSDNSstudentDesktopIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2743. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2744. _content = $$("div", {
  2745. className: "U_MD_D_KO",
  2746. "onmousedown": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_cocobizStudentDeskIconInfo[i]]),
  2750. "onclick": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_cocobizStudentDeskIconInfo[i]])
  2754. }, _frag); //
  2755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2758. }
  2759. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2760. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2761. _content = $$("div", {
  2762. className: "U_MD_D_KO",
  2763. "onmousedown": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2767. "onclick": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_xxzjkyStudentDeskIconInfo[i]])
  2771. }, _frag); //
  2772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2775. }
  2776. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2777. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_studentDesktopIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_studentDesktopIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2792. }
  2793. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2794. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_tcStudentDeskIconInfo[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_tcStudentDeskIconInfo[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2809. }
  2810. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2811. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2812. _content = $$("div", {
  2813. className: "U_MD_D_KO",
  2814. "onmousedown": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_szscStudentDeskIconInfo[i]]),
  2818. "onclick": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_szscStudentDeskIconInfo[i]])
  2822. }, _frag); //
  2823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2826. }
  2827. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2828. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_studentDesktopIconInfo3[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_studentDesktopIconInfo3[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2843. }
  2844. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2845. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_studentDesktopIconInfo2[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_studentDesktopIconInfo2[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2862. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2863. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2864. continue
  2865. }
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_wanketeacherDesktopIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_wanketeacherDesktopIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2882. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_wankeAdminDesktopIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_wankeAdminDesktopIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2899. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2900. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2901. continue
  2902. }
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_scnuaiTeacherDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2919. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2920. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2921. continue
  2922. }
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_BSDNSteacherDesktopIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2939. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_scnuaiAdminDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_scnuaiAdminDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2956. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2957. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2958. continue
  2959. }
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_jccssylTeacherDeskIconInfo[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_jccssylTeacherDeskIconInfo[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2974. }
  2975. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2976. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2977. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2978. continue
  2979. }
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_caleTeacherDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_caleTeacherDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2996. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_tpcOrganizerDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_tpcOrganizerDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3013. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3014. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3015. continue
  3016. }
  3017. _content = $$("div", {
  3018. className: "U_MD_D_KO",
  3019. "onmousedown": U.UF.C.closure(function (obj) {
  3020. //防止拖动图标即打开了桌面应用
  3021. U.MD.D.click(this, obj);
  3022. }, [_tpcTeacherDeskIconInfo[i]]),
  3023. "onclick": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_tpcTeacherDeskIconInfo[i]])
  3027. }, _frag); //
  3028. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3029. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3030. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3031. }
  3032. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3033. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3034. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3035. continue
  3036. }
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_teacherDesktopIconInfo2[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_teacherDesktopIconInfo2[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3051. }
  3052. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3053. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3054. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3055. continue
  3056. }
  3057. _content = $$("div", {
  3058. className: "U_MD_D_KO",
  3059. "onmousedown": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_thuioeTeacherDeskIconInfo[i]]),
  3063. "onclick": U.UF.C.closure(function (obj) {
  3064. //防止拖动图标即打开了桌面应用
  3065. U.MD.D.click(this, obj);
  3066. }, [_thuioeTeacherDeskIconInfo[i]])
  3067. }, _frag); //
  3068. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3069. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3070. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3071. }
  3072. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3073. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3074. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3075. continue
  3076. }
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_lotechTeacherDeskIconInfo[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_lotechTeacherDeskIconInfo[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3091. }//
  3092. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3093. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3094. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3095. continue
  3096. }
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3113. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3114. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3115. continue
  3116. }
  3117. _content = $$("div", {
  3118. className: "U_MD_D_KO",
  3119. "onmousedown": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_siesTeacherDeskIconInfo[i]]),
  3123. "onclick": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_siesTeacherDeskIconInfo[i]])
  3127. }, _frag); //
  3128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3131. }
  3132. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3133. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3134. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3135. continue
  3136. }
  3137. _content = $$("div", {
  3138. className: "U_MD_D_KO",
  3139. "onmousedown": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_guzmsTeacherDeskIconInfo[i]]),
  3143. "onclick": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_guzmsTeacherDeskIconInfo[i]])
  3147. }, _frag); //
  3148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3151. }
  3152. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3153. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3154. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3155. continue
  3156. }
  3157. _content = $$("div", {
  3158. className: "U_MD_D_KO",
  3159. "onmousedown": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_longhuaTeacherDeskIconInfo[i]]),
  3163. "onclick": U.UF.C.closure(function (obj) {
  3164. //防止拖动图标即打开了桌面应用
  3165. U.MD.D.click(this, obj);
  3166. }, [_longhuaTeacherDeskIconInfo[i]])
  3167. }, _frag); //
  3168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3171. }
  3172. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3173. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3174. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3175. continue
  3176. }
  3177. _content = $$("div", {
  3178. className: "U_MD_D_KO",
  3179. "onmousedown": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_ytyTeacherDeskIconInfo[i]]),
  3183. "onclick": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_ytyTeacherDeskIconInfo[i]])
  3187. }, _frag); //
  3188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3191. }
  3192. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3193. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3194. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3195. continue
  3196. }
  3197. _content = $$("div", {
  3198. className: "U_MD_D_KO",
  3199. "onmousedown": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3203. "onclick": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_yunhaiTeacherDeskIconInfo[i]])
  3207. }, _frag); //
  3208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3211. } //_hkStudentDeskIconInfo
  3212. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3213. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3214. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3215. continue
  3216. }
  3217. _content = $$("div", {
  3218. className: "U_MD_D_KO",
  3219. "onmousedown": U.UF.C.closure(function (obj) {
  3220. //防止拖动图标即打开了桌面应用
  3221. U.MD.D.click(this, obj);
  3222. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3223. "onclick": U.UF.C.closure(function (obj) {
  3224. //防止拖动图标即打开了桌面应用
  3225. U.MD.D.click(this, obj);
  3226. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3227. }, _frag); //
  3228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3231. }
  3232. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3233. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3234. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3235. continue
  3236. }
  3237. _content = $$("div", {
  3238. className: "U_MD_D_KO",
  3239. "onmousedown": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_hkTeacherDeskIconInfo[i]]),
  3243. "onclick": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_hkTeacherDeskIconInfo[i]])
  3247. }, _frag); //
  3248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3251. }
  3252. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3253. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3254. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3255. continue
  3256. }
  3257. _content = $$("div", {
  3258. className: "U_MD_D_KO",
  3259. "onmousedown": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_hkaceTeacherDeskIconInfo[i]]),
  3263. "onclick": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_hkaceTeacherDeskIconInfo[i]])
  3267. }, _frag); //
  3268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3271. }
  3272. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3273. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3274. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3275. continue
  3276. }
  3277. _content = $$("div", {
  3278. className: "U_MD_D_KO",
  3279. "onmousedown": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_cocobizTeacherDeskIconInfo[i]]),
  3283. "onclick": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_cocobizTeacherDeskIconInfo[i]])
  3287. }, _frag); //
  3288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3291. }
  3292. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3293. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3294. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3295. continue
  3296. }
  3297. _content = $$("div", {
  3298. className: "U_MD_D_KO",
  3299. "onmousedown": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3303. "onclick": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3307. }, _frag); //
  3308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3311. }
  3312. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3313. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_gdjgAdminDeskIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_gdjgAdminDeskIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3328. }
  3329. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3330. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3331. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3332. continue
  3333. }
  3334. _content = $$("div", {
  3335. className: "U_MD_D_KO",
  3336. "onmousedown": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_gdjgTeacherDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_gdjgTeacherDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3350. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3351. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3352. continue
  3353. }
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szherTeacherDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szherTeacherDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3370. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_heyuannAdminDeskIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_heyuannAdminDeskIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3387. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3388. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3389. continue
  3390. }
  3391. _content = $$("div", {
  3392. className: "U_MD_D_KO",
  3393. "onmousedown": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_heyuanTeacherDeskIconInfo[i]]),
  3397. "onclick": U.UF.C.closure(function (obj) {
  3398. //防止拖动图标即打开了桌面应用
  3399. U.MD.D.click(this, obj);
  3400. }, [_heyuanTeacherDeskIconInfo[i]])
  3401. }, _frag); //
  3402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3405. } //
  3406. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3407. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_dseiAdminDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_dseiAdminDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3424. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_dseiTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_dseiTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. } //
  3443. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3444. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_chjyjAdminDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_chjyjAdminDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3459. }//
  3460. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3461. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3462. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_chjyjTeacherDeskIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_chjyjTeacherDeskIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3481. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_szjkyAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_szjkyAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }//
  3497. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3498. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3499. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_szjkyTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_szjkyTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3518. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3519. _content = $$("div", {
  3520. className: "U_MD_D_KO",
  3521. "onmousedown": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_x020201AdminDeskIconInfo[i]]),
  3525. "onclick": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_x020201AdminDeskIconInfo[i]])
  3529. }, _frag); //
  3530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3533. }//
  3534. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3535. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3536. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3537. continue
  3538. }
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_x020201TeacherDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_x020201TeacherDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3555. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_SCNUETAdminDeskIconInfo[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_SCNUETAdminDeskIconInfo[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3570. }//
  3571. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3572. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3573. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3574. continue
  3575. }
  3576. _content = $$("div", {
  3577. className: "U_MD_D_KO",
  3578. "onmousedown": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3582. "onclick": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_SCNUETTeacherDeskIconInfo[i]])
  3586. }, _frag); //
  3587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3590. }
  3591. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3592. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_futianAdminDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_futianAdminDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3609. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_futianTeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_futianTeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3629. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3630. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3631. continue
  3632. }
  3633. _content = $$("div", {
  3634. className: "U_MD_D_KO",
  3635. "onmousedown": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_MingdeTeacherDeskIcon[i]]),
  3639. "onclick": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_MingdeTeacherDeskIcon[i]])
  3643. }, _frag); //
  3644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3647. }
  3648. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3649. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3650. _content = $$("div", {
  3651. className: "U_MD_D_KO",
  3652. "onmousedown": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_lhsAdminDesktopIconInfo[i]]),
  3656. "onclick": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_lhsAdminDesktopIconInfo[i]])
  3660. }, _frag); //
  3661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3664. }
  3665. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3666. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3667. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3668. continue
  3669. }
  3670. _content = $$("div", {
  3671. className: "U_MD_D_KO",
  3672. "onmousedown": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_lhsteacherDesktopIconInfo[i]]),
  3676. "onclick": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_lhsteacherDesktopIconInfo[i]])
  3680. }, _frag); //
  3681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3684. }
  3685. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3686. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3687. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3688. continue
  3689. }
  3690. _content = $$("div", {
  3691. className: "U_MD_D_KO",
  3692. "onmousedown": U.UF.C.closure(function (obj) {
  3693. //防止拖动图标即打开了桌面应用
  3694. U.MD.D.click(this, obj);
  3695. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3696. "onclick": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_zhoujiateacherDesktopIconInfo[i]])
  3700. }, _frag); //
  3701. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3702. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3703. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3704. }
  3705. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3706. for (i = 0; i < _hanDeskIcon.length; i++) {
  3707. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3708. continue
  3709. }
  3710. _content = $$("div", {
  3711. className: "U_MD_D_KO",
  3712. "onmousedown": U.UF.C.closure(function (obj) {
  3713. //防止拖动图标即打开了桌面应用
  3714. U.MD.D.click(this, obj);
  3715. }, [_hanDeskIcon[i]]),
  3716. "onclick": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_hanDeskIcon[i]])
  3720. }, _frag); //
  3721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3724. }
  3725. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3726. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3727. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3728. continue
  3729. }
  3730. _content = $$("div", {
  3731. className: "U_MD_D_KO",
  3732. "onmousedown": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_orgStemDeskIcon[i]]),
  3736. "onclick": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_orgStemDeskIcon[i]])
  3740. }, _frag); //
  3741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3744. }
  3745. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3746. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3747. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3748. continue
  3749. }
  3750. _content = $$("div", {
  3751. className: "U_MD_D_KO",
  3752. "onmousedown": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_szulsDeskIcon[i]]),
  3756. "onclick": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_szulsDeskIcon[i]])
  3760. }, _frag); //
  3761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3764. }
  3765. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3766. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3767. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3768. continue
  3769. }
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_orgDesktopIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_orgDesktopIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3784. }
  3785. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3786. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3787. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3788. continue
  3789. }
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_schoolDesktopIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_schoolDesktopIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3806. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3807. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3808. continue
  3809. }
  3810. _content = $$("div", {
  3811. className: "U_MD_D_KO",
  3812. "onmousedown": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_GMteacherDesktopIconInfo[i]]),
  3816. "onclick": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_GMteacherDesktopIconInfo[i]])
  3820. }, _frag); //
  3821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3824. }
  3825. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3826. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3827. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3828. continue
  3829. }
  3830. _content = $$("div", {
  3831. className: "U_MD_D_KO",
  3832. "onmousedown": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_SONGteacherDesktopIconInfo[i]]),
  3836. "onclick": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_SONGteacherDesktopIconInfo[i]])
  3840. }, _frag); //
  3841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3844. }
  3845. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3846. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3847. _content = $$("div", {
  3848. className: "U_MD_D_KO",
  3849. "onmousedown": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_GMstudentDesktopIconInfo[i]]),
  3853. "onclick": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_GMstudentDesktopIconInfo[i]])
  3857. }, _frag); //
  3858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3861. }
  3862. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3863. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3864. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3865. continue
  3866. }
  3867. _content = $$("div", {
  3868. className: "U_MD_D_KO",
  3869. "onmousedown": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_tcTeacherDeskIconInfo[i]]),
  3873. "onclick": U.UF.C.closure(function (obj) {
  3874. //防止拖动图标即打开了桌面应用
  3875. U.MD.D.click(this, obj);
  3876. }, [_tcTeacherDeskIconInfo[i]])
  3877. }, _frag); //
  3878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3881. }
  3882. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3883. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3884. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3885. continue
  3886. }
  3887. _content = $$("div", {
  3888. className: "U_MD_D_KO",
  3889. "onmousedown": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_tcOrganizerDeskIconInfo[i]]),
  3893. "onclick": U.UF.C.closure(function (obj) {
  3894. //防止拖动图标即打开了桌面应用
  3895. U.MD.D.click(this, obj);
  3896. }, [_tcOrganizerDeskIconInfo[i]])
  3897. }, _frag); //
  3898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3901. }
  3902. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3903. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3904. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3905. continue
  3906. }
  3907. _content = $$("div", {
  3908. className: "U_MD_D_KO",
  3909. "onmousedown": U.UF.C.closure(function (obj) {
  3910. //防止拖动图标即打开了桌面应用
  3911. U.MD.D.click(this, obj);
  3912. }, [_szscTeacherDeskIconInfo[i]]),
  3913. "onclick": U.UF.C.closure(function (obj) {
  3914. //防止拖动图标即打开了桌面应用
  3915. U.MD.D.click(this, obj);
  3916. }, [_szscTeacherDeskIconInfo[i]])
  3917. }, _frag); //
  3918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3921. }
  3922. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3923. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3924. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3925. continue
  3926. }
  3927. _content = $$("div", {
  3928. className: "U_MD_D_KO",
  3929. "onmousedown": U.UF.C.closure(function (obj) {
  3930. //防止拖动图标即打开了桌面应用
  3931. U.MD.D.click(this, obj);
  3932. }, [_szscOrganizerDeskIconInfo[i]]),
  3933. "onclick": U.UF.C.closure(function (obj) {
  3934. //防止拖动图标即打开了桌面应用
  3935. U.MD.D.click(this, obj);
  3936. }, [_szscOrganizerDeskIconInfo[i]])
  3937. }, _frag); //
  3938. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3941. }
  3942. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3943. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3944. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3945. continue
  3946. }
  3947. _content = $$("div", {
  3948. className: "U_MD_D_KO",
  3949. "onmousedown": U.UF.C.closure(function (obj) {
  3950. //防止拖动图标即打开了桌面应用
  3951. U.MD.D.click(this, obj);
  3952. }, [_nsfxTeacherDeskIconInfo[i]]),
  3953. "onclick": U.UF.C.closure(function (obj) {
  3954. //防止拖动图标即打开了桌面应用
  3955. U.MD.D.click(this, obj);
  3956. }, [_nsfxTeacherDeskIconInfo[i]])
  3957. }, _frag); //
  3958. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3959. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3960. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3961. }
  3962. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3963. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3964. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3965. continue
  3966. }
  3967. _content = $$("div", {
  3968. className: "U_MD_D_KO",
  3969. "onmousedown": U.UF.C.closure(function (obj) {
  3970. //防止拖动图标即打开了桌面应用
  3971. U.MD.D.click(this, obj);
  3972. }, [_stiaTeacherDeskIconInfo[i]]),
  3973. "onclick": U.UF.C.closure(function (obj) {
  3974. //防止拖动图标即打开了桌面应用
  3975. U.MD.D.click(this, obj);
  3976. }, [_stiaTeacherDeskIconInfo[i]])
  3977. }, _frag); //
  3978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3981. }
  3982. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3983. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3984. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3985. continue
  3986. }
  3987. _content = $$("div", {
  3988. className: "U_MD_D_KO",
  3989. "onmousedown": U.UF.C.closure(function (obj) {
  3990. //防止拖动图标即打开了桌面应用
  3991. U.MD.D.click(this, obj);
  3992. }, [_szdjgTeacherDeskIconInfo[i]]),
  3993. "onclick": U.UF.C.closure(function (obj) {
  3994. //防止拖动图标即打开了桌面应用
  3995. U.MD.D.click(this, obj);
  3996. }, [_szdjgTeacherDeskIconInfo[i]])
  3997. }, _frag); //
  3998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4001. }
  4002. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4003. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4004. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4005. continue
  4006. }
  4007. _content = $$("div", {
  4008. className: "U_MD_D_KO",
  4009. "onmousedown": U.UF.C.closure(function (obj) {
  4010. //防止拖动图标即打开了桌面应用
  4011. U.MD.D.click(this, obj);
  4012. }, [_x010607TeacherDeskIconInfo[i]]),
  4013. "onclick": U.UF.C.closure(function (obj) {
  4014. //防止拖动图标即打开了桌面应用
  4015. U.MD.D.click(this, obj);
  4016. }, [_x010607TeacherDeskIconInfo[i]])
  4017. }, _frag); //
  4018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4021. }
  4022. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4023. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4024. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4025. continue
  4026. }
  4027. _content = $$("div", {
  4028. className: "U_MD_D_KO",
  4029. "onmousedown": U.UF.C.closure(function (obj) {
  4030. //防止拖动图标即打开了桌面应用
  4031. U.MD.D.click(this, obj);
  4032. }, [_xhlyTeacherDeskIconInfo[i]]),
  4033. "onclick": U.UF.C.closure(function (obj) {
  4034. //防止拖动图标即打开了桌面应用
  4035. U.MD.D.click(this, obj);
  4036. }, [_xhlyTeacherDeskIconInfo[i]])
  4037. }, _frag); //
  4038. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4039. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4040. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4041. }
  4042. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4043. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4044. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4045. continue
  4046. }
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4061. }
  4062. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4063. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4064. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_x010503TeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_x010503TeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4083. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4084. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4085. continue
  4086. }
  4087. _content = $$("div", {
  4088. className: "U_MD_D_KO",
  4089. "onmousedown": U.UF.C.closure(function (obj) {
  4090. //防止拖动图标即打开了桌面应用
  4091. U.MD.D.click(this, obj);
  4092. }, [_x010504TeacherDeskIconInfo[i]]),
  4093. "onclick": U.UF.C.closure(function (obj) {
  4094. //防止拖动图标即打开了桌面应用
  4095. U.MD.D.click(this, obj);
  4096. }, [_x010504TeacherDeskIconInfo[i]])
  4097. }, _frag); //
  4098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4101. }
  4102. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4103. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4104. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4105. continue
  4106. }
  4107. _content = $$("div", {
  4108. className: "U_MD_D_KO",
  4109. "onmousedown": U.UF.C.closure(function (obj) {
  4110. //防止拖动图标即打开了桌面应用
  4111. U.MD.D.click(this, obj);
  4112. }, [_x010204TeacherDeskIconInfo[i]]),
  4113. "onclick": U.UF.C.closure(function (obj) {
  4114. //防止拖动图标即打开了桌面应用
  4115. U.MD.D.click(this, obj);
  4116. }, [_x010204TeacherDeskIconInfo[i]])
  4117. }, _frag); //
  4118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4121. }
  4122. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4123. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4124. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4125. continue
  4126. }
  4127. _content = $$("div", {
  4128. className: "U_MD_D_KO",
  4129. "onmousedown": U.UF.C.closure(function (obj) {
  4130. //防止拖动图标即打开了桌面应用
  4131. U.MD.D.click(this, obj);
  4132. }, [_x320101TeacherDeskIconInfo[i]]),
  4133. "onclick": U.UF.C.closure(function (obj) {
  4134. //防止拖动图标即打开了桌面应用
  4135. U.MD.D.click(this, obj);
  4136. }, [_x320101TeacherDeskIconInfo[i]])
  4137. }, _frag); //
  4138. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4139. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4140. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4141. }
  4142. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4143. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4144. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4145. continue
  4146. }
  4147. _content = $$("div", {
  4148. className: "U_MD_D_KO",
  4149. "onmousedown": U.UF.C.closure(function (obj) {
  4150. //防止拖动图标即打开了桌面应用
  4151. U.MD.D.click(this, obj);
  4152. }, [_trailTeacherDeskIconInfo[i]]),
  4153. "onclick": U.UF.C.closure(function (obj) {
  4154. //防止拖动图标即打开了桌面应用
  4155. U.MD.D.click(this, obj);
  4156. }, [_trailTeacherDeskIconInfo[i]])
  4157. }, _frag); //
  4158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4161. }
  4162. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4163. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4164. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4165. continue
  4166. }
  4167. _content = $$("div", {
  4168. className: "U_MD_D_KO",
  4169. "onmousedown": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4173. "onclick": U.UF.C.closure(function (obj) {
  4174. //防止拖动图标即打开了桌面应用
  4175. U.MD.D.click(this, obj);
  4176. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4177. }, _frag); //
  4178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4181. }
  4182. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4183. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4184. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4185. continue
  4186. }
  4187. _content = $$("div", {
  4188. className: "U_MD_D_KO",
  4189. "onmousedown": U.UF.C.closure(function (obj) {
  4190. //防止拖动图标即打开了桌面应用
  4191. U.MD.D.click(this, obj);
  4192. }, [_x010608TeacherDeskIconInfo[i]]),
  4193. "onclick": U.UF.C.closure(function (obj) {
  4194. //防止拖动图标即打开了桌面应用
  4195. U.MD.D.click(this, obj);
  4196. }, [_x010608TeacherDeskIconInfo[i]])
  4197. }, _frag); //
  4198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4201. }
  4202. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4203. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4204. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4205. continue
  4206. }
  4207. _content = $$("div", {
  4208. className: "U_MD_D_KO",
  4209. "onmousedown": U.UF.C.closure(function (obj) {
  4210. //防止拖动图标即打开了桌面应用
  4211. U.MD.D.click(this, obj);
  4212. }, [_x010611TeacherDeskIconInfo[i]]),
  4213. "onclick": U.UF.C.closure(function (obj) {
  4214. //防止拖动图标即打开了桌面应用
  4215. U.MD.D.click(this, obj);
  4216. }, [_x010611TeacherDeskIconInfo[i]])
  4217. }, _frag); //
  4218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4221. }
  4222. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4223. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4224. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4225. continue
  4226. }
  4227. _content = $$("div", {
  4228. className: "U_MD_D_KO",
  4229. "onmousedown": U.UF.C.closure(function (obj) {
  4230. //防止拖动图标即打开了桌面应用
  4231. U.MD.D.click(this, obj);
  4232. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4233. "onclick": U.UF.C.closure(function (obj) {
  4234. //防止拖动图标即打开了桌面应用
  4235. U.MD.D.click(this, obj);
  4236. }, [_tianyuanTeacherDeskIconInfo[i]])
  4237. }, _frag); //
  4238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4241. }
  4242. } else {
  4243. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4244. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4245. continue
  4246. }
  4247. _content = $$("div", {
  4248. className: "U_MD_D_KO",
  4249. "onmousedown": U.UF.C.closure(function (obj) {
  4250. //防止拖动图标即打开了桌面应用
  4251. U.MD.D.click(this, obj);
  4252. }, [_teacherDesktopIconInfo[i]]),
  4253. "onclick": U.UF.C.closure(function (obj) {
  4254. //防止拖动图标即打开了桌面应用
  4255. U.MD.D.click(this, obj);
  4256. }, [_teacherDesktopIconInfo[i]])
  4257. }, _frag); //
  4258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4261. }
  4262. }
  4263. } else {
  4264. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4265. _content = $$("div", {
  4266. className: "U_MD_D_KO",
  4267. style: { 'width': '124px', 'height': '145px' },
  4268. "onmousedown": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_easyDesktopIconInfo[i]]),
  4272. "onclick": U.UF.C.closure(function (obj) {
  4273. //防止拖动图标即打开了桌面应用
  4274. U.MD.D.click(this, obj);
  4275. }, [_easyDesktopIconInfo[i]])
  4276. }, _frag); //
  4277. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4280. }
  4281. }
  4282. if (type == 1) {
  4283. //加载好后给图标定位
  4284. U.MD.D.iconPostion($(_frag).Child());
  4285. } else {
  4286. //加载好后给图标定位
  4287. U.MD.D.iconPostion2($(_frag).Child());
  4288. }
  4289. //把图标加载到页面
  4290. el.appendChild(_frag);
  4291. }
  4292. /**
  4293. * 显示任务栏
  4294. *
  4295. * @param {element} 桌面元素
  4296. */
  4297. U.MD.D.I.displayTaskbar = function (el) {
  4298. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4299. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4300. //任务栏位置变化
  4301. U.selectEl(el).css({ "bottom": "0px" });
  4302. //桌面位置变话
  4303. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4304. }
  4305. }
  4306. //#region 桌面图标拖动逻辑
  4307. /**
  4308. * 桌面排列图标
  4309. *
  4310. * @param {element} 桌面元素
  4311. * @param {object} 上下相距的距离
  4312. * @param {object} 左右相距的距离
  4313. * @return {object} 命名空间
  4314. */
  4315. U.MD.D.iconPostion = function (childs, top, left) {
  4316. var i; //用于循环处理
  4317. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4318. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4319. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4320. for (i = 0; i < childs.length; i++) {
  4321. //如果竖排top超过了范围处理
  4322. if (top + 95 > US.height - 10) {
  4323. //left超过了页面范围处理,则向上重叠打印处理
  4324. if ((left + 180) > US.width) {
  4325. top -= 110;
  4326. left -= 90;
  4327. }
  4328. //没有超过范围,那么left+90添加到下一个竖排打印
  4329. else {
  4330. left += 90;
  4331. top = 15;
  4332. };
  4333. }
  4334. //给图标的位置赋值
  4335. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4336. if (i < childs.length - 1) {
  4337. //页面图标每次向下加95
  4338. top += 95;
  4339. }
  4340. }
  4341. //返回最后调用的图标的位置
  4342. return [top, left];
  4343. }
  4344. /**
  4345. * 桌面排列图标
  4346. *
  4347. * @param {element} 桌面元素
  4348. * @param {object} 上下相距的距离
  4349. * @param {object} 左右相距的距离
  4350. * @return {object} 命名空间
  4351. */
  4352. U.MD.D.iconPostion2 = function (childs, top, left) {
  4353. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4354. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4355. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4356. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4357. for (i = 0; i < childs.length; i++) {
  4358. //如果竖排top超过了范围处理
  4359. if (left + 150 > US.width - 10) {
  4360. //left超过了页面范围处理,则向上重叠打印处理
  4361. if ((top + 180) > US.Height) {
  4362. top -= 150;
  4363. left -= 150;
  4364. }
  4365. //没有超过范围,那么left+90添加到下一个竖排打印
  4366. else {
  4367. top += 150;
  4368. left = ol;
  4369. };
  4370. }
  4371. //给图标的位置赋值
  4372. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4373. if (i < childs.length - 1) {
  4374. //页面图标每次向下加95
  4375. left += 150;
  4376. }
  4377. }
  4378. //返回最后调用的图标的位置
  4379. return [top, left];
  4380. }
  4381. /**
  4382. * 桌面点击事件逻辑
  4383. *
  4384. * @param {element} 桌面元素
  4385. * @param {object} 上下相距的距离
  4386. * @param {object} 左右相距的距离
  4387. * @return {object} 命名空间
  4388. */
  4389. U.MD.D.click = function (el, obj) {
  4390. var _buttonnumber = event.button; //点击的按钮的事件值
  4391. var _userinfo = US.userInfo;
  4392. U.UF.EV.stopBubble(); //阻止向上冒泡
  4393. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4394. if (_buttonnumber < 2) {
  4395. //如果是click事件的处理
  4396. if (event.type == "click") {
  4397. //如果元素在mousemove事件中没有移动则出发click事件
  4398. if (!U.MD.D.I.IsDrag) {
  4399. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4400. U.alert("请先登录您的账号!");
  4401. setTimeout(() => {
  4402. U.MD.U.L.login();
  4403. }, 2000);
  4404. } else {
  4405. //打开应用处理
  4406. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4407. }
  4408. }
  4409. }
  4410. //如果是mouse事件的处理
  4411. else {
  4412. if (US.Config.type == '1') {
  4413. //拖动处理,添加拖动和拖动结束事件
  4414. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4415. }
  4416. }
  4417. U.MD.D.I.IsDrag = false;
  4418. }
  4419. }
  4420. /**
  4421. * 拖动的处理
  4422. *
  4423. */
  4424. U.MD.D.iconMove = function () {
  4425. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4426. U.MD.D.I.IsDrag = true;
  4427. }
  4428. /**
  4429. * 拖动结束后,这里是定位处理,以网状的形式定位
  4430. *
  4431. * @param {element} 拖动的元素
  4432. * @return {object} 命名空间
  4433. */
  4434. U.MD.D.iconUp = function (el) {
  4435. var _top = 15,
  4436. _left = 20,
  4437. _margin,
  4438. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4439. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4440. if (_positioninfo["OT"] > 15) {
  4441. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4442. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4443. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4444. }
  4445. if (_positioninfo["OL"] > 20) {
  4446. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4447. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4448. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4449. }
  4450. //while循环判断么一个重叠的元素
  4451. do {
  4452. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4453. _top = _positioninfo[0] + 95; //得到定位后的top
  4454. _left = _positioninfo[1]; //得到定位后的left
  4455. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4456. }
  4457. /**
  4458. * 判断拖动后图标是否重叠
  4459. *
  4460. * @param {element} 拖动的元素
  4461. * @param {element} 桌面所有的元素
  4462. * @param {array} 拖动元素的位置
  4463. ----------[0] 上 top
  4464. ----------[1] 左 left
  4465. * @return {object} 命名空间
  4466. */
  4467. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4468. //循环所有的图标
  4469. for (var i = 0; i < childs.length; i++) {
  4470. //判断有没有和该图标诶子重叠的元素
  4471. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4472. return childs[i]; //如果有返回
  4473. }
  4474. }
  4475. }
  4476. //#endregion
  4477. //#endregion
  4478. //#region 桌面应用
  4479. /**
  4480. * 打开应用
  4481. *
  4482. * @param {string} 类型
  4483. -----------------Disk 网盘系统
  4484. -----------------PDisk 学习系统网盘
  4485. -----------------Poto 图片
  4486. -----------------Video 视频
  4487. -----------------Music 音乐
  4488. -----------------Word word
  4489. -----------------Excel excel
  4490. -----------------Txt 记事本
  4491. -----------------PB 学习系统
  4492. -----------------Blog 朋友圈系统
  4493. -----------------FTP ftp系统
  4494. -----------------Group 好友群
  4495. -----------------SY 首页系统
  4496. -----------------Set 个人设置
  4497. -----------------XSet 系统设置
  4498. -----------------App 我们所有的app
  4499. -----------------BC c.1473.cn 平台
  4500. -----------------CWeb d.1473.cn 变成平台
  4501. -----------------其他的外联系统 我们统一用iframe打开
  4502. * @param {array} 类型
  4503. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4504. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4505. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4506. 如果第一个参数为其他,则无第二个参数
  4507. * @returns {array}
  4508. */
  4509. window.addEventListener('message', function (e) { // 监听 message 事件
  4510. // alert(e.data.type);
  4511. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4512. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4513. //3是展示全部阶段 2学生 1老师 4专家
  4514. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4515. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4516. //3是展示全部阶段 2学生 1老师 4专家
  4517. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4518. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4519. //3是展示全部阶段 2学生 1老师 4专家
  4520. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4521. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4522. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4523. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4524. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4525. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4526. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4527. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4528. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4529. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4530. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4531. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4532. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4533. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4534. //3是展示全部阶段 2学生 1老师 4专家
  4535. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4536. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4537. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4538. U.MD.D.I.selectUser();
  4539. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4540. var _formel = document.getElementById("study");
  4541. U.UF.F.windowZooming(_formel);
  4542. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4543. var _formel = document.getElementById("studyDetail");
  4544. U.UF.F.windowZooming(_formel);
  4545. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4546. var _formel = document.getElementById("studyDetail");
  4547. U.UF.F.windowZooming(_formel);
  4548. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4549. var _formel = document.getElementById("studentStudy");
  4550. U.UF.F.windowZooming(_formel);
  4551. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4552. // var _formel = document.getElementById("study");
  4553. //如果最大化了,那么就把他缩小
  4554. // if (_formel.ismaximize) {
  4555. // return;
  4556. // }
  4557. // U.UF.F.windowZooming(_formel);
  4558. // U.UF.F.topWindow(_formel);
  4559. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4560. // var _formel = document.getElementById("studyDetail");
  4561. //如果最大化了,那么就把他缩小
  4562. // if (_formel.ismaximize) {
  4563. // return;
  4564. // }
  4565. // U.UF.F.windowZooming(_formel);
  4566. // U.UF.F.topWindow(_formel);
  4567. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4568. // var _formel = document.getElementById("studentStudy");
  4569. // if (_formel.ismaximize) {
  4570. // return;
  4571. // }
  4572. // U.UF.F.windowZooming(_formel);
  4573. // U.UF.F.topWindow(_formel);
  4574. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4575. var _formel = document.getElementById("study");
  4576. // if (_formel.ismaximize) {
  4577. // return;
  4578. // }
  4579. // U.UF.F.windowZooming(_formel);
  4580. U.UF.F.topWindow(_formel);
  4581. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4582. var _formel = document.getElementById("studentIndex");
  4583. U.UF.F.windowZooming(_formel);
  4584. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4585. var _formel = document.getElementById("studyDetailS");
  4586. U.UF.F.windowZooming(_formel);
  4587. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4588. var _formel = document.getElementById("studioIndex");
  4589. U.UF.F.windowZooming(_formel);
  4590. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4591. var _formel = document.getElementById("studyDetailStudio");
  4592. U.UF.F.windowZooming(_formel);
  4593. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4594. var _formel = document.getElementById("studyDetailStudio");
  4595. U.UF.F.windowZooming(_formel);
  4596. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4597. var _formel = document.getElementById("studyDetailNT");
  4598. U.UF.F.windowZooming(_formel);
  4599. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4600. var _formel = document.getElementById("studyDetailS");
  4601. U.UF.F.windowZooming(_formel);
  4602. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4603. var _formel = document.getElementById("studyDetailS");
  4604. U.UF.F.topWindow(_formel);
  4605. } else if (e.data.tools && e.data.tools == "1") {
  4606. // U.MD.D.I.openApplication("whiteboard")
  4607. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "2") {
  4609. U.MD.D.I.openApplication("note")
  4610. } else if (e.data.tools && e.data.tools == "3") {
  4611. // U.MD.D.I.openApplication("mind")
  4612. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "4") {
  4614. U.MD.D.I.openApplication("investigation")
  4615. } else if (e.data.tools && e.data.tools == "6") {
  4616. // U.MD.D.I.openApplication("doc")
  4617. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4618. } else if (e.data.tools && e.data.tools == "7") {
  4619. // U.MD.D.I.openApplication("mindNetwork")
  4620. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4621. } else if (e.data.tools && e.data.tools == "8") {
  4622. U.MD.D.I.openApplication("library")
  4623. } else if (e.data.tools && e.data.tools == "17") {
  4624. U.MD.D.I.openApplication("stuLibrary")
  4625. } else if (e.data.tools && e.data.tools == "18") {
  4626. U.MD.D.I.openApplication("train")
  4627. } else if (e.data.tools && e.data.tools == "21") {
  4628. U.MD.D.I.openApplication("program")
  4629. } else if (e.data.tools && e.data.tools == "22") {
  4630. U.MD.D.I.openApplication("AIprogram2")
  4631. } else if (e.data.tools && e.data.tools == "23") {
  4632. U.MD.D.I.openApplication("Pythonprogram")
  4633. } else if (e.data.tools && e.data.tools == "24") {
  4634. U.MD.D.I.openApplication("AIprogram")
  4635. } else if (e.data.tools && e.data.tools == "25") {
  4636. U.MD.D.I.openApplication("sys")
  4637. } else if (e.data.tools && e.data.tools == "26") {
  4638. // U.MD.D.I.openApplication("courseDesign")
  4639. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4640. } else if (e.data.tools && e.data.tools == "31") {
  4641. U.MD.D.I.openApplication("netWorkPanel")
  4642. } else if (e.data.tools && e.data.tools == "32") {
  4643. U.MD.D.I.openApplication("codeEdit")
  4644. } else if (e.data.tools && e.data.tools == "57") {
  4645. U.MD.D.I.openApplication("CocoPi")
  4646. } else if (e.data.tools && e.data.tools == "63") {
  4647. U.MD.D.I.openApplication("Wood")
  4648. } else if (e.data.tools && e.data.tools == "58") {
  4649. U.MD.D.I.openApplication("car")
  4650. } else if (e.data.tools && e.data.tools == "59") {
  4651. U.MD.D.I.openApplication("lineSearch")
  4652. } else if (e.data.tools && e.data.tools == "60") {
  4653. U.MD.D.I.openApplication("deepLearning")
  4654. } else if (e.data.tools && e.data.tools == "61") {
  4655. U.MD.D.I.openApplication("allHistory")
  4656. } else if (e.data.tools && e.data.tools == "28") {
  4657. U.MD.D.I.openApplication("translation")
  4658. } else if (e.data.tools && e.data.tools == "37") {
  4659. U.MD.D.I.openApplication("mohe")
  4660. } else if (e.data.tools && e.data.tools == "38") {
  4661. U.MD.D.I.openApplication("24game")
  4662. } else if (e.data.tools && e.data.tools == "39") {
  4663. U.MD.D.I.openApplication("GeoGebra")
  4664. } else if (e.data.tools && e.data.tools == "43") {
  4665. U.MD.D.I.openApplication("studentEvaluate")
  4666. } else if (e.data.tools && e.data.tools == "44") {
  4667. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4668. } else if (e.data.tools && e.data.tools == "46") {
  4669. U.MD.D.I.openApplication("project")
  4670. } else if (e.data.tools && e.data.tools == "71") {
  4671. U.MD.D.I.openApplication("aigptCourse")
  4672. } else if (e.data.tools && e.data.tools == "1s") {
  4673. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4674. } else if (e.data.tools && e.data.tools == "3s") {
  4675. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4676. } else if (e.data.tools && e.data.tools == "6s") {
  4677. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4678. } else if (e.data.tools && e.data.tools == "1studio") {
  4679. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4680. } else if (e.data.tools && e.data.tools == "3studio") {
  4681. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4682. } else if (e.data.tools && e.data.tools == "6studio") {
  4683. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4684. } else if (e.data.tools && e.data.tools == "3y") {
  4685. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4686. } else if (e.data.tools && e.data.tools == "1y") {
  4687. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4688. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4689. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4690. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4691. U.MD.D.I.openApplication("AIAnalyse")
  4692. } else if (e.data.tools && e.data.tools == "1teacher") {
  4693. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4694. } else if (e.data.tools && e.data.tools == "3teacher") {
  4695. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4696. } else if (e.data.tools && e.data.tools == "7teacher") {
  4697. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4698. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4699. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4700. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4701. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4702. } else if (e.data.tools && e.data.tools == "1E") {
  4703. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4704. } else if (e.data.tools && e.data.tools == "3E") {
  4705. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4706. } else if (e.data.tools && e.data.tools == "57y") {
  4707. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4708. } else if (e.data.tools && e.data.tools == "57u") {
  4709. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4710. } else if (e.data.tools && e.data.tools == "57teacher") {
  4711. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4712. } else if (e.data.tools && e.data.tools == "64") {
  4713. U.MD.D.I.openApplication("AIChat")
  4714. } else if (e.data.tools && e.data.tools == "66") {
  4715. U.MD.D.I.openApplication("formulaEdi")
  4716. } else if (e.data.tools && e.data.tools == "67") {
  4717. U.MD.D.I.openApplication("molStr")
  4718. } else if (e.data.tools && e.data.tools == "68") {
  4719. U.MD.D.I.openApplication("timeAxis")
  4720. } else if (e.data.tools && e.data.tools == "openCourse") {
  4721. let _data = {
  4722. typea: e.data.typea || '',
  4723. typeb: e.data.typeb || '',
  4724. typed: e.data.typed || '',
  4725. }
  4726. U.MD.D.I.openInApplication("index", _data)
  4727. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4728. let _data = {
  4729. classid: e.data.classid || '',
  4730. }
  4731. U.MD.D.I.openInApplication("dataClass", _data)
  4732. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4733. let _data = {
  4734. cid: e.data.cid || '',
  4735. gid: e.data.gid || '',
  4736. }
  4737. U.MD.D.I.openInApplication("opencCscl", _data)
  4738. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4739. U.MD.D.I.openApplication("dataBoardTest")
  4740. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4741. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4742. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4743. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4744. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4745. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4746. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4747. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4748. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4749. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4750. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4751. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4752. }else if (e.data.tools && e.data.tools == "loginSz") {
  4753. U.MD.D.I.openInApplication("loginSz")
  4754. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4755. if($('#classroom_observation_board')[0]){
  4756. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4757. }
  4758. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4759. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4760. if($('#classroom_observation_ob_comment')[0]){
  4761. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4762. }
  4763. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4764. }else if (e.data.tools && e.data.tools == "logout"){
  4765. U.MD.U.LO.logoutSystem()
  4766. }else if (e.data.tools && e.data.tools == "getLogin"){
  4767. let _iframe = $('#UI_Login')[0];
  4768. if (_iframe) {
  4769. var userInfo = US.userInfo;
  4770. var type = 2
  4771. if(userInfo && userInfo.userid){
  4772. type = 1
  4773. }
  4774. _contentWindow = _iframe.contentWindow;
  4775. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4776. }
  4777. }
  4778. });
  4779. U.MD.D.I.selectUser = function () {
  4780. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4781. if (res.value[0].length > 0) {
  4782. US.userInfo = res.value[0][0];
  4783. $(".userName")[0].innerHTML = US.userInfo.username;
  4784. }
  4785. }, [], { "type": "GET", "withCredentials": true });
  4786. }
  4787. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4788. var _userinfo = US.userInfo, //登录用户信息
  4789. _userid = US.userInfo.userid, //登录用户id
  4790. _oid = _userinfo.organizeid,
  4791. _type = US.userInfo.type,
  4792. _org = US.userInfo.org,
  4793. _role = US.userInfo.role,
  4794. _classId = US.userInfo.classid;
  4795. if (_type == 4) {
  4796. tType = 4
  4797. }
  4798. switch (str) {
  4799. case "studyDetailNT": //无终端模式
  4800. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4801. setTimeout(() => {
  4802. U.MD.U.L.login();
  4803. }, 2000);
  4804. } else {
  4805. _formdiv = new U.UF.UI.form(
  4806. "课程详情",
  4807. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4808. "id": "studyDetailNT",
  4809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4810. "onresize": function () { }
  4811. }, {
  4812. closecallback: function () { }
  4813. }, { "style": { "height": "36px" } }).form; //创建窗体
  4814. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4815. break;
  4816. }
  4817. case "studyDetail":
  4818. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4819. setTimeout(() => {
  4820. U.MD.U.L.login();
  4821. }, 2000);
  4822. } else {
  4823. _formdiv = new U.UF.UI.form(
  4824. "课程详情",
  4825. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4826. "id": "studyDetail",
  4827. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4828. "onresize": function () { }
  4829. }, {
  4830. closecallback: function () { }
  4831. }, { "style": { "height": "36px" } }).form; //创建窗体
  4832. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4833. break;
  4834. }
  4835. case "studyDetailTrain":
  4836. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4837. setTimeout(() => {
  4838. U.MD.U.L.login();
  4839. }, 2000);
  4840. } else {
  4841. _formdiv = new U.UF.UI.form(
  4842. "培训详情",
  4843. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4844. "id": "studyDetailTrain",
  4845. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4846. "onresize": function () { }
  4847. }, {
  4848. closecallback: function () { }
  4849. }, { "style": { "height": "36px" } }).form; //创建窗体
  4850. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4851. break;
  4852. }
  4853. case "studyDetailS":
  4854. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4855. setTimeout(() => {
  4856. U.MD.U.L.login();
  4857. }, 2000);
  4858. } else {
  4859. _formdiv = new U.UF.UI.form(
  4860. "项目详情",
  4861. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4862. "id": "studyDetailS",
  4863. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4864. "onresize": function () { }
  4865. }, {
  4866. closecallback: function () { }
  4867. }, { "style": { "height": "36px" } }).form; //创建窗体
  4868. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4869. break;
  4870. }
  4871. case "studyDetailStudio":
  4872. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4873. setTimeout(() => {
  4874. U.MD.U.L.login();
  4875. }, 2000);
  4876. } else {
  4877. _formdiv = new U.UF.UI.form(
  4878. "工作详情",
  4879. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4880. "id": "studyDetailStudio",
  4881. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4882. "onresize": function () { }
  4883. }, {
  4884. closecallback: function () { }
  4885. }, { "style": { "height": "36px" } }).form; //创建窗体
  4886. _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); } }
  4887. break;
  4888. }
  4889. case "studyDetailS5":
  4890. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4891. setTimeout(() => {
  4892. U.MD.U.L.login();
  4893. }, 2000);
  4894. } else {
  4895. _formdiv = new U.UF.UI.form(
  4896. "项目详情",
  4897. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4898. "id": "studyDetailS",
  4899. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4900. "onresize": function () { }
  4901. }, {
  4902. closecallback: function () { }
  4903. }, { "style": { "height": "36px" } }).form; //创建窗体
  4904. _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); } }
  4905. break;
  4906. }
  4907. case "studyDetailGM":
  4908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4909. setTimeout(() => {
  4910. U.MD.U.L.login();
  4911. }, 2000);
  4912. } else {
  4913. _formdiv = new U.UF.UI.form(
  4914. "课程详情",
  4915. $$("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 }), {
  4916. "id": "studyDetail",
  4917. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4918. "onresize": function () { }
  4919. }, {
  4920. closecallback: function () { }
  4921. }, { "style": { "height": "36px" } }).form; //创建窗体
  4922. _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); } }
  4923. break;
  4924. }
  4925. case "hanUrl":
  4926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4927. setTimeout(() => {
  4928. U.MD.U.L.login();
  4929. }, 2000);
  4930. } else {
  4931. _formdiv = new U.UF.UI.form(
  4932. "汉字宫",
  4933. $$("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" }), {
  4934. "id": "hanUrl",
  4935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //创建窗体
  4940. _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); } }
  4941. break;
  4942. }
  4943. case "index":
  4944. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4945. setTimeout(() => {
  4946. U.MD.U.L.login();
  4947. }, 2000);
  4948. } else {
  4949. _formdiv = new U.UF.UI.form(
  4950. "课程中心",
  4951. $$("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 }), {
  4952. "id": "study",
  4953. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4954. "onresize": function () { }
  4955. }, {
  4956. closecallback: function () { }
  4957. }, { "style": { "height": "36px" } }).form; //创建窗体
  4958. _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); } }
  4959. break;
  4960. }
  4961. case "dataClass":
  4962. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4963. setTimeout(() => {
  4964. U.MD.U.L.login();
  4965. }, 2000);
  4966. } else {
  4967. _formdiv = new U.UF.UI.form(
  4968. "数据报告",
  4969. $$("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 }), {
  4970. "id": "dataClass",
  4971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. _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); } }
  4977. break;
  4978. }
  4979. case "opencCscl":
  4980. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4981. setTimeout(() => {
  4982. U.MD.U.L.login();
  4983. }, 2000);
  4984. } else {
  4985. _formdiv = new U.UF.UI.form(
  4986. "协同建构",
  4987. $$("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 }), {
  4988. "id": "futureClass",
  4989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4990. "onresize": function () { }
  4991. }, {
  4992. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4993. }, { "style": { "height": "36px" } }).form; //创建窗体
  4994. _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); } }
  4995. break;
  4996. }
  4997. case "openCourseUpdate":
  4998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4999. setTimeout(() => {
  5000. U.MD.U.L.login();
  5001. }, 2000);
  5002. } else {
  5003. _formdiv = new U.UF.UI.form(
  5004. "课程管理",
  5005. $$("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 }), {
  5006. "id": "openCourseUpdate",
  5007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. break;
  5013. }
  5014. case "openNewCourseUpdate":
  5015. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5016. setTimeout(() => {
  5017. U.MD.U.L.login();
  5018. }, 2000);
  5019. } else {
  5020. _formdiv = new U.UF.UI.form(
  5021. "课程管理",
  5022. $$("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 }), {
  5023. "id": "openCourseUpdate",
  5024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //创建窗体
  5029. break;
  5030. }
  5031. case "openCourseEUpdate":
  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/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5040. "id": "openCourseUpdate",
  5041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. break;
  5047. }
  5048. case "openCourseAiUpdate":
  5049. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5050. setTimeout(() => {
  5051. U.MD.U.L.login();
  5052. }, 2000);
  5053. } else {
  5054. _formdiv = new U.UF.UI.form(
  5055. "课程管理",
  5056. $$("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 }), {
  5057. "id": "openCourseUpdate",
  5058. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. break;
  5064. }
  5065. case "openCourseAiUpdate2":
  5066. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5067. setTimeout(() => {
  5068. U.MD.U.L.login();
  5069. }, 2000);
  5070. } else {
  5071. _formdiv = new U.UF.UI.form(
  5072. "课程管理",
  5073. $$("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 }), {
  5074. "id": "openCourseUpdate",
  5075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5076. "onresize": function () { }
  5077. }, {
  5078. closecallback: function () { }
  5079. }, { "style": { "height": "36px" } }).form; //创建窗体
  5080. break;
  5081. }
  5082. case "openCourseNewUpdate":
  5083. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5084. setTimeout(() => {
  5085. U.MD.U.L.login();
  5086. }, 2000);
  5087. } else {
  5088. _formdiv = new U.UF.UI.form(
  5089. "课程管理",
  5090. $$("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 }), {
  5091. "id": "openCourseUpdate",
  5092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5093. "onresize": function () { }
  5094. }, {
  5095. closecallback: function () { }
  5096. }, { "style": { "height": "36px" } }).form; //创建窗体
  5097. break;
  5098. }
  5099. case "inviteLoginSz":
  5100. _formdiv = new U.UF.UI.form(
  5101. "随机码登录",
  5102. $$("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 }), {
  5103. "id": "loginSz",
  5104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. break;
  5110. case "loginSz":
  5111. _formdiv = new U.UF.UI.form(
  5112. "教师登录",
  5113. $$("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" }), {
  5114. "id": "loginSz",
  5115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. break;
  5121. case "teacher":
  5122. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5123. setTimeout(() => {
  5124. U.MD.U.L.login();
  5125. }, 2000);
  5126. } else {
  5127. _formdiv = new U.UF.UI.form(
  5128. "教师管理",
  5129. $$("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 }), {
  5130. "id": "teacher",
  5131. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5132. "onresize": function () { }
  5133. }, {
  5134. closecallback: function () { }
  5135. }, { "style": { "height": "36px" } }).form; //创建窗体
  5136. break;
  5137. }
  5138. case "dataBoardSZArea":
  5139. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5140. setTimeout(() => {
  5141. U.MD.U.L.login();
  5142. }, 2000);
  5143. } else {
  5144. _formdiv = new U.UF.UI.form(
  5145. "综合数据看板",
  5146. $$("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 }), {
  5147. "id": "dataBoardSZArea",
  5148. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. break;
  5154. }
  5155. case "dataBoardSZCity":
  5156. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5157. setTimeout(() => {
  5158. U.MD.U.L.login();
  5159. }, 2000);
  5160. } else {
  5161. _formdiv = new U.UF.UI.form(
  5162. "综合数据看板",
  5163. $$("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 }), {
  5164. "id": "dataBoardSZCity",
  5165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. break;
  5171. }
  5172. case "classroom_observation_board":
  5173. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5174. setTimeout(() => {
  5175. U.MD.U.L.login();
  5176. }, 2000);
  5177. } else {
  5178. _formdiv = new U.UF.UI.form(
  5179. "课堂观察",
  5180. $$("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 }), {
  5181. "id": "classroom_observation_board",
  5182. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. break;
  5188. }
  5189. case "classroom_observation_ob_comment":
  5190. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5191. setTimeout(() => {
  5192. U.MD.U.L.login();
  5193. }, 2000);
  5194. } else {
  5195. _formdiv = new U.UF.UI.form(
  5196. "课堂审核",
  5197. $$("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 }), {
  5198. "id": "classroom_observation_ob_comment",
  5199. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. break;
  5205. }
  5206. }
  5207. }
  5208. U.MD.D.I.openApplication = function (str, obj, info) {
  5209. obj = obj || {};
  5210. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5211. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5212. _userinfo = US.userInfo, //登录用户信息
  5213. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5214. _oid = obj.organizeid || _userinfo.organizeid,
  5215. _type = US.userInfo.type,
  5216. _org = US.userInfo.org,
  5217. _role = US.userInfo.role,
  5218. _classId = US.userInfo.classid,
  5219. _TscreenType = 1
  5220. _screenType = 2,
  5221. _SscreenType = 3;
  5222. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5223. return;
  5224. }
  5225. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5226. switch (str) {
  5227. case "studnetProject": //好友打开
  5228. _formdiv = new U.UF.UI.form(
  5229. "我的项目",
  5230. $$("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 }), {
  5231. "id": "studnetProject",
  5232. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. _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); } }
  5238. break;
  5239. case "studentEvaluate": //好友打开
  5240. _formdiv = new U.UF.UI.form(
  5241. "我的评价",
  5242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5243. "id": "studentEvaluate",
  5244. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5245. "onresize": function () { }
  5246. }, {
  5247. closecallback: function () { }
  5248. }, { "style": { "height": "36px" } }).form; //创建窗体
  5249. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5250. break;
  5251. case "my":
  5252. _formdiv = new U.UF.UI.form(
  5253. "我的资料",
  5254. $$("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 }), {
  5255. "id": "my",
  5256. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5257. "onresize": function () { }
  5258. }, {
  5259. closecallback: function () { }
  5260. }, { "style": { "height": "36px" } }).form; //创建窗体
  5261. _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); } }
  5262. break;
  5263. case "program":
  5264. _formdiv = new U.UF.UI.form(
  5265. "编程平台",
  5266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5267. "id": "program",
  5268. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. case "library":
  5276. _formdiv = new U.UF.UI.form(
  5277. "素材库",
  5278. $$("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 }), {
  5279. "id": "library",
  5280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. _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); } }
  5286. break;
  5287. case "whiteboard":
  5288. _formdiv = new U.UF.UI.form(
  5289. "电子白板",
  5290. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5291. "id": "whiteboard",
  5292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5293. "onresize": function () { }
  5294. }, {
  5295. closecallback: function () { }
  5296. }, { "style": { "height": "36px" } }).form; //创建窗体
  5297. _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); } }
  5298. break;
  5299. case "investigation":
  5300. _formdiv = new U.UF.UI.form(
  5301. "问卷调查",
  5302. $$("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 }), {
  5303. "id": "investigation",
  5304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. _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); } }
  5310. break;
  5311. case "note":
  5312. _formdiv = new U.UF.UI.form(
  5313. "便签分类",
  5314. $$("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 }), {
  5315. "id": "note",
  5316. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5317. "onresize": function () { }
  5318. }, {
  5319. closecallback: function () { }
  5320. }, { "style": { "height": "36px" } }).form; //创建窗体
  5321. _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); } }
  5322. break;
  5323. // case "score":
  5324. // _formdiv = new U.UF.UI.form(
  5325. // "量规评分",
  5326. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5327. // "id": "score",
  5328. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5329. // "onresize": function() {}
  5330. // }, {
  5331. // closecallback: function() {}
  5332. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5333. // _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); } }
  5334. // break;
  5335. case "mind":
  5336. _formdiv = new U.UF.UI.form(
  5337. "思维导图",
  5338. $$("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"
  5339. "id": "mind",
  5340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. case "doc":
  5348. // U.MD.D.I.isRoom();
  5349. _formdiv = new U.UF.UI.form(
  5350. "协同文档",
  5351. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5352. "id": "doc",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5359. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5360. // })
  5361. _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); } }
  5362. break;
  5363. case "studentStudy":
  5364. _formdiv = new U.UF.UI.form(
  5365. "课程中心",
  5366. $$("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
  5367. "id": "studentStudy",
  5368. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5374. break;
  5375. case "train": //好友打开
  5376. _formdiv = new U.UF.UI.form(
  5377. "训练平台",
  5378. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5379. "id": "train",
  5380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5386. break;
  5387. case "mindNetwork": //好友打开
  5388. _formdiv = new U.UF.UI.form(
  5389. "思维网格",
  5390. $$("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 }), {
  5391. "id": "mindNetwork",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5398. break;
  5399. case "studentClassRoom": //好友打开
  5400. _formdiv = new U.UF.UI.form(
  5401. "实时课堂",
  5402. $$("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 }), {
  5403. "id": "studentClassRoom",
  5404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5410. setTimeout(() => {
  5411. U.UF.F.windowZooming(_formdiv)
  5412. }, 0);
  5413. break;
  5414. }
  5415. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5416. switch (str) {
  5417. case "studnetProject": //好友打开
  5418. _formdiv = new U.UF.UI.form(
  5419. "我的项目",
  5420. $$("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 }), {
  5421. "id": "studnetProject",
  5422. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. _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); } }
  5428. break;
  5429. case "studentEvaluate": //好友打开
  5430. _formdiv = new U.UF.UI.form(
  5431. "我的评价",
  5432. $$("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 }), {
  5433. "id": "studentEvaluate",
  5434. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. case "my":
  5442. _formdiv = new U.UF.UI.form(
  5443. "我的资料",
  5444. $$("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 }), {
  5445. "id": "my",
  5446. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5447. "onresize": function () { }
  5448. }, {
  5449. closecallback: function () { }
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. _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); } }
  5452. break;
  5453. case "program":
  5454. _formdiv = new U.UF.UI.form(
  5455. "编程平台",
  5456. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5457. "id": "program",
  5458. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. _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); } }
  5464. break;
  5465. case "library":
  5466. _formdiv = new U.UF.UI.form(
  5467. "素材库",
  5468. $$("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 }), {
  5469. "id": "library",
  5470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5476. break;
  5477. case "whiteboard":
  5478. _formdiv = new U.UF.UI.form(
  5479. "电子白板",
  5480. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5481. "id": "whiteboard",
  5482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5488. break;
  5489. case "investigation":
  5490. _formdiv = new U.UF.UI.form(
  5491. "问卷调查",
  5492. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5493. "id": "investigation",
  5494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //创建窗体
  5499. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5500. break;
  5501. case "note":
  5502. _formdiv = new U.UF.UI.form(
  5503. "便签分类",
  5504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5505. "id": "note",
  5506. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5512. break;
  5513. // case "score":
  5514. // _formdiv = new U.UF.UI.form(
  5515. // "量规评分",
  5516. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5517. // "id": "score",
  5518. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5519. // "onresize": function() {}
  5520. // }, {
  5521. // closecallback: function() {}
  5522. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5524. // break;
  5525. case "mind":
  5526. _formdiv = new U.UF.UI.form(
  5527. "思维导图",
  5528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5529. "id": "mind",
  5530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5531. "onresize": function () { }
  5532. }, {
  5533. closecallback: function () { }
  5534. }, { "style": { "height": "36px" } }).form; //创建窗体
  5535. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5536. break;
  5537. case "doc":
  5538. // U.MD.D.I.isRoom();
  5539. _formdiv = new U.UF.UI.form(
  5540. "协同文档",
  5541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5542. "id": "doc",
  5543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5549. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5550. })
  5551. _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); } }
  5552. break;
  5553. case "train": //好友打开
  5554. _formdiv = new U.UF.UI.form(
  5555. "训练平台",
  5556. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5557. "id": "train",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _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); } }
  5564. break;
  5565. case "studentStudy":
  5566. _formdiv = new U.UF.UI.form(
  5567. "课程中心",
  5568. $$("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
  5569. "id": "studentStudy",
  5570. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "mindNetwork": //好友打开
  5578. _formdiv = new U.UF.UI.form(
  5579. "思维网格",
  5580. $$("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 }), {
  5581. "id": "mindNetwork",
  5582. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "studentClassRoom": //好友打开
  5590. _formdiv = new U.UF.UI.form(
  5591. "实时课堂",
  5592. $$("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 }), {
  5593. "id": "studentClassRoom",
  5594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. setTimeout(() => {
  5601. U.UF.F.windowZooming(_formdiv)
  5602. }, 0);
  5603. break;
  5604. }
  5605. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5606. //选择应用处理
  5607. switch (str) {
  5608. case "project": //好友打开
  5609. _formdiv = new U.UF.UI.form(
  5610. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5611. $$("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 }), {
  5612. "id": "project",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "student":
  5621. _formdiv = new U.UF.UI.form(
  5622. "学生管理",
  5623. $$("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 }), {
  5624. "id": "student",
  5625. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "evaluate":
  5633. _formdiv = new U.UF.UI.form(
  5634. "学生评价",
  5635. $$("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 }), {
  5636. "id": "evaluate",
  5637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. case "sys":
  5645. _formdiv = new U.UF.UI.form(
  5646. "目标管理",
  5647. $$("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 }), {
  5648. "id": "sys",
  5649. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "courseDesign":
  5657. _formdiv = new U.UF.UI.form(
  5658. "项目设计",
  5659. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5660. "id": "courseDesign",
  5661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "program":
  5669. _formdiv = new U.UF.UI.form(
  5670. "编程平台",
  5671. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5672. "id": "program",
  5673. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. _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); } }
  5679. break;
  5680. case "class":
  5681. _formdiv = new U.UF.UI.form(
  5682. "班级管理",
  5683. $$("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 }), {
  5684. "id": "class",
  5685. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. _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); } }
  5691. break;
  5692. case "Grade":
  5693. _formdiv = new U.UF.UI.form(
  5694. "年级管理",
  5695. $$("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 }), {
  5696. "id": "Grade",
  5697. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. _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); } }
  5703. break;
  5704. case "teacherOffice":
  5705. _formdiv = new U.UF.UI.form(
  5706. "教研室",
  5707. $$("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 }), {
  5708. "id": "teacherOffice",
  5709. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5710. "onresize": function () { }
  5711. }, {
  5712. closecallback: function () { }
  5713. }, { "style": { "height": "36px" } }).form; //创建窗体
  5714. _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); } }
  5715. break;
  5716. case "my":
  5717. _formdiv = new U.UF.UI.form(
  5718. "我的资料",
  5719. $$("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 }), {
  5720. "id": "my",
  5721. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5722. "onresize": function () { }
  5723. }, {
  5724. closecallback: function () { }
  5725. }, { "style": { "height": "36px" } }).form; //创建窗体
  5726. _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); } }
  5727. break;
  5728. case "notice":
  5729. _formdiv = new U.UF.UI.form(
  5730. "通知公告",
  5731. $$("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 }), {
  5732. "id": "notice",
  5733. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5734. "onresize": function () { }
  5735. }, {
  5736. closecallback: function () { }
  5737. }, { "style": { "height": "36px" } }).form; //创建窗体
  5738. _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); } }
  5739. break;
  5740. case "library":
  5741. _formdiv = new U.UF.UI.form(
  5742. "素材库",
  5743. $$("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 }), {
  5744. "id": "library",
  5745. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. _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); } }
  5751. break;
  5752. case "whiteboard":
  5753. _formdiv = new U.UF.UI.form(
  5754. "电子白板",
  5755. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5756. "id": "whiteboard",
  5757. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5758. "onresize": function () { }
  5759. }, {
  5760. closecallback: function () { }
  5761. }, { "style": { "height": "36px" } }).form; //创建窗体
  5762. _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); } }
  5763. break;
  5764. case "investigation":
  5765. _formdiv = new U.UF.UI.form(
  5766. "问卷调查",
  5767. $$("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 }), {
  5768. "id": "investigation",
  5769. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5770. "onresize": function () { }
  5771. }, {
  5772. closecallback: function () { }
  5773. }, { "style": { "height": "36px" } }).form; //创建窗体
  5774. _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); } }
  5775. break;
  5776. case "note":
  5777. _formdiv = new U.UF.UI.form(
  5778. "便签分类",
  5779. $$("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 }), {
  5780. "id": "note",
  5781. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. _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); } }
  5787. break;
  5788. // case "score":
  5789. // _formdiv = new U.UF.UI.form(
  5790. // "量规评分",
  5791. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5792. // "id": "score",
  5793. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5794. // "onresize": function() {}
  5795. // }, {
  5796. // closecallback: function() {}
  5797. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5798. // _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); } }
  5799. // break;
  5800. case "mind":
  5801. _formdiv = new U.UF.UI.form(
  5802. "思维导图",
  5803. $$("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"
  5804. "id": "mind",
  5805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. _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); } }
  5811. break;
  5812. case "doc":
  5813. // U.MD.D.I.isRoom();
  5814. _formdiv = new U.UF.UI.form(
  5815. "协同文档",
  5816. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5817. "id": "doc",
  5818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //创建窗体
  5823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5824. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5825. })
  5826. _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); } }
  5827. break;
  5828. case "study":
  5829. _formdiv = new U.UF.UI.form(
  5830. "课程中心",
  5831. $$("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
  5832. "id": "study",
  5833. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //创建窗体
  5838. _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); } }
  5839. break;
  5840. case "mindNetwork": //好友打开
  5841. _formdiv = new U.UF.UI.form(
  5842. "思维网格",
  5843. $$("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 }), {
  5844. "id": "mindNetwork",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. _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); } }
  5851. break;
  5852. case "train": //好友打开
  5853. _formdiv = new U.UF.UI.form(
  5854. "训练平台",
  5855. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5856. "id": "mindNetwork",
  5857. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //创建窗体
  5862. _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); } }
  5863. break;
  5864. case "teacherClassRoom": //好友打开
  5865. _formdiv = new U.UF.UI.form(
  5866. "实时课堂",
  5867. $$("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 }), {
  5868. "id": "teacherClassRoom",
  5869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _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); } }
  5875. setTimeout(() => {
  5876. U.UF.F.windowZooming(_formdiv)
  5877. }, 0);
  5878. break;
  5879. }
  5880. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5881. switch (str) {
  5882. case "project": //好友打开
  5883. _formdiv = new U.UF.UI.form(
  5884. "课程管理",
  5885. $$("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 }), {
  5886. "id": "project",
  5887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5888. "onresize": function () { }
  5889. }, {
  5890. closecallback: function () { }
  5891. }, { "style": { "height": "36px" } }).form; //创建窗体
  5892. _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); } }
  5893. break;
  5894. case "evaluate":
  5895. _formdiv = new U.UF.UI.form(
  5896. "学生评价",
  5897. $$("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 }), {
  5898. "id": "evaluate",
  5899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. _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); } }
  5905. break;
  5906. case "notice":
  5907. _formdiv = new U.UF.UI.form(
  5908. "通知公告",
  5909. $$("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 }), {
  5910. "id": "notice",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. _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); } }
  5917. break;
  5918. case "stuLibrary":
  5919. _formdiv = new U.UF.UI.form(
  5920. "学习资料",
  5921. $$("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 }), {
  5922. "id": "stuLibrary",
  5923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //创建窗体
  5928. _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); } }
  5929. break;
  5930. case "program":
  5931. _formdiv = new U.UF.UI.form(
  5932. "编程平台",
  5933. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5934. "id": "program",
  5935. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5936. "onresize": function () { }
  5937. }, {
  5938. closecallback: function () { }
  5939. }, { "style": { "height": "36px" } }).form; //创建窗体
  5940. _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); } }
  5941. break;
  5942. case "whiteboard":
  5943. _formdiv = new U.UF.UI.form(
  5944. "电子白板",
  5945. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5946. "id": "whiteboard",
  5947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, { "style": { "height": "36px" } }).form; //创建窗体
  5952. _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); } }
  5953. break;
  5954. case "investigation":
  5955. _formdiv = new U.UF.UI.form(
  5956. "问卷调查",
  5957. $$("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 }), {
  5958. "id": "investigation",
  5959. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //创建窗体
  5964. _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); } }
  5965. break;
  5966. case "mind":
  5967. _formdiv = new U.UF.UI.form(
  5968. "思维导图",
  5969. $$("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"
  5970. "id": "mind",
  5971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //创建窗体
  5976. _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); } }
  5977. break;
  5978. case "doc":
  5979. // U.MD.D.I.isRoom();
  5980. _formdiv = new U.UF.UI.form(
  5981. "协同文档",
  5982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5983. "id": "doc",
  5984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5990. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5991. })
  5992. _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); } }
  5993. break;
  5994. case "study":
  5995. _formdiv = new U.UF.UI.form(
  5996. "课程中心",
  5997. $$("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
  5998. "id": "study",
  5999. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _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); } }
  6005. break;
  6006. case "mindNetwork": //好友打开
  6007. _formdiv = new U.UF.UI.form(
  6008. "思维网格",
  6009. $$("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 }), {
  6010. "id": "mindNetwork",
  6011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. break;
  6018. case "train": //好友打开
  6019. _formdiv = new U.UF.UI.form(
  6020. "训练平台",
  6021. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6022. "id": "train",
  6023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _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); } }
  6029. break;
  6030. case "sys":
  6031. _formdiv = new U.UF.UI.form(
  6032. "目标管理",
  6033. $$("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 }), {
  6034. "id": "sys",
  6035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "courseDesign":
  6043. _formdiv = new U.UF.UI.form(
  6044. "项目设计",
  6045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6046. "id": "courseDesign",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. }
  6055. } else if (!_type) {
  6056. switch (str) {
  6057. case "my":
  6058. _formdiv = new U.UF.UI.form(
  6059. "我的资料",
  6060. $$("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 }), {
  6061. "id": "my",
  6062. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6063. "onresize": function () { }
  6064. }, {
  6065. closecallback: function () { }
  6066. }, { "style": { "height": "36px" } }).form; //创建窗体
  6067. _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); } }
  6068. break;
  6069. }
  6070. }
  6071. switch (str) {
  6072. // AIprogram2 AI体验 aihub.cocorobo.cn
  6073. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6074. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6075. case "formulaEdi": //公式编辑
  6076. _formdiv = new U.UF.UI.form(
  6077. "公式编辑",
  6078. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6079. "id": "formulaEdi",
  6080. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _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); } }
  6086. break;
  6087. case "molStr": //分子结构
  6088. _formdiv = new U.UF.UI.form(
  6089. "分子结构",
  6090. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6091. "id": "molStr",
  6092. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. case "timeAxis": //时间轴
  6100. _formdiv = new U.UF.UI.form(
  6101. "时间轴",
  6102. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6103. "id": "timeAxis",
  6104. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. _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); } }
  6110. break;
  6111. case "AIprogram2": //AI体验
  6112. _formdiv = new U.UF.UI.form(
  6113. "AI体验",
  6114. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6115. "id": "AIprogram2",
  6116. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "Pythonprogram": //python编程
  6124. _formdiv = new U.UF.UI.form(
  6125. "Python编程",
  6126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6127. "id": "Pythonprogram",
  6128. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "AIprogram": //ai编程
  6136. _formdiv = new U.UF.UI.form(
  6137. "AI编程平台",
  6138. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6139. "id": "AIprogram",
  6140. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "CocoPi": //CocoPi
  6148. _formdiv = new U.UF.UI.form(
  6149. "CocoPi",
  6150. $$("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" }), {
  6151. "id": "CocoPi",
  6152. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break;
  6159. case "Wood": //Wood
  6160. _formdiv = new U.UF.UI.form(
  6161. "海龟编程",
  6162. $$("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/" }), {
  6163. "id": "Wood",
  6164. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "car": //模拟驾驶
  6172. _formdiv = new U.UF.UI.form(
  6173. "模拟驾驶",
  6174. $$("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/" }), {
  6175. "id": "car",
  6176. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "lineSearch": //路径搜索
  6184. _formdiv = new U.UF.UI.form(
  6185. "路径搜索",
  6186. $$("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/" }), {
  6187. "id": "lineSearch",
  6188. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "deepLearning": //深度学习
  6196. _formdiv = new U.UF.UI.form(
  6197. "深度学习",
  6198. $$("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/#" }), {
  6199. "id": "deepLearning",
  6200. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _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); } }
  6206. break;
  6207. case "allHistory": //深度学习
  6208. _formdiv = new U.UF.UI.form(
  6209. "全历史",
  6210. $$("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/" }), {
  6211. "id": "allHistory",
  6212. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. _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); } }
  6218. break;
  6219. case "chatPDF": //ai编程
  6220. _formdiv = new U.UF.UI.form(
  6221. "chatPDF",
  6222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6223. "id": "chatPDF",
  6224. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _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); } }
  6230. break;
  6231. case "resources": //国家教育
  6232. _formdiv = new U.UF.UI.form(
  6233. "国家教育",
  6234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6235. "id": "resources",
  6236. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _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); } }
  6242. break;
  6243. case "codeEdit": //源码编辑
  6244. _formdiv = new U.UF.UI.form(
  6245. "源码编辑",
  6246. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6247. "id": "codeEdit",
  6248. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6249. "onresize": function () { }
  6250. }, {
  6251. closecallback: function () { }
  6252. }, { "style": { "height": "36px" } }).form; //创建窗体
  6253. _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); } }
  6254. break; //
  6255. case "MindMap": //MindMap
  6256. _formdiv = new U.UF.UI.form(
  6257. "MindMap",
  6258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6259. "id": "MindMap",
  6260. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6261. "onresize": function () { }
  6262. }, {
  6263. closecallback: function () { }
  6264. }, { "style": { "height": "36px" } }).form; //创建窗体
  6265. _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); } }
  6266. break;
  6267. case "netWorkPanel": //netWorkPanel
  6268. _formdiv = new U.UF.UI.form(
  6269. "netWorkPanel",
  6270. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6271. "id": "netWorkPanel",
  6272. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6273. "onresize": function () { }
  6274. }, {
  6275. closecallback: function () { }
  6276. }, { "style": { "height": "36px" } }).form; //创建窗体
  6277. _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); } }
  6278. break;
  6279. case "GeoGebra": //GeoGebra
  6280. _formdiv = new U.UF.UI.form(
  6281. "GeoGebra",
  6282. $$("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" }), {
  6283. "id": "GeoGebra",
  6284. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. _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); } }
  6290. break;
  6291. case "translation": //翻译
  6292. _formdiv = new U.UF.UI.form(
  6293. "翻译",
  6294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6295. "id": "translation",
  6296. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _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); } }
  6302. break;
  6303. case "mohe": //魔盒
  6304. _formdiv = new U.UF.UI.form(
  6305. "魔盒识字",
  6306. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6307. "id": "mohe",
  6308. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _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); } }
  6314. break;
  6315. case "24game": //24点
  6316. _formdiv = new U.UF.UI.form(
  6317. "24点",
  6318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6319. "id": "24game",
  6320. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _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); } }
  6326. break;
  6327. case "case":
  6328. _formdiv = new U.UF.UI.form(
  6329. "课程进展",
  6330. $$("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 }), {
  6331. "id": "case",
  6332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _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); } }
  6338. break;
  6339. case "snf":
  6340. _formdiv = new U.UF.UI.form(
  6341. "赛诺梵",
  6342. $$("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" }), {
  6343. "id": "snf",
  6344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _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); } }
  6350. break;
  6351. case "hanFamily":
  6352. _formdiv = new U.UF.UI.form(
  6353. "汉字家族",
  6354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6355. "id": "hanFamily",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _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); } }
  6362. break;
  6363. case "hanClassics":
  6364. _formdiv = new U.UF.UI.form(
  6365. "国学经典",
  6366. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6367. "id": "hanClassics",
  6368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6369. "onresize": function () { }
  6370. }, {
  6371. closecallback: function () { }
  6372. }, { "style": { "height": "36px" } }).form; //创建窗体
  6373. _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); } }
  6374. break;
  6375. case "hanTraining":
  6376. _formdiv = new U.UF.UI.form(
  6377. "笔画训练",
  6378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6379. "id": "hanTraining",
  6380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6386. break;
  6387. case "hanClass":
  6388. _formdiv = new U.UF.UI.form(
  6389. "书法课堂",
  6390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6391. "id": "hanClass",
  6392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6393. "onresize": function () { }
  6394. }, {
  6395. closecallback: function () { }
  6396. }, { "style": { "height": "36px" } }).form; //创建窗体
  6397. _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); } }
  6398. break;
  6399. case "han":
  6400. _formdiv = new U.UF.UI.form(
  6401. "汉字宫",
  6402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6403. "id": "han",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _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); } }
  6410. break;
  6411. case "projectGM": //课程管理
  6412. _formdiv = new U.UF.UI.form(
  6413. "课程管理",
  6414. $$("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 }), {
  6415. "id": "projectGM",
  6416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6417. "onresize": function () { }
  6418. }, {
  6419. closecallback: function () { }
  6420. }, { "style": { "height": "36px" } }).form; //创建窗体
  6421. _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); } }
  6422. break;
  6423. case "studyGM": //课程中心
  6424. _formdiv = new U.UF.UI.form(
  6425. "课程中心",
  6426. $$("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
  6427. "id": "study",
  6428. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _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); } }
  6434. break;
  6435. // studentGM
  6436. case "studentGM": //学生管理
  6437. _formdiv = new U.UF.UI.form(
  6438. "学生管理",
  6439. $$("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 }), {
  6440. "id": "studentGM",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6447. break;
  6448. case "evaluateGM": //学生评价
  6449. _formdiv = new U.UF.UI.form(
  6450. "学生评价",
  6451. $$("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 }), {
  6452. "id": "evaluateGM",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6459. break;
  6460. // classGM
  6461. case "classGM": //班级管理
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6465. "id": "classGM",
  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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6472. break;
  6473. // dataGM
  6474. case "dataGM":
  6475. _formdiv = new U.UF.UI.form(
  6476. "我的资料",
  6477. $$("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 }), {
  6478. "id": "dataGM",
  6479. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6480. "onresize": function () { }
  6481. }, {
  6482. closecallback: function () { }
  6483. }, { "style": { "height": "36px" } }).form; //创建窗体
  6484. _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); } }
  6485. break;
  6486. // caseGM
  6487. case "caseGM": //课程进展
  6488. _formdiv = new U.UF.UI.form(
  6489. "课程进展",
  6490. $$("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 }), {
  6491. "id": "caseGM",
  6492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6493. "onresize": function () { }
  6494. }, {
  6495. closecallback: function () { }
  6496. }, { "style": { "height": "36px" } }).form; //创建窗体
  6497. _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); } }
  6498. break;
  6499. // meterialGM
  6500. case "meterialGM": //素材库
  6501. _formdiv = new U.UF.UI.form(
  6502. "素材库",
  6503. $$("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 }), {
  6504. "id": "meterialGM",
  6505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6506. "onresize": function () { }
  6507. }, {
  6508. closecallback: function () { }
  6509. }, { "style": { "height": "36px" } }).form; //创建窗体
  6510. _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); } }
  6511. break;
  6512. // evaluateSGM
  6513. case "evaluateSGM": //我的评价
  6514. _formdiv = new U.UF.UI.form(
  6515. "我的评价",
  6516. $$("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 }), {
  6517. "id": "evaluateSGM",
  6518. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "jupyter": //jupyter
  6526. _formdiv = new U.UF.UI.form(
  6527. "jupyter",
  6528. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6529. "id": "jupyter",
  6530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "number": //数字实验室
  6538. _formdiv = new U.UF.UI.form(
  6539. "数字实验室",
  6540. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6541. "id": "number",
  6542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "studentCourse": //项目管理 学生
  6550. _formdiv = new U.UF.UI.form(
  6551. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6552. $$("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 }), {
  6553. "id": "studentCourse",
  6554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _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); } }
  6560. break;
  6561. case "studentCourseS": //项目管理 老师
  6562. _formdiv = new U.UF.UI.form(
  6563. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6564. $$("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 }), {
  6565. "id": "studentCourseS",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6572. break;
  6573. case "studentIndex": //项目中心
  6574. _formdiv = new U.UF.UI.form(
  6575. "项目中心",
  6576. $$("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 }), {
  6577. "id": "studentIndex",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "CaseDesignS":
  6586. _formdiv = new U.UF.UI.form(
  6587. "项目进展",
  6588. $$("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 }), {
  6589. "id": "case",
  6590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "tcStudent": //腾讯学生管理
  6598. _formdiv = new U.UF.UI.form(
  6599. "学生管理",
  6600. $$("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 }), {
  6601. "id": "tcStudent",
  6602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. case "tcSchool": //腾讯学校管理
  6610. _formdiv = new U.UF.UI.form(
  6611. "学校管理",
  6612. $$("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 }), {
  6613. "id": "tcSchool",
  6614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6620. break;
  6621. case "tcTeacher": //腾讯学校管理
  6622. _formdiv = new U.UF.UI.form(
  6623. "教师管理",
  6624. $$("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 }), {
  6625. "id": "tcTeacher",
  6626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "teacher":
  6634. _formdiv = new U.UF.UI.form(
  6635. "教师管理",
  6636. $$("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 }), {
  6637. "id": "teacher",
  6638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //创建窗体
  6643. _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); } }
  6644. break;
  6645. case "tcData": //腾讯我的资料
  6646. _formdiv = new U.UF.UI.form(
  6647. "我的资料",
  6648. $$("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 }), {
  6649. "id": "tcData",
  6650. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, { "style": { "height": "36px" } }).form; //创建窗体
  6655. _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); } }
  6656. break;
  6657. case "tcNotice": //腾讯消息通知
  6658. _formdiv = new U.UF.UI.form(
  6659. "消息通知",
  6660. $$("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 }), {
  6661. "id": "tcNotice",
  6662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _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); } }
  6668. break;
  6669. case "myReport": //好友打开
  6670. _formdiv = new U.UF.UI.form(
  6671. "我的评价",
  6672. $$("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 }), {
  6673. "id": "myReport",
  6674. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6675. "onresize": function () { }
  6676. }, {
  6677. closecallback: function () { }
  6678. }, { "style": { "height": "36px" } }).form; //创建窗体
  6679. _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); } }
  6680. break;
  6681. case "learnAna": //好友打开
  6682. _formdiv = new U.UF.UI.form(
  6683. "学习分析",
  6684. $$("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 }), {
  6685. "id": "learnAna",
  6686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6687. "onresize": function () { }
  6688. }, {
  6689. closecallback: function () { }
  6690. }, { "style": { "height": "36px" } }).form; //创建窗体
  6691. _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); } }
  6692. break;
  6693. case "AIChat": //AI共创
  6694. _formdiv = new U.UF.UI.form(
  6695. "AI共创",
  6696. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6697. "id": "AIChat",
  6698. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6699. "onresize": function () { }
  6700. }, {
  6701. istop: true,
  6702. closecallback: function () { $("#aichat_icon").remove(); },
  6703. narrowcallback: function () {
  6704. if (!$("#aichat_icon")[0]) {
  6705. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6706. }
  6707. },
  6708. }, { "style": { "height": "36px" } }).form; //创建窗体
  6709. _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); } }
  6710. break;
  6711. case "ainew": //AI共创
  6712. _formdiv = new U.UF.UI.form(
  6713. "AI协同",
  6714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6715. "id": "ainew",
  6716. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //创建窗体
  6721. _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); } }
  6722. break;
  6723. case "gpt4": //gpt4
  6724. _formdiv = new U.UF.UI.form(
  6725. "AI助手",
  6726. $$("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 }), {
  6727. "id": "gpt4",
  6728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6729. "onresize": function () { }
  6730. }, {
  6731. closecallback: function () { }
  6732. }, { "style": { "height": "36px" } }).form; //创建窗体
  6733. _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); } }
  6734. break;
  6735. case "aigpt": //gpt4
  6736. _formdiv = new U.UF.UI.form(
  6737. "AI助手+",
  6738. $$("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 }), {
  6739. "id": "aigpt",
  6740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () {
  6744. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6745. }
  6746. }, { "style": { "height": "36px" } }).form; //创建窗体
  6747. _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); } }
  6748. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6749. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6750. })
  6751. break;
  6752. case "aiKnowledge": //aiKnowledge
  6753. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6754. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6755. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6756. }
  6757. _formdiv = new U.UF.UI.form(
  6758. "知识建构",
  6759. $$("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 }), {
  6760. "id": "aiKnowledge",
  6761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _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); } }
  6767. break;
  6768. case "futureClass": //AI共创
  6769. _formdiv = new U.UF.UI.form(
  6770. "协同建构",
  6771. $$("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
  6772. "id": "synergyCourse",
  6773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. closecallback: function () {
  6777. $("iframe", _formdiv)[0].contentWindow.loginout();
  6778. }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _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); } }
  6781. break;
  6782. case "aiagent": //ai agent
  6783. _formdiv = new U.UF.UI.form(
  6784. "AI Agent",
  6785. $$("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" }), {
  6786. "id": "AIAgent",
  6787. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, { "style": { "height": "36px" } }).form; //创建窗体
  6792. _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); } }
  6793. break;
  6794. case "dataBoard": //数据看板
  6795. _formdiv = new U.UF.UI.form(
  6796. "数据看板",
  6797. $$("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 }), {
  6798. "id": "dataBoard",
  6799. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6800. "onresize": function () { }
  6801. }, {
  6802. closecallback: function () { }
  6803. }, { "style": { "height": "36px" } }).form; //创建窗体
  6804. _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); } }
  6805. break;
  6806. case "dataBoardSies": //数据融合
  6807. _formdiv = new U.UF.UI.form(
  6808. "数据融合",
  6809. $$("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 }), {
  6810. "id": "dataBoardSies",
  6811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6812. "onresize": function () { }
  6813. }, {
  6814. closecallback: function () { }
  6815. }, { "style": { "height": "36px" } }).form; //创建窗体
  6816. _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); } }
  6817. break;
  6818. case "dataBoardNew": //数据看板
  6819. _formdiv = new U.UF.UI.form(
  6820. "综合看板",
  6821. $$("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 }), {
  6822. "id": "dataBoardNew",
  6823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6824. "onresize": function () { }
  6825. }, {
  6826. closecallback: function () { }
  6827. }, { "style": { "height": "36px" } }).form; //创建窗体
  6828. _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); } }
  6829. break;
  6830. case "dataBoardTest": //数据看板
  6831. _formdiv = new U.UF.UI.form(
  6832. "评测看板",
  6833. $$("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 }), {
  6834. "id": "dataBoardTest",
  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/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6841. break;
  6842. case "AIAnalyse": //AI共创
  6843. _formdiv = new U.UF.UI.form(
  6844. "AI分析",
  6845. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6846. "id": "AIAnalyse",
  6847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, { "style": { "height": "36px" } }).form; //创建窗体
  6852. _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); } }
  6853. break;
  6854. case "studioCourse": //AI共创
  6855. _formdiv = new U.UF.UI.form(
  6856. "工作管理",
  6857. $$("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 }), {
  6858. "id": "studioCourse",
  6859. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6860. "onresize": function () { }
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _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); } }
  6865. break;
  6866. case "studioIndex": //AI共创
  6867. _formdiv = new U.UF.UI.form(
  6868. "工作中心",
  6869. $$("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 }), {
  6870. "id": "studioIndex",
  6871. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _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); } }
  6877. break;
  6878. case "source":
  6879. _formdiv = new U.UF.UI.form(
  6880. "教学资源",
  6881. $$("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 }), {
  6882. "id": "source",
  6883. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6884. "onresize": function () { }
  6885. }, {
  6886. closecallback: function () { }
  6887. }, { "style": { "height": "36px" } }).form; //创建窗体
  6888. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6889. break;
  6890. case "testTeacher":
  6891. _formdiv = new U.UF.UI.form(
  6892. "智能表单",
  6893. $$("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 }), {
  6894. "id": "testTeacher",
  6895. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6896. "onresize": function () { }
  6897. }, {
  6898. closecallback: function () { }
  6899. }, { "style": { "height": "36px" } }).form; //创建窗体
  6900. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6901. break;
  6902. case "testStudent":
  6903. _formdiv = new U.UF.UI.form(
  6904. "教师中心",
  6905. $$("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 }), {
  6906. "id": "testStudent",
  6907. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6908. "onresize": function () { }
  6909. }, {
  6910. closecallback: function () { }
  6911. }, { "style": { "height": "36px" } }).form; //创建窗体
  6912. _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); } }
  6913. break;
  6914. case "testTeacherSies":
  6915. _formdiv = new U.UF.UI.form(
  6916. "教师管理",
  6917. $$("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 }), {
  6918. "id": "testTeacherSies",
  6919. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6920. "onresize": function () { }
  6921. }, {
  6922. closecallback: function () { }
  6923. }, { "style": { "height": "36px" } }).form; //创建窗体
  6924. _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); } }
  6925. break;
  6926. case "testStudentSies":
  6927. _formdiv = new U.UF.UI.form(
  6928. "教师中心",
  6929. $$("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 }), {
  6930. "id": "testStudentSies",
  6931. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //创建窗体
  6936. _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); } }
  6937. break;
  6938. case "ytpbl": //消息通知
  6939. _formdiv = new U.UF.UI.form(
  6940. "案例征集",
  6941. $$("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 }), {
  6942. "id": "ytpbl",
  6943. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, { "style": { "height": "36px" } }).form; //创建窗体
  6948. _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); } }
  6949. // 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");
  6950. break;
  6951. case "aiCourseResource": //人工智能窗体
  6952. _formdiv = new U.UF.UI.form(
  6953. false,
  6954. $$("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 }), {
  6955. "id": "aiCourseResource",
  6956. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6957. "onresize": function () { },
  6958. "isdrag": false,
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _taskbar = ''
  6963. break;
  6964. case "szdjgCocooroboX": //图形化编程
  6965. _formdiv = new U.UF.UI.form(
  6966. "图形化编程",
  6967. $$("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" }), {
  6968. "id": "szdjgCocooroboX",
  6969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _taskbar = ''
  6975. break;
  6976. case "szdjgPython": //python编程
  6977. _formdiv = new U.UF.UI.form(
  6978. "Python编程",
  6979. $$("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" }), {
  6980. "id": "szdjgPython",
  6981. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _taskbar = ''
  6987. break;
  6988. case "Record":
  6989. _formdiv = new U.UF.UI.form(
  6990. "观察记录",
  6991. $$("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 }), {
  6992. "id": "Record",
  6993. "style": { "width": "90%", "height": "90%", "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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6999. break;
  7000. case "aigptCourse":
  7001. _formdiv = new U.UF.UI.form(
  7002. "AI智能体",
  7003. $$("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' }), {
  7004. "id": "aigptCourse",
  7005. "style": { "width": "90%", "height": "90%", "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/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7011. break;
  7012. case "classroomObservation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7016. "id": "classroomObservation",
  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/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7023. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7024. break;
  7025. case "pblCourse":
  7026. _formdiv = new U.UF.UI.form(
  7027. "学生PBL",
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7029. "id": "pblCourse",
  7030. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, { "style": { "height": "36px" } }).form; //创建窗体
  7035. _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); } }
  7036. break;
  7037. case "appStore":
  7038. _formdiv = new U.UF.UI.form(
  7039. "CocoFlow",
  7040. $$("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 }), {
  7041. "id": "appStore",
  7042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, { "style": { "height": "36px" } }).form; //创建窗体
  7047. _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); } }
  7048. break;
  7049. case "sassPlatform":
  7050. _formdiv = new U.UF.UI.form(
  7051. "Sass通用后台管理",
  7052. $$("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 }), {
  7053. "id": "sassPlatform",
  7054. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. break;
  7061. case "EDU":
  7062. _formdiv = new U.UF.UI.form(
  7063. "EDU",
  7064. $$("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" }), {
  7065. "id": "EDU",
  7066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, { "style": { "height": "36px" } }).form; //创建窗体
  7071. _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); } }
  7072. break;
  7073. case "knowledge":
  7074. _formdiv = new U.UF.UI.form(
  7075. "知识库",
  7076. $$("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 }), {
  7077. "id": "knowledge",
  7078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7079. "onresize": function () { }
  7080. }, {
  7081. closecallback: function () { }
  7082. }, { "style": { "height": "36px" } }).form; //创建窗体
  7083. _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); } }
  7084. break;
  7085. case "userExamine":
  7086. _formdiv = new U.UF.UI.form(
  7087. "账号申请",
  7088. $$("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" }), {
  7089. "id": "userExamine",
  7090. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7091. "onresize": function () { }
  7092. }, {
  7093. closecallback: function () { }
  7094. }, { "style": { "height": "36px" } }).form; //创建窗体
  7095. break;
  7096. }
  7097. //U.MD.D.I.openClick(str);
  7098. //如果有任务栏信息
  7099. if (_taskbar) {
  7100. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7101. }
  7102. }
  7103. // U.MD.D.I.openClick = function(str){
  7104. // var click = '';
  7105. // switch(str){
  7106. // case 'friend':
  7107. // click = '我的好友';
  7108. // break;
  7109. // case 'domain':
  7110. // click = '域名管理';
  7111. // break;
  7112. // case 'disk':
  7113. // click = '我的云盘';
  7114. // break;
  7115. // case 'word':
  7116. // click = 'Word';
  7117. // break;
  7118. // case 'excel':
  7119. // click = 'Execl';
  7120. // break;
  7121. // case 'txt':
  7122. // click = '文本文件';
  7123. // break;
  7124. // case 'lookupFriend':
  7125. // click = '查找好友';
  7126. // break;
  7127. // case 'ftp':
  7128. // click = 'FTP';
  7129. // break;
  7130. // case 'group':
  7131. // click = '群组';
  7132. // break;
  7133. // case 'set':
  7134. // click = '我的设置';
  7135. // break;
  7136. // case 'systemSet':
  7137. // click = '系统设置';
  7138. // break;
  7139. // case 'boomYun':
  7140. // click = '互联办公';
  7141. // break;
  7142. // case 'xz':
  7143. // click = '云端下载';
  7144. // break;
  7145. // case 'client':
  7146. // click = '有思浏览器';
  7147. // break;
  7148. // case 'backEndProgramming':
  7149. // click = '在线后台编程';
  7150. // break;
  7151. // case 'frontEndProgramming':
  7152. // click = '在线前端编程';
  7153. // break;
  7154. // default: break;
  7155. // }
  7156. // if(U.MD.D.I.Ip && click){
  7157. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7158. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7159. // })
  7160. // }
  7161. // }
  7162. /**
  7163. *函数作用:ajax简易函数,使用post格式
  7164. *@param url {data} 后台地址
  7165. *@param data {data} 参数json
  7166. *@param fn {data} 回调函数
  7167. *
  7168. */
  7169. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7170. // var xhr = new XMLHttpRequest();
  7171. // xhr.open("GET",url,true);
  7172. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7173. // xhr.onreadystatechange = function(){
  7174. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7175. // fn.call(this,xhr.responseText);
  7176. // }
  7177. // };
  7178. // xhr.send();
  7179. // }
  7180. /*判断是否是内网IP*/
  7181. // U.MD.D.I.isInnerIPFn = function(str){
  7182. // var curPageUrl = str;
  7183. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7184. // curPageUrl =curPageUrl.replace(reg1,'');
  7185. // // console.log('curPageUrl-1 '+curPageUrl);
  7186. // var reg2 = /\:+/g;//替换冒号为一点
  7187. // curPageUrl =curPageUrl.replace(reg2,'.');
  7188. // // console.log('curPageUrl-2 '+curPageUrl);
  7189. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7190. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7191. // if(curPageUrl[2] != '16'){
  7192. // return ipAddress;
  7193. // }else{
  7194. // return false;
  7195. // }
  7196. // }
  7197. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7198. // //compatibility for firefox and chrome
  7199. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7200. // var pc = new myPeerConnection({
  7201. // iceServers: []
  7202. // }),
  7203. // noop = function() {},
  7204. // localIPs = {},
  7205. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7206. // key;
  7207. // function iterateIP(ip) {
  7208. // if (!localIPs[ip]) onNewIP(ip);
  7209. // localIPs[ip] = true;
  7210. // }
  7211. // //create a bogus data channel
  7212. // pc.createDataChannel("");
  7213. // // create offer and set local description
  7214. // pc.createOffer().then(function(sdp) {
  7215. // sdp.sdp.split('\n').forEach(function(line) {
  7216. // if (line.indexOf('candidate') < 0) return;
  7217. // line.match(ipRegex).forEach(iterateIP);
  7218. // });
  7219. // pc.setLocalDescription(sdp, noop, noop);
  7220. // }).catch(function(reason) {
  7221. // // An error occurred, so handle the failure to connect
  7222. // });
  7223. // //sten for candidate events
  7224. // pc.onicecandidate = function(ice) {
  7225. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7226. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7227. // };
  7228. // }
  7229. // U.MD.D.I.getUserIpBool = function(callback){
  7230. // U.MD.D.I.getUserIP(function(ip){
  7231. // alert("Got IP! :" + ip);
  7232. // });
  7233. //}
  7234. //#endregion
  7235. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7236. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7237. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7238. _userinfo = US.userInfo, //登录用户信息
  7239. _userid = US.userInfo.userid //登录用户id
  7240. let _iframe;
  7241. let _cid = cid,
  7242. _stage = stage,
  7243. _task = task,
  7244. _tool = tool;
  7245. var _jie = $$("div", {
  7246. "style": {
  7247. "position": "absolute",
  7248. "bottom": "50px",
  7249. "right": "50px",
  7250. "zIndex": "9999",
  7251. "backgroundColor": "#2268bc",
  7252. "color": "#fff",
  7253. "padding": "12px 20px",
  7254. "cursor": "pointer",
  7255. "borderRadius": "4px",
  7256. },
  7257. "innerHTML": "提交作业"
  7258. })
  7259. let aTool = ''
  7260. let _loading = document.createElement('div')
  7261. _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;"
  7262. // _loading.id = "";
  7263. let _lchild = document.createElement('div')
  7264. let _limg = document.createElement('img')
  7265. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7266. _limg.style = "width: 26px;margin-right: 10px;"
  7267. _lchild.appendChild(_limg)
  7268. let _lspan = document.createElement('span')
  7269. _lspan.innerHTML = "上传中..."
  7270. _lchild.appendChild(_lspan)
  7271. _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%);"
  7272. _loading.appendChild(_lchild)
  7273. var _box = $$('div', {
  7274. "style": {
  7275. "position": "relative",
  7276. "width": "100%",
  7277. "height": "100%",
  7278. },
  7279. })
  7280. _box.appendChild(_loading)
  7281. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7282. switch (str) {
  7283. case "whiteboard":
  7284. aTool = 1;
  7285. _iframe = $$("iframe", {
  7286. "frameborder": "no",
  7287. "border": "0",
  7288. "scrolling ": "no",
  7289. "style": {
  7290. "cssText": "border:0;width:100%;height:100%"
  7291. },
  7292. "src": "https://beta.iwb.cocorobo.cn/"
  7293. })
  7294. _box.appendChild(_iframe);
  7295. _box.appendChild(_jie);
  7296. _formdiv = new U.UF.UI.form(
  7297. "电子白板",
  7298. _box, {
  7299. "id": "whiteboard" + cid + stage + task + tool,
  7300. "style": {
  7301. "width": "90%",
  7302. "height": "90%",
  7303. "overflow": 'hidden'
  7304. },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, {
  7309. "style": {
  7310. "height": "36px"
  7311. }
  7312. }).form; //创建窗体
  7313. _taskbar = {
  7314. "id": str + _formdiv.id,
  7315. "style": {
  7316. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7317. },
  7318. "name": "电子白板",
  7319. "forms": _formdiv,
  7320. "click": function () {
  7321. U.MD.D.I.openApplication(str, obj, info);
  7322. }
  7323. }
  7324. break;
  7325. case "mind":
  7326. aTool = 3;
  7327. _iframe = $$("iframe", {
  7328. "frameborder": "no",
  7329. "border": "0",
  7330. "scrolling ": "no",
  7331. "style": {
  7332. "cssText": "border:0;width:100%;height:100%"
  7333. },
  7334. "src": "/kityminder-editor/dist/index.html"
  7335. })
  7336. _box.appendChild(_iframe);
  7337. _box.appendChild(_jie);
  7338. _formdiv = new U.UF.UI.form(
  7339. "思维导图",
  7340. _box, { //"/jsmind/example/demo.html"
  7341. "id": "mind" + cid + stage + task + tool,
  7342. "style": {
  7343. "width": "90%",
  7344. "height": "90%",
  7345. "overflow": 'hidden'
  7346. },
  7347. "onresize": function () { }
  7348. }, {
  7349. closecallback: function () { }
  7350. }, {
  7351. "style": {
  7352. "height": "36px"
  7353. }
  7354. }).form; //创建窗体
  7355. _taskbar = {
  7356. "id": str + _formdiv.id,
  7357. "style": {
  7358. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7359. },
  7360. "name": "思维导图",
  7361. "forms": _formdiv,
  7362. "click": function () {
  7363. U.MD.D.I.openApplication(str, obj, info);
  7364. }
  7365. }
  7366. break;
  7367. case "MindMap":
  7368. aTool = 3;
  7369. _iframe = $$("iframe", {
  7370. "frameborder": "no",
  7371. "border": "0",
  7372. "scrolling ": "no",
  7373. "style": {
  7374. "cssText": "border:0;width:100%;height:100%"
  7375. },
  7376. "src": "//cloud.cocorobo.cn/mind/"
  7377. })
  7378. _box.appendChild(_iframe);
  7379. _box.appendChild(_jie);
  7380. _formdiv = new U.UF.UI.form(
  7381. "思维导图",
  7382. _box, { //"/jsmind/example/demo.html"
  7383. "id": "mind" + cid + stage + task + tool,
  7384. "style": {
  7385. "width": "90%",
  7386. "height": "90%",
  7387. "overflow": 'hidden'
  7388. },
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, {
  7393. "style": {
  7394. "height": "36px"
  7395. }
  7396. }).form; //创建窗体
  7397. _taskbar = {
  7398. "id": str + _formdiv.id,
  7399. "style": {
  7400. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7401. },
  7402. "name": "思维导图",
  7403. "forms": _formdiv,
  7404. "click": function () {
  7405. U.MD.D.I.openApplication(str, obj, info);
  7406. }
  7407. }
  7408. break;
  7409. case "doc":
  7410. aTool = 6;
  7411. _iframe = $$("iframe", {
  7412. "frameborder": "no",
  7413. "border": "0",
  7414. "scrolling ": "no",
  7415. "style": {
  7416. "cssText": "border:0;width:100%;height:100%"
  7417. },
  7418. "src": "/Office/Word/WordEditArea.htm"
  7419. })
  7420. _box.appendChild(_iframe);
  7421. _box.appendChild(_jie);
  7422. _formdiv = new U.UF.UI.form(
  7423. "协同文档",
  7424. _box, {
  7425. "id": "doc" + cid + stage + task + tool,
  7426. "style": {
  7427. "width": "90%",
  7428. "height": "90%",
  7429. "overflow": 'hidden'
  7430. },
  7431. "onresize": function () { }
  7432. }, {
  7433. closecallback: function () { }
  7434. }, {
  7435. "style": {
  7436. "height": "36px"
  7437. }
  7438. }).form; //创建窗体
  7439. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7440. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7441. })
  7442. _taskbar = {
  7443. "id": str + _formdiv.id,
  7444. "style": {
  7445. "backgroundImage": "url(/img/icon/doc.png)"
  7446. },
  7447. "name": "协同文档",
  7448. "forms": _formdiv,
  7449. "click": function () {
  7450. U.MD.D.I.openApplication(str, obj, info);
  7451. }
  7452. }
  7453. break;
  7454. case "mindNetwork": //好友打开
  7455. aTool = 7;
  7456. _iframe = $$("iframe", {
  7457. "webkitallowfullscreen": "",
  7458. "mozallowfullscreen": "",
  7459. "allowfullscreen": "",
  7460. "frameborder": "no",
  7461. "border": "0",
  7462. "scrolling ": "no",
  7463. "style": {
  7464. "cssText": "border:0; width:100%; height:100%;"
  7465. },
  7466. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7467. })
  7468. _box.appendChild(_iframe);
  7469. _box.appendChild(_jie);
  7470. _formdiv = new U.UF.UI.form(
  7471. "思维网格",
  7472. _box, {
  7473. "id": "mindNetwork" + cid + stage + task + tool,
  7474. "style": {
  7475. "width": "90%",
  7476. "height": "90%",
  7477. "overflow": 'hidden'
  7478. },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, {
  7483. "style": {
  7484. "height": "36px"
  7485. }
  7486. }).form; //创建窗体
  7487. _taskbar = {
  7488. "id": str + _formdiv.id,
  7489. "style": {
  7490. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7491. },
  7492. "name": "思维网格",
  7493. "forms": _formdiv,
  7494. "click": function () {
  7495. U.MD.D.I.openApplication(str, obj, info);
  7496. }
  7497. }
  7498. break;
  7499. case "courseDesign":
  7500. _iframe = $$("iframe", {
  7501. "webkitallowfullscreen": "",
  7502. "mozallowfullscreen": "",
  7503. "allowfullscreen": "",
  7504. "frameborder": "no",
  7505. "border": "0",
  7506. "scrolling ": "no",
  7507. "style": {
  7508. "cssText": "border:0; width:100%; height:100%;"
  7509. },
  7510. "src": "/course-design-vue"
  7511. })
  7512. _box.appendChild(_iframe);
  7513. _box.appendChild(_jie);
  7514. _formdiv = new U.UF.UI.form(
  7515. "项目设计",
  7516. _box, {
  7517. "id": "courseDesign" + 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. _taskbar = {
  7532. "id": str + _formdiv.id,
  7533. "style": {
  7534. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7535. },
  7536. "name": "项目设计",
  7537. "forms": _formdiv,
  7538. "click": function () {
  7539. U.MD.D.I.openApplication(str, obj, info);
  7540. }
  7541. }
  7542. break;
  7543. }
  7544. const script1 = document.createElement("script");
  7545. script1.type = "text/javascript";
  7546. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7547. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7548. const script2 = document.createElement("script");
  7549. script2.type = "text/javascript";
  7550. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7551. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7552. const script3 = document.createElement("script");
  7553. script3.type = "text/javascript";
  7554. script3.charset = "UTF-8";
  7555. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7556. const script4 = document.createElement("script");
  7557. script4.type = "text/javascript";
  7558. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7559. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7560. if (_iframe) {
  7561. if (str == 'doc') {
  7562. _iframe = _formdiv.querySelector('iframe')
  7563. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7564. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7565. _iframe.contentWindow.document.body.appendChild(script1);
  7566. _iframe.contentWindow.document.body.appendChild(script2);
  7567. // _iframe.contentWindow.document.body.appendChild(script3);
  7568. _iframe.contentWindow.document.body.appendChild(script4);
  7569. })
  7570. if (onloadListener) {
  7571. _iframe.contentDocument.location.reload()
  7572. } else {
  7573. _iframe.contentDocument.location.reload()
  7574. }
  7575. } else if (str == 'courseDesign') {
  7576. U.UF.DL.iframeLoad(_iframe, function () {
  7577. // _iframe.contentWindow.U.MD.O.W.load();
  7578. // _iframe.contentWindow.document.body.appendChild(script1);
  7579. _iframe.contentWindow.document.body.appendChild(script2);
  7580. _iframe.contentWindow.document.body.appendChild(script4);
  7581. })
  7582. } else if (str == 'mind') {
  7583. _iframe = _formdiv.querySelector('iframe')
  7584. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7585. //
  7586. _iframe.contentWindow.document.body.appendChild(script1);
  7587. _iframe.contentWindow.document.body.appendChild(script2);
  7588. _iframe.contentWindow.document.body.appendChild(script4);
  7589. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7590. })
  7591. if (onloadListener) {
  7592. _iframe.contentDocument.location.reload()
  7593. } else {
  7594. _iframe.contentDocument.location.reload()
  7595. }
  7596. } else if (str == 'whiteboard') {
  7597. _iframe = _formdiv.querySelector('iframe')
  7598. let onloadListener = _iframe.onload = () => {
  7599. _iframe.contentWindow.document.body.appendChild(script1);
  7600. _iframe.contentWindow.document.body.appendChild(script2);
  7601. _iframe.contentWindow.document.body.appendChild(script4);
  7602. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7603. };
  7604. // if (onloadListener) {
  7605. // try {
  7606. // _iframe.src += "?cocorobo="+new Date().getTime()
  7607. // _iframe.contentWindow.document.location.reload()
  7608. // } catch (error) {
  7609. // }
  7610. // } else {
  7611. // _iframe.contentDocument.location.reload()
  7612. // }
  7613. } else {
  7614. _iframe.onload = () => {
  7615. _iframe.contentWindow.document.body.appendChild(script1);
  7616. _iframe.contentWindow.document.body.appendChild(script2);
  7617. // _iframe.contentWindow.document.body.appendChild(script3);
  7618. _iframe.contentWindow.document.body.appendChild(script4);
  7619. };
  7620. }
  7621. _jie.onclick = async () => {
  7622. let text = ''
  7623. if (aTool == 1) {
  7624. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7625. } else if (aTool == 6) {
  7626. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7627. } else if (aTool == 3) {
  7628. text = await U.MD.D.I.getEditorContent(_iframe);
  7629. }
  7630. _loading.style.display = 'flex'
  7631. console.log(_loading);
  7632. var _ajs = _iframe.contentWindow.document.createElement("script");
  7633. _ajs.type = "text/javascript";
  7634. _ajs.innerHTML =
  7635. // 'console.log(' + _loading + ');\n' +
  7636. 'var _js = document.createElement("script");\n' +
  7637. '_js.type="text/javascript";\n' +
  7638. '_js.charset="UTF-8";\n' +
  7639. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7640. "_js.onload = function(){\n" +
  7641. ' var a = document.getElementsByTagName("img")\n' +
  7642. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7643. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7644. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7645. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7646. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7647. "beforeUpload_shishi(file," +
  7648. "'" +
  7649. _userid +
  7650. "'" +
  7651. ", " +
  7652. "'" +
  7653. _cid +
  7654. "'" +
  7655. ", " +
  7656. "'" +
  7657. _stage +
  7658. "'" +
  7659. ", " +
  7660. "'" +
  7661. _task +
  7662. "'" +
  7663. ", " +
  7664. "'" +
  7665. _tool +
  7666. "'" +
  7667. ", " +
  7668. "'" +
  7669. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7670. "'" +
  7671. ", " +
  7672. "'" +
  7673. aTool +
  7674. "'" +
  7675. ", " +
  7676. "`" +
  7677. text +
  7678. "`" +
  7679. ")\n" +
  7680. " });\n" +
  7681. "}\n" +
  7682. "document.head.appendChild(_js);\n";
  7683. _iframe.contentWindow.document.head.appendChild(_ajs);
  7684. }
  7685. }
  7686. //U.MD.D.I.openClick(str);
  7687. //如果有任务栏信息
  7688. // if (_taskbar) {
  7689. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7690. // }
  7691. }
  7692. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7693. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7694. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7695. _userinfo = US.userInfo, //登录用户信息
  7696. _userid = US.userInfo.userid //登录用户id
  7697. let _iframe;
  7698. let _cid = cid,
  7699. _stage = stage,
  7700. _task = task,
  7701. _tool = tool;
  7702. var _jie = $$("div", {
  7703. "style": {
  7704. "position": "absolute",
  7705. "bottom": "50px",
  7706. "right": "50px",
  7707. "zIndex": "9999",
  7708. "backgroundColor": "#2268bc",
  7709. "color": "#fff",
  7710. "padding": "12px 20px",
  7711. "cursor": "pointer",
  7712. "borderRadius": "4px",
  7713. },
  7714. "innerHTML": "提交作业"
  7715. })
  7716. let aTool = ''
  7717. let _loading = document.createElement('div')
  7718. _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;"
  7719. // _loading.id = "";
  7720. let _lchild = document.createElement('div')
  7721. let _limg = document.createElement('img')
  7722. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7723. _limg.style = "width: 26px;margin-right: 10px;"
  7724. _lchild.appendChild(_limg)
  7725. let _lspan = document.createElement('span')
  7726. _lspan.innerHTML = "上传中..."
  7727. _lchild.appendChild(_lspan)
  7728. _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%);"
  7729. _loading.appendChild(_lchild)
  7730. let _box = $$('div', {
  7731. "style": {
  7732. "position": "relative",
  7733. "width": "100%",
  7734. "height": "100%",
  7735. },
  7736. })
  7737. _box.appendChild(_loading)
  7738. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7739. switch (str) {
  7740. case "whiteboard":
  7741. aTool = 1;
  7742. _iframe = $$("iframe", {
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0;width:100%;height:100%"
  7748. },
  7749. "src": "https://beta.iwb.cocorobo.cn/"
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "电子白板",
  7755. _box, {
  7756. "id": "whiteboard" + cid + stage + task + tool,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //创建窗体
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7774. },
  7775. "name": "电子白板",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. case "mind":
  7783. aTool = 3;
  7784. _iframe = $$("iframe", {
  7785. "frameborder": "no",
  7786. "border": "0",
  7787. "scrolling ": "no",
  7788. "style": {
  7789. "cssText": "border:0;width:100%;height:100%"
  7790. },
  7791. "src": "/kityminder-editor/dist/index.html"
  7792. })
  7793. _box.appendChild(_iframe);
  7794. _box.appendChild(_jie);
  7795. _formdiv = new U.UF.UI.form(
  7796. "思维导图",
  7797. _box, { //"/jsmind/example/demo.html"
  7798. "id": "mind" + cid + stage + task + tool,
  7799. "style": {
  7800. "width": "90%",
  7801. "height": "90%",
  7802. "overflow": 'hidden'
  7803. },
  7804. "onresize": function () { }
  7805. }, {
  7806. closecallback: function () { }
  7807. }, {
  7808. "style": {
  7809. "height": "36px"
  7810. }
  7811. }).form; //创建窗体
  7812. _taskbar = {
  7813. "id": str + _formdiv.id,
  7814. "style": {
  7815. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7816. },
  7817. "name": "思维导图",
  7818. "forms": _formdiv,
  7819. "click": function () {
  7820. U.MD.D.I.openApplication(str, obj, info);
  7821. }
  7822. }
  7823. break;
  7824. case "MindMap":
  7825. aTool = 3;
  7826. _iframe = $$("iframe", {
  7827. "frameborder": "no",
  7828. "border": "0",
  7829. "scrolling ": "no",
  7830. "style": {
  7831. "cssText": "border:0;width:100%;height:100%"
  7832. },
  7833. "src": "//cloud.cocorobo.cn/mind/"
  7834. })
  7835. _box.appendChild(_iframe);
  7836. _box.appendChild(_jie);
  7837. _formdiv = new U.UF.UI.form(
  7838. "思维导图",
  7839. _box, { //"/jsmind/example/demo.html"
  7840. "id": "mind" + cid + stage + task + tool,
  7841. "style": {
  7842. "width": "90%",
  7843. "height": "90%",
  7844. "overflow": 'hidden'
  7845. },
  7846. "onresize": function () { }
  7847. }, {
  7848. closecallback: function () { }
  7849. }, {
  7850. "style": {
  7851. "height": "36px"
  7852. }
  7853. }).form; //创建窗体
  7854. _taskbar = {
  7855. "id": str + _formdiv.id,
  7856. "style": {
  7857. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7858. },
  7859. "name": "思维导图",
  7860. "forms": _formdiv,
  7861. "click": function () {
  7862. U.MD.D.I.openApplication(str, obj, info);
  7863. }
  7864. }
  7865. break;
  7866. case "doc":
  7867. aTool = 6;
  7868. _iframe = $$("iframe", {
  7869. "frameborder": "no",
  7870. "border": "0",
  7871. "scrolling ": "no",
  7872. "style": {
  7873. "cssText": "border:0;width:100%;height:100%"
  7874. },
  7875. "src": "/Office/Word/WordEditArea.htm"
  7876. })
  7877. _box.appendChild(_iframe);
  7878. _box.appendChild(_jie);
  7879. _formdiv = new U.UF.UI.form(
  7880. "协同文档",
  7881. _box, {
  7882. "id": "doc" + cid + stage + task + tool,
  7883. "style": {
  7884. "width": "90%",
  7885. "height": "90%",
  7886. "overflow": 'hidden'
  7887. },
  7888. "onresize": function () { }
  7889. }, {
  7890. closecallback: function () { }
  7891. }, {
  7892. "style": {
  7893. "height": "36px"
  7894. }
  7895. }).form; //创建窗体
  7896. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7897. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7898. })
  7899. _taskbar = {
  7900. "id": str + _formdiv.id,
  7901. "style": {
  7902. "backgroundImage": "url(/img/icon/doc.png)"
  7903. },
  7904. "name": "协同文档",
  7905. "forms": _formdiv,
  7906. "click": function () {
  7907. U.MD.D.I.openApplication(str, obj, info);
  7908. }
  7909. }
  7910. break;
  7911. case "mindNetwork": //好友打开
  7912. aTool = 7;
  7913. _iframe = $$("iframe", {
  7914. "webkitallowfullscreen": "",
  7915. "mozallowfullscreen": "",
  7916. "allowfullscreen": "",
  7917. "frameborder": "no",
  7918. "border": "0",
  7919. "scrolling ": "no",
  7920. "style": {
  7921. "cssText": "border:0; width:100%; height:100%;"
  7922. },
  7923. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7924. })
  7925. _box.appendChild(_iframe);
  7926. _box.appendChild(_jie);
  7927. _formdiv = new U.UF.UI.form(
  7928. "思维网格",
  7929. _box, {
  7930. "id": "mindNetwork" + cid + stage + task + tool,
  7931. "style": {
  7932. "width": "90%",
  7933. "height": "90%",
  7934. "overflow": 'hidden'
  7935. },
  7936. "onresize": function () { }
  7937. }, {
  7938. closecallback: function () { }
  7939. }, {
  7940. "style": {
  7941. "height": "36px"
  7942. }
  7943. }).form; //创建窗体
  7944. _taskbar = {
  7945. "id": str + _formdiv.id,
  7946. "style": {
  7947. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7948. },
  7949. "name": "思维网格",
  7950. "forms": _formdiv,
  7951. "click": function () {
  7952. U.MD.D.I.openApplication(str, obj, info);
  7953. }
  7954. }
  7955. break;
  7956. case "courseDesign":
  7957. _iframe = $$("iframe", {
  7958. "webkitallowfullscreen": "",
  7959. "mozallowfullscreen": "",
  7960. "allowfullscreen": "",
  7961. "frameborder": "no",
  7962. "border": "0",
  7963. "scrolling ": "no",
  7964. "style": {
  7965. "cssText": "border:0; width:100%; height:100%;"
  7966. },
  7967. "src": "/course-design-vue"
  7968. })
  7969. _box.appendChild(_iframe);
  7970. _box.appendChild(_jie);
  7971. _formdiv = new U.UF.UI.form(
  7972. "项目设计",
  7973. _box, {
  7974. "id": "courseDesign" + 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. _taskbar = {
  7989. "id": str + _formdiv.id,
  7990. "style": {
  7991. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7992. },
  7993. "name": "项目设计",
  7994. "forms": _formdiv,
  7995. "click": function () {
  7996. U.MD.D.I.openApplication(str, obj, info);
  7997. }
  7998. }
  7999. break;
  8000. }
  8001. const script1 = document.createElement("script");
  8002. script1.type = "text/javascript";
  8003. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8004. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8005. const script2 = document.createElement("script");
  8006. script2.type = "text/javascript";
  8007. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8008. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8009. const script3 = document.createElement("script");
  8010. script3.type = "text/javascript";
  8011. script3.charset = "UTF-8";
  8012. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8013. const script4 = document.createElement("script");
  8014. script4.type = "text/javascript";
  8015. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8016. script4.src = window.origin + "/js/Common/jietu2E.js";
  8017. if (_iframe) {
  8018. if (str == 'doc') {
  8019. _iframe = _formdiv.querySelector('iframe')
  8020. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8021. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8022. _iframe.contentWindow.document.body.appendChild(script1);
  8023. _iframe.contentWindow.document.body.appendChild(script2);
  8024. // _iframe.contentWindow.document.body.appendChild(script3);
  8025. _iframe.contentWindow.document.body.appendChild(script4);
  8026. })
  8027. if (onloadListener) {
  8028. _iframe.contentDocument.location.reload()
  8029. } else {
  8030. _iframe.contentDocument.location.reload()
  8031. }
  8032. } else if (str == 'courseDesign') {
  8033. U.UF.DL.iframeLoad(_iframe, function () {
  8034. // _iframe.contentWindow.U.MD.O.W.load();
  8035. // _iframe.contentWindow.document.body.appendChild(script1);
  8036. _iframe.contentWindow.document.body.appendChild(script2);
  8037. _iframe.contentWindow.document.body.appendChild(script4);
  8038. })
  8039. } else if (str == 'mind') {
  8040. _iframe = _formdiv.querySelector('iframe')
  8041. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8042. //
  8043. _iframe.contentWindow.document.body.appendChild(script1);
  8044. _iframe.contentWindow.document.body.appendChild(script2);
  8045. _iframe.contentWindow.document.body.appendChild(script4);
  8046. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8047. })
  8048. if (onloadListener) {
  8049. _iframe.contentDocument.location.reload()
  8050. } else {
  8051. _iframe.contentDocument.location.reload()
  8052. }
  8053. } else if (str == 'whiteboard') {
  8054. _iframe = _formdiv.querySelector('iframe')
  8055. let onloadListener = _iframe.onload = () => {
  8056. _iframe.contentWindow.document.body.appendChild(script1);
  8057. _iframe.contentWindow.document.body.appendChild(script2);
  8058. _iframe.contentWindow.document.body.appendChild(script4);
  8059. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8060. };
  8061. // if (onloadListener) {
  8062. // try {
  8063. // _iframe.src += "?cocorobo="+new Date().getTime()
  8064. // _iframe.contentWindow.document.location.reload()
  8065. // } catch (error) {
  8066. // }
  8067. // } else {
  8068. // _iframe.contentDocument.location.reload()
  8069. // }
  8070. } else {
  8071. _iframe.onload = () => {
  8072. _iframe.contentWindow.document.body.appendChild(script1);
  8073. _iframe.contentWindow.document.body.appendChild(script2);
  8074. // _iframe.contentWindow.document.body.appendChild(script3);
  8075. _iframe.contentWindow.document.body.appendChild(script4);
  8076. };
  8077. }
  8078. _jie.onclick = async () => {
  8079. let text = ''
  8080. if (aTool == 1) {
  8081. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8082. } else if (aTool == 6) {
  8083. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8084. } else if (aTool == 3) {
  8085. text = await U.MD.D.I.getEditorContent(_iframe);
  8086. }
  8087. _loading.style.display = 'flex'
  8088. console.log(_loading);
  8089. var _ajs = _iframe.contentWindow.document.createElement("script");
  8090. _ajs.type = "text/javascript";
  8091. _ajs.innerHTML =
  8092. // 'console.log(' + _loading + ');\n' +
  8093. 'var _js = document.createElement("script");\n' +
  8094. '_js.type="text/javascript";\n' +
  8095. '_js.charset="UTF-8";\n' +
  8096. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8097. "_js.onload = function(){\n" +
  8098. ' var a = document.getElementsByTagName("img")\n' +
  8099. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8100. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8101. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8102. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8103. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8104. "beforeUpload_shishi(file," +
  8105. "'" +
  8106. _userid +
  8107. "'" +
  8108. ", " +
  8109. "'" +
  8110. _cid +
  8111. "'" +
  8112. ", " +
  8113. "'" +
  8114. _stage +
  8115. "'" +
  8116. ", " +
  8117. "'" +
  8118. _task +
  8119. "'" +
  8120. ", " +
  8121. "'" +
  8122. _tool +
  8123. "'" +
  8124. ", " +
  8125. "'" +
  8126. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8127. "'" +
  8128. ", " +
  8129. "'" +
  8130. aTool +
  8131. "'" +
  8132. ", " +
  8133. "`" +
  8134. text +
  8135. "`" +
  8136. ")\n" +
  8137. " });\n" +
  8138. "}\n" +
  8139. "document.head.appendChild(_js);\n";
  8140. _iframe.contentWindow.document.head.appendChild(_ajs);
  8141. }
  8142. }
  8143. //U.MD.D.I.openClick(str);
  8144. //如果有任务栏信息
  8145. // if (_taskbar) {
  8146. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8147. // }
  8148. }
  8149. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8150. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8151. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8152. _userid = student.userid, //登录用户id
  8153. _username = student.student //用户名字
  8154. let _iframe;
  8155. let _cid = cid,
  8156. _stage = stage,
  8157. _task = task,
  8158. _tool = tool;
  8159. var _jie = $$("div", {
  8160. "style": {
  8161. "position": "absolute",
  8162. "bottom": "50px",
  8163. "right": "50px",
  8164. "zIndex": "9999",
  8165. "backgroundColor": "#2268bc",
  8166. "color": "#fff",
  8167. "padding": "12px 20px",
  8168. "cursor": "pointer",
  8169. "borderRadius": "4px",
  8170. },
  8171. "innerHTML": "提交作业"
  8172. })
  8173. let aTool = ''
  8174. let _loading = document.createElement('div')
  8175. _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;"
  8176. // _loading.id = "";
  8177. let _lchild = document.createElement('div')
  8178. let _limg = document.createElement('img')
  8179. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8180. _limg.style = "width: 26px;margin-right: 10px;"
  8181. _lchild.appendChild(_limg)
  8182. let _lspan = document.createElement('span')
  8183. _lspan.innerHTML = "上传中..."
  8184. _lchild.appendChild(_lspan)
  8185. _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%);"
  8186. _loading.appendChild(_lchild)
  8187. var _box = $$('div', {
  8188. "style": {
  8189. "position": "relative",
  8190. "width": "100%",
  8191. "height": "100%",
  8192. },
  8193. })
  8194. _box.appendChild(_loading)
  8195. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8196. switch (str) {
  8197. case "whiteboard":
  8198. aTool = 1;
  8199. _iframe = $$("iframe", {
  8200. "frameborder": "no",
  8201. "border": "0",
  8202. "scrolling ": "no",
  8203. "style": {
  8204. "cssText": "border:0;width:100%;height:100%"
  8205. },
  8206. "src": "https://beta.iwb.cocorobo.cn/"
  8207. })
  8208. _box.appendChild(_iframe);
  8209. _box.appendChild(_jie);
  8210. _formdiv = new U.UF.UI.form(
  8211. "电子白板-" + _username,
  8212. _box, {
  8213. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8214. "style": {
  8215. "width": "90%",
  8216. "height": "90%",
  8217. "overflow": 'hidden'
  8218. },
  8219. "onresize": function () { }
  8220. }, {
  8221. closecallback: function () { }
  8222. }, {
  8223. "style": {
  8224. "height": "36px"
  8225. }
  8226. }).form; //创建窗体
  8227. _taskbar = {
  8228. "id": str + _formdiv.id,
  8229. "style": {
  8230. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8231. },
  8232. "name": "电子白板",
  8233. "forms": _formdiv,
  8234. "click": function () {
  8235. U.MD.D.I.openApplication(str, obj, info);
  8236. }
  8237. }
  8238. break;
  8239. case "mind":
  8240. aTool = 3;
  8241. _iframe = $$("iframe", {
  8242. "frameborder": "no",
  8243. "border": "0",
  8244. "scrolling ": "no",
  8245. "style": {
  8246. "cssText": "border:0;width:100%;height:100%"
  8247. },
  8248. "src": "/kityminder-editor/dist/index.html"
  8249. })
  8250. _box.appendChild(_iframe);
  8251. _box.appendChild(_jie);
  8252. _formdiv = new U.UF.UI.form(
  8253. "思维导图-" + _username,
  8254. _box, { //"/jsmind/example/demo.html"
  8255. "id": "mind" + cid + stage + task + tool + _userid,
  8256. "style": {
  8257. "width": "90%",
  8258. "height": "90%",
  8259. "overflow": 'hidden'
  8260. },
  8261. "onresize": function () { }
  8262. }, {
  8263. closecallback: function () { }
  8264. }, {
  8265. "style": {
  8266. "height": "36px"
  8267. }
  8268. }).form; //创建窗体
  8269. _taskbar = {
  8270. "id": str + _formdiv.id,
  8271. "style": {
  8272. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8273. },
  8274. "name": "思维导图",
  8275. "forms": _formdiv,
  8276. "click": function () {
  8277. U.MD.D.I.openApplication(str, obj, info);
  8278. }
  8279. }
  8280. break;
  8281. case "MindMap":
  8282. aTool = 3;
  8283. _iframe = $$("iframe", {
  8284. "frameborder": "no",
  8285. "border": "0",
  8286. "scrolling ": "no",
  8287. "style": {
  8288. "cssText": "border:0;width:100%;height:100%"
  8289. },
  8290. "src": "//cloud.cocorobo.cn/mind/"
  8291. })
  8292. _box.appendChild(_iframe);
  8293. _box.appendChild(_jie);
  8294. _formdiv = new U.UF.UI.form(
  8295. "思维导图-" + _username,
  8296. _box, { //"/jsmind/example/demo.html"
  8297. "id": "mind" + cid + stage + task + tool + _userid,
  8298. "style": {
  8299. "width": "90%",
  8300. "height": "90%",
  8301. "overflow": 'hidden'
  8302. },
  8303. "onresize": function () { }
  8304. }, {
  8305. closecallback: function () { }
  8306. }, {
  8307. "style": {
  8308. "height": "36px"
  8309. }
  8310. }).form; //创建窗体
  8311. _taskbar = {
  8312. "id": str + _formdiv.id,
  8313. "style": {
  8314. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8315. },
  8316. "name": "思维导图",
  8317. "forms": _formdiv,
  8318. "click": function () {
  8319. U.MD.D.I.openApplication(str, obj, info);
  8320. }
  8321. }
  8322. break;
  8323. case "doc":
  8324. aTool = 6;
  8325. _iframe = $$("iframe", {
  8326. "frameborder": "no",
  8327. "border": "0",
  8328. "scrolling ": "no",
  8329. "style": {
  8330. "cssText": "border:0;width:100%;height:100%"
  8331. },
  8332. "src": "/Office/Word/WordEditArea.htm"
  8333. })
  8334. _box.appendChild(_iframe);
  8335. _box.appendChild(_jie);
  8336. _formdiv = new U.UF.UI.form(
  8337. "协同文档-" + _username,
  8338. _box, {
  8339. "id": "doc" + cid + stage + task + tool + _userid,
  8340. "style": {
  8341. "width": "90%",
  8342. "height": "90%",
  8343. "overflow": 'hidden'
  8344. },
  8345. "onresize": function () { }
  8346. }, {
  8347. closecallback: function () { }
  8348. }, {
  8349. "style": {
  8350. "height": "36px"
  8351. }
  8352. }).form; //创建窗体
  8353. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8354. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8355. })
  8356. _taskbar = {
  8357. "id": str + _formdiv.id,
  8358. "style": {
  8359. "backgroundImage": "url(/img/icon/doc.png)"
  8360. },
  8361. "name": "协同文档",
  8362. "forms": _formdiv,
  8363. "click": function () {
  8364. U.MD.D.I.openApplication(str, obj, info);
  8365. }
  8366. }
  8367. break;
  8368. case "mindNetwork": //好友打开
  8369. aTool = 7;
  8370. _iframe = $$("iframe", {
  8371. "webkitallowfullscreen": "",
  8372. "mozallowfullscreen": "",
  8373. "allowfullscreen": "",
  8374. "frameborder": "no",
  8375. "border": "0",
  8376. "scrolling ": "no",
  8377. "style": {
  8378. "cssText": "border:0; width:100%; height:100%;"
  8379. },
  8380. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8381. })
  8382. _box.appendChild(_iframe);
  8383. _box.appendChild(_jie);
  8384. _formdiv = new U.UF.UI.form(
  8385. "思维网格-" + _username,
  8386. _box, {
  8387. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8388. "style": {
  8389. "width": "90%",
  8390. "height": "90%",
  8391. "overflow": 'hidden'
  8392. },
  8393. "onresize": function () { }
  8394. }, {
  8395. closecallback: function () { }
  8396. }, {
  8397. "style": {
  8398. "height": "36px"
  8399. }
  8400. }).form; //创建窗体
  8401. _taskbar = {
  8402. "id": str + _formdiv.id,
  8403. "style": {
  8404. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8405. },
  8406. "name": "思维网格",
  8407. "forms": _formdiv,
  8408. "click": function () {
  8409. U.MD.D.I.openApplication(str, obj, info);
  8410. }
  8411. }
  8412. break;
  8413. case "courseDesign":
  8414. _iframe = $$("iframe", {
  8415. "webkitallowfullscreen": "",
  8416. "mozallowfullscreen": "",
  8417. "allowfullscreen": "",
  8418. "frameborder": "no",
  8419. "border": "0",
  8420. "scrolling ": "no",
  8421. "style": {
  8422. "cssText": "border:0; width:100%; height:100%;"
  8423. },
  8424. "src": "/course-design-vue"
  8425. })
  8426. _box.appendChild(_iframe);
  8427. _box.appendChild(_jie);
  8428. _formdiv = new U.UF.UI.form(
  8429. "项目设计-" + _username,
  8430. _box, {
  8431. "id": "courseDesign" + 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. _taskbar = {
  8446. "id": str + _formdiv.id,
  8447. "style": {
  8448. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8449. },
  8450. "name": "项目设计",
  8451. "forms": _formdiv,
  8452. "click": function () {
  8453. U.MD.D.I.openApplication(str, obj, info);
  8454. }
  8455. }
  8456. break;
  8457. }
  8458. const script1 = document.createElement("script");
  8459. script1.type = "text/javascript";
  8460. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8461. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8462. const script2 = document.createElement("script");
  8463. script2.type = "text/javascript";
  8464. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8465. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8466. const script3 = document.createElement("script");
  8467. script3.type = "text/javascript";
  8468. script3.charset = "UTF-8";
  8469. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8470. const script4 = document.createElement("script");
  8471. script4.type = "text/javascript";
  8472. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8473. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8474. if (_iframe) {
  8475. if (str == 'doc') {
  8476. _iframe = _formdiv.querySelector('iframe')
  8477. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8478. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8479. _iframe.contentWindow.document.body.appendChild(script1);
  8480. _iframe.contentWindow.document.body.appendChild(script2);
  8481. // _iframe.contentWindow.document.body.appendChild(script3);
  8482. _iframe.contentWindow.document.body.appendChild(script4);
  8483. })
  8484. if (onloadListener) {
  8485. _iframe.contentDocument.location.reload()
  8486. } else {
  8487. _iframe.contentDocument.location.reload()
  8488. }
  8489. } else if (str == 'courseDesign') {
  8490. U.UF.DL.iframeLoad(_iframe, function () {
  8491. // _iframe.contentWindow.U.MD.O.W.load();
  8492. // _iframe.contentWindow.document.body.appendChild(script1);
  8493. _iframe.contentWindow.document.body.appendChild(script2);
  8494. _iframe.contentWindow.document.body.appendChild(script4);
  8495. })
  8496. } else if (str == 'mind') {
  8497. _iframe = _formdiv.querySelector('iframe')
  8498. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8499. //
  8500. _iframe.contentWindow.document.body.appendChild(script1);
  8501. _iframe.contentWindow.document.body.appendChild(script2);
  8502. _iframe.contentWindow.document.body.appendChild(script4);
  8503. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8504. })
  8505. if (onloadListener) {
  8506. _iframe.contentDocument.location.reload()
  8507. } else {
  8508. _iframe.contentDocument.location.reload()
  8509. }
  8510. } else if (str == 'whiteboard') {
  8511. _iframe = _formdiv.querySelector('iframe')
  8512. let onloadListener = _iframe.onload = () => {
  8513. _iframe.contentWindow.document.body.appendChild(script1);
  8514. _iframe.contentWindow.document.body.appendChild(script2);
  8515. _iframe.contentWindow.document.body.appendChild(script4);
  8516. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8517. };
  8518. // if (onloadListener) {
  8519. // try {
  8520. // _iframe.src += "?cocorobo="+new Date().getTime()
  8521. // _iframe.contentWindow.document.location.reload()
  8522. // } catch (error) {
  8523. // }
  8524. // } else {
  8525. // _iframe.contentDocument.location.reload()
  8526. // }
  8527. } else {
  8528. _iframe.onload = () => {
  8529. _iframe.contentWindow.document.body.appendChild(script1);
  8530. _iframe.contentWindow.document.body.appendChild(script2);
  8531. // _iframe.contentWindow.document.body.appendChild(script3);
  8532. _iframe.contentWindow.document.body.appendChild(script4);
  8533. };
  8534. }
  8535. _jie.onclick = async () => {
  8536. let text = ''
  8537. if (aTool == 1) {
  8538. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8539. } else if (aTool == 6) {
  8540. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8541. } else if (aTool == 3) {
  8542. text = await U.MD.D.I.getEditorContent(_iframe);
  8543. }
  8544. _loading.style.display = 'flex'
  8545. console.log(_loading);
  8546. var _ajs = _iframe.contentWindow.document.createElement("script");
  8547. _ajs.type = "text/javascript";
  8548. _ajs.innerHTML =
  8549. // 'console.log(' + _loading + ');\n' +
  8550. 'var _js = document.createElement("script");\n' +
  8551. '_js.type="text/javascript";\n' +
  8552. '_js.charset="UTF-8";\n' +
  8553. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8554. "_js.onload = function(){\n" +
  8555. ' var a = document.getElementsByTagName("img")\n' +
  8556. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8557. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8558. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8559. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8560. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8561. "beforeUpload_shishi(file," +
  8562. "'" +
  8563. _userid +
  8564. "'" +
  8565. ", " +
  8566. "'" +
  8567. _cid +
  8568. "'" +
  8569. ", " +
  8570. "'" +
  8571. _stage +
  8572. "'" +
  8573. ", " +
  8574. "'" +
  8575. _task +
  8576. "'" +
  8577. ", " +
  8578. "'" +
  8579. _tool +
  8580. "'" +
  8581. ", " +
  8582. "'" +
  8583. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8584. "'" +
  8585. ", " +
  8586. "'" +
  8587. aTool +
  8588. "'" +
  8589. ", " +
  8590. "`" +
  8591. text +
  8592. "`" +
  8593. ")\n" +
  8594. " });\n" +
  8595. "}\n" +
  8596. "document.head.appendChild(_js);\n";
  8597. _iframe.contentWindow.document.head.appendChild(_ajs);
  8598. }
  8599. }
  8600. }
  8601. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8602. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8603. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8604. _userid = student.userid, //登录用户id
  8605. _username = student.student //用户名字
  8606. let _iframe;
  8607. let _cid = cid,
  8608. _stage = stage,
  8609. _task = task,
  8610. _tool = tool;
  8611. var _jie = $$("div", {
  8612. "style": {
  8613. "position": "absolute",
  8614. "bottom": "50px",
  8615. "right": "50px",
  8616. "zIndex": "9999",
  8617. "backgroundColor": "#2268bc",
  8618. "color": "#fff",
  8619. "padding": "12px 20px",
  8620. "cursor": "pointer",
  8621. "borderRadius": "4px",
  8622. },
  8623. "innerHTML": "提交作业"
  8624. })
  8625. let aTool = ''
  8626. let _loading = document.createElement('div')
  8627. _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;"
  8628. // _loading.id = "";
  8629. let _lchild = document.createElement('div')
  8630. let _limg = document.createElement('img')
  8631. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8632. _limg.style = "width: 26px;margin-right: 10px;"
  8633. _lchild.appendChild(_limg)
  8634. let _lspan = document.createElement('span')
  8635. _lspan.innerHTML = "上传中..."
  8636. _lchild.appendChild(_lspan)
  8637. _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%);"
  8638. _loading.appendChild(_lchild)
  8639. var _box = $$('div', {
  8640. "style": {
  8641. "position": "relative",
  8642. "width": "100%",
  8643. "height": "100%",
  8644. },
  8645. })
  8646. _box.appendChild(_loading)
  8647. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8648. switch (str) {
  8649. case "whiteboard":
  8650. aTool = 1;
  8651. _iframe = $$("iframe", {
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0;width:100%;height:100%"
  8657. },
  8658. "src": "https://beta.iwb.cocorobo.cn/"
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "电子白板-" + _username,
  8664. _box, {
  8665. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //创建窗体
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8683. },
  8684. "name": "电子白板",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. case "mind":
  8692. aTool = 3;
  8693. _iframe = $$("iframe", {
  8694. "frameborder": "no",
  8695. "border": "0",
  8696. "scrolling ": "no",
  8697. "style": {
  8698. "cssText": "border:0;width:100%;height:100%"
  8699. },
  8700. "src": "/kityminder-editor/dist/index.html"
  8701. })
  8702. _box.appendChild(_iframe);
  8703. _box.appendChild(_jie);
  8704. _formdiv = new U.UF.UI.form(
  8705. "思维导图-" + _username,
  8706. _box, { //"/jsmind/example/demo.html"
  8707. "id": "mind" + cid + stage + task + tool + _userid,
  8708. "style": {
  8709. "width": "90%",
  8710. "height": "90%",
  8711. "overflow": 'hidden'
  8712. },
  8713. "onresize": function () { }
  8714. }, {
  8715. closecallback: function () { }
  8716. }, {
  8717. "style": {
  8718. "height": "36px"
  8719. }
  8720. }).form; //创建窗体
  8721. _taskbar = {
  8722. "id": str + _formdiv.id,
  8723. "style": {
  8724. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8725. },
  8726. "name": "思维导图",
  8727. "forms": _formdiv,
  8728. "click": function () {
  8729. U.MD.D.I.openApplication(str, obj, info);
  8730. }
  8731. }
  8732. break;
  8733. case "MindMap":
  8734. aTool = 3;
  8735. _iframe = $$("iframe", {
  8736. "frameborder": "no",
  8737. "border": "0",
  8738. "scrolling ": "no",
  8739. "style": {
  8740. "cssText": "border:0;width:100%;height:100%"
  8741. },
  8742. "src": "//cloud.cocorobo.cn/mind/"
  8743. })
  8744. _box.appendChild(_iframe);
  8745. _box.appendChild(_jie);
  8746. _formdiv = new U.UF.UI.form(
  8747. "思维导图-" + _username,
  8748. _box, { //"/jsmind/example/demo.html"
  8749. "id": "mind" + cid + stage + task + tool + _userid,
  8750. "style": {
  8751. "width": "90%",
  8752. "height": "90%",
  8753. "overflow": 'hidden'
  8754. },
  8755. "onresize": function () { }
  8756. }, {
  8757. closecallback: function () { }
  8758. }, {
  8759. "style": {
  8760. "height": "36px"
  8761. }
  8762. }).form; //创建窗体
  8763. _taskbar = {
  8764. "id": str + _formdiv.id,
  8765. "style": {
  8766. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8767. },
  8768. "name": "思维导图",
  8769. "forms": _formdiv,
  8770. "click": function () {
  8771. U.MD.D.I.openApplication(str, obj, info);
  8772. }
  8773. }
  8774. break;
  8775. case "doc":
  8776. aTool = 6;
  8777. _iframe = $$("iframe", {
  8778. "frameborder": "no",
  8779. "border": "0",
  8780. "scrolling ": "no",
  8781. "style": {
  8782. "cssText": "border:0;width:100%;height:100%"
  8783. },
  8784. "src": "/Office/Word/WordEditArea.htm"
  8785. })
  8786. _box.appendChild(_iframe);
  8787. _box.appendChild(_jie);
  8788. _formdiv = new U.UF.UI.form(
  8789. "协同文档-" + _username,
  8790. _box, {
  8791. "id": "doc" + cid + stage + task + tool + _userid,
  8792. "style": {
  8793. "width": "90%",
  8794. "height": "90%",
  8795. "overflow": 'hidden'
  8796. },
  8797. "onresize": function () { }
  8798. }, {
  8799. closecallback: function () { }
  8800. }, {
  8801. "style": {
  8802. "height": "36px"
  8803. }
  8804. }).form; //创建窗体
  8805. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8806. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8807. })
  8808. _taskbar = {
  8809. "id": str + _formdiv.id,
  8810. "style": {
  8811. "backgroundImage": "url(/img/icon/doc.png)"
  8812. },
  8813. "name": "协同文档",
  8814. "forms": _formdiv,
  8815. "click": function () {
  8816. U.MD.D.I.openApplication(str, obj, info);
  8817. }
  8818. }
  8819. break;
  8820. case "mindNetwork": //好友打开
  8821. aTool = 7;
  8822. _iframe = $$("iframe", {
  8823. "webkitallowfullscreen": "",
  8824. "mozallowfullscreen": "",
  8825. "allowfullscreen": "",
  8826. "frameborder": "no",
  8827. "border": "0",
  8828. "scrolling ": "no",
  8829. "style": {
  8830. "cssText": "border:0; width:100%; height:100%;"
  8831. },
  8832. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8833. })
  8834. _box.appendChild(_iframe);
  8835. _box.appendChild(_jie);
  8836. _formdiv = new U.UF.UI.form(
  8837. "思维网格-" + _username,
  8838. _box, {
  8839. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8840. "style": {
  8841. "width": "90%",
  8842. "height": "90%",
  8843. "overflow": 'hidden'
  8844. },
  8845. "onresize": function () { }
  8846. }, {
  8847. closecallback: function () { }
  8848. }, {
  8849. "style": {
  8850. "height": "36px"
  8851. }
  8852. }).form; //创建窗体
  8853. _taskbar = {
  8854. "id": str + _formdiv.id,
  8855. "style": {
  8856. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8857. },
  8858. "name": "思维网格",
  8859. "forms": _formdiv,
  8860. "click": function () {
  8861. U.MD.D.I.openApplication(str, obj, info);
  8862. }
  8863. }
  8864. break;
  8865. case "courseDesign":
  8866. _iframe = $$("iframe", {
  8867. "webkitallowfullscreen": "",
  8868. "mozallowfullscreen": "",
  8869. "allowfullscreen": "",
  8870. "frameborder": "no",
  8871. "border": "0",
  8872. "scrolling ": "no",
  8873. "style": {
  8874. "cssText": "border:0; width:100%; height:100%;"
  8875. },
  8876. "src": "/course-design-vue"
  8877. })
  8878. _box.appendChild(_iframe);
  8879. _box.appendChild(_jie);
  8880. _formdiv = new U.UF.UI.form(
  8881. "项目设计-" + _username,
  8882. _box, {
  8883. "id": "courseDesign" + 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. _taskbar = {
  8898. "id": str + _formdiv.id,
  8899. "style": {
  8900. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8901. },
  8902. "name": "项目设计",
  8903. "forms": _formdiv,
  8904. "click": function () {
  8905. U.MD.D.I.openApplication(str, obj, info);
  8906. }
  8907. }
  8908. break;
  8909. }
  8910. const script1 = document.createElement("script");
  8911. script1.type = "text/javascript";
  8912. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8913. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8914. const script2 = document.createElement("script");
  8915. script2.type = "text/javascript";
  8916. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8917. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8918. const script3 = document.createElement("script");
  8919. script3.type = "text/javascript";
  8920. script3.charset = "UTF-8";
  8921. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8922. const script4 = document.createElement("script");
  8923. script4.type = "text/javascript";
  8924. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8925. script4.src = window.origin + "/js/Common/jietu2E.js";
  8926. if (_iframe) {
  8927. if (str == 'doc') {
  8928. _iframe = _formdiv.querySelector('iframe')
  8929. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8930. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8931. _iframe.contentWindow.document.body.appendChild(script1);
  8932. _iframe.contentWindow.document.body.appendChild(script2);
  8933. // _iframe.contentWindow.document.body.appendChild(script3);
  8934. _iframe.contentWindow.document.body.appendChild(script4);
  8935. })
  8936. if (onloadListener) {
  8937. _iframe.contentDocument.location.reload()
  8938. } else {
  8939. _iframe.contentDocument.location.reload()
  8940. }
  8941. } else if (str == 'courseDesign') {
  8942. U.UF.DL.iframeLoad(_iframe, function () {
  8943. // _iframe.contentWindow.U.MD.O.W.load();
  8944. // _iframe.contentWindow.document.body.appendChild(script1);
  8945. _iframe.contentWindow.document.body.appendChild(script2);
  8946. _iframe.contentWindow.document.body.appendChild(script4);
  8947. })
  8948. } else if (str == 'mind') {
  8949. _iframe = _formdiv.querySelector('iframe')
  8950. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8951. //
  8952. _iframe.contentWindow.document.body.appendChild(script1);
  8953. _iframe.contentWindow.document.body.appendChild(script2);
  8954. _iframe.contentWindow.document.body.appendChild(script4);
  8955. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8956. })
  8957. if (onloadListener) {
  8958. _iframe.contentDocument.location.reload()
  8959. } else {
  8960. _iframe.contentDocument.location.reload()
  8961. }
  8962. } else if (str == 'whiteboard') {
  8963. _iframe = _formdiv.querySelector('iframe')
  8964. let onloadListener = _iframe.onload = () => {
  8965. _iframe.contentWindow.document.body.appendChild(script1);
  8966. _iframe.contentWindow.document.body.appendChild(script2);
  8967. _iframe.contentWindow.document.body.appendChild(script4);
  8968. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8969. };
  8970. // if (onloadListener) {
  8971. // try {
  8972. // _iframe.src += "?cocorobo="+new Date().getTime()
  8973. // _iframe.contentWindow.document.location.reload()
  8974. // } catch (error) {
  8975. // }
  8976. // } else {
  8977. // _iframe.contentDocument.location.reload()
  8978. // }
  8979. } else {
  8980. _iframe.onload = () => {
  8981. _iframe.contentWindow.document.body.appendChild(script1);
  8982. _iframe.contentWindow.document.body.appendChild(script2);
  8983. // _iframe.contentWindow.document.body.appendChild(script3);
  8984. _iframe.contentWindow.document.body.appendChild(script4);
  8985. };
  8986. }
  8987. _jie.onclick = async () => {
  8988. let text = ''
  8989. if (aTool == 1) {
  8990. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8991. } else if (aTool == 6) {
  8992. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8993. } else if (aTool == 3) {
  8994. text = await U.MD.D.I.getEditorContent(_iframe);
  8995. }
  8996. _loading.style.display = 'flex'
  8997. console.log(_loading);
  8998. var _ajs = _iframe.contentWindow.document.createElement("script");
  8999. _ajs.type = "text/javascript";
  9000. _ajs.innerHTML =
  9001. // 'console.log(' + _loading + ');\n' +
  9002. 'var _js = document.createElement("script");\n' +
  9003. '_js.type="text/javascript";\n' +
  9004. '_js.charset="UTF-8";\n' +
  9005. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9006. "_js.onload = function(){\n" +
  9007. ' var a = document.getElementsByTagName("img")\n' +
  9008. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9009. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9010. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9011. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9012. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9013. "beforeUpload_shishi(file," +
  9014. "'" +
  9015. _userid +
  9016. "'" +
  9017. ", " +
  9018. "'" +
  9019. _cid +
  9020. "'" +
  9021. ", " +
  9022. "'" +
  9023. _stage +
  9024. "'" +
  9025. ", " +
  9026. "'" +
  9027. _task +
  9028. "'" +
  9029. ", " +
  9030. "'" +
  9031. _tool +
  9032. "'" +
  9033. ", " +
  9034. "'" +
  9035. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9036. "'" +
  9037. ", " +
  9038. "'" +
  9039. aTool +
  9040. "'" +
  9041. ", " +
  9042. "`" +
  9043. text +
  9044. "`" +
  9045. ")\n" +
  9046. " });\n" +
  9047. "}\n" +
  9048. "document.head.appendChild(_js);\n";
  9049. _iframe.contentWindow.document.head.appendChild(_ajs);
  9050. }
  9051. }
  9052. }
  9053. U.MD.D.I.getEditorContent = function (iframe) {
  9054. return new Promise((resolve, reject) => {
  9055. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9056. console.log(content);
  9057. resolve(content)
  9058. });
  9059. });
  9060. }
  9061. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9062. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9063. // if (res.value[0].length > 0) {
  9064. // // resolve(res.value[0][0].text);
  9065. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9066. // $(fileInput).val('');
  9067. // });
  9068. // }
  9069. // }, [], { "type": "GET", "withCredentials": true });
  9070. var xmlhttp;
  9071. var Mac, Sn, DeviceId
  9072. if (window.XMLHttpRequest) {
  9073. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9074. xmlhttp = new XMLHttpRequest();
  9075. } else {
  9076. // IE6, IE5 浏览器执行代码
  9077. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9078. }
  9079. xmlhttp.onreadystatechange = function () {
  9080. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9081. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9082. // resolve(res.value[0][0].text);
  9083. if (type == '2') {
  9084. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9085. } else if (type == '3') {
  9086. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9087. }
  9088. } else {
  9089. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9090. }
  9091. }
  9092. }
  9093. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9094. xmlhttp.send();
  9095. }
  9096. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9097. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9098. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9099. _userinfo = US.userInfo, //登录用户信息
  9100. _userid = US.userInfo.userid //登录用户id
  9101. let _iframe;
  9102. let _cid = cid,
  9103. _stage = stage,
  9104. _task = task,
  9105. _tool = tool;
  9106. var _jie = $$("div", {
  9107. "style": {
  9108. "position": "absolute",
  9109. "bottom": "50px",
  9110. "right": "50px",
  9111. "zIndex": "9999",
  9112. "backgroundColor": "#2268bc",
  9113. "color": "#fff",
  9114. "padding": "12px 20px",
  9115. "cursor": "pointer",
  9116. "borderRadius": "4px",
  9117. },
  9118. "innerHTML": "确认并提交"
  9119. })
  9120. let aTool = ''
  9121. let _loading = document.createElement('div')
  9122. _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;"
  9123. // _loading.id = "";
  9124. let _lchild = document.createElement('div')
  9125. let _limg = document.createElement('img')
  9126. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9127. _limg.style = "width: 26px;margin-right: 10px;"
  9128. _lchild.appendChild(_limg)
  9129. let _lspan = document.createElement('span')
  9130. _lspan.innerHTML = "上传中..."
  9131. _lchild.appendChild(_lspan)
  9132. _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%);"
  9133. _loading.appendChild(_lchild)
  9134. var _box = $$('div', {
  9135. "style": {
  9136. "position": "relative",
  9137. "width": "100%",
  9138. "height": "100%",
  9139. },
  9140. })
  9141. _box.appendChild(_loading)
  9142. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9143. switch (str) {
  9144. case "whiteboard":
  9145. aTool = 1;
  9146. _iframe = $$("iframe", {
  9147. "frameborder": "no",
  9148. "border": "0",
  9149. "scrolling ": "no",
  9150. "style": {
  9151. "cssText": "border:0;width:100%;height:100%"
  9152. },
  9153. "src": "https://beta.iwb.cocorobo.cn/"
  9154. })
  9155. _box.appendChild(_iframe);
  9156. _box.appendChild(_jie);
  9157. _formdiv = new U.UF.UI.form(
  9158. "电子白板",
  9159. _box, {
  9160. "id": "whiteboards" + cid + stage + task + tool,
  9161. "style": {
  9162. "width": "90%",
  9163. "height": "90%",
  9164. "overflow": 'hidden'
  9165. },
  9166. "onresize": function () { }
  9167. }, {
  9168. closecallback: function () { }
  9169. }, {
  9170. "style": {
  9171. "height": "36px"
  9172. }
  9173. }).form; //创建窗体
  9174. _taskbar = {
  9175. "id": str + _formdiv.id,
  9176. "style": {
  9177. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9178. },
  9179. "name": "电子白板",
  9180. "forms": _formdiv,
  9181. "click": function () {
  9182. U.MD.D.I.openApplication(str, obj, info);
  9183. }
  9184. }
  9185. break;
  9186. case "mind":
  9187. aTool = 3;
  9188. _iframe = $$("iframe", {
  9189. "frameborder": "no",
  9190. "border": "0",
  9191. "scrolling ": "no",
  9192. "style": {
  9193. "cssText": "border:0;width:100%;height:100%"
  9194. },
  9195. "src": "/kityminder-editor/dist/index.html"
  9196. });
  9197. _box.appendChild(_iframe);
  9198. _box.appendChild(_jie);
  9199. _formdiv = new U.UF.UI.form(
  9200. "思维导图",
  9201. _box, { //"/jsmind/example/demo.html"
  9202. "id": "minds" + cid + stage + task + tool,
  9203. "style": {
  9204. "width": "90%",
  9205. "height": "90%",
  9206. "overflow": 'hidden'
  9207. },
  9208. "onresize": function () { }
  9209. }, {
  9210. closecallback: function () { }
  9211. }, {
  9212. "style": {
  9213. "height": "36px"
  9214. }
  9215. }).form; //创建窗体
  9216. _taskbar = {
  9217. "id": str + _formdiv.id,
  9218. "style": {
  9219. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9220. },
  9221. "name": "思维导图",
  9222. "forms": _formdiv,
  9223. "click": function () {
  9224. U.MD.D.I.openApplication(str, obj, info);
  9225. }
  9226. }
  9227. break;
  9228. case "doc":
  9229. aTool = 6;
  9230. _iframe = $$("iframe", {
  9231. "frameborder": "no",
  9232. "border": "0",
  9233. "scrolling ": "no",
  9234. "style": {
  9235. "cssText": "border:0;width:100%;height:100%"
  9236. },
  9237. "src": "/Office/Word/WordEditArea.htm"
  9238. })
  9239. _box.appendChild(_iframe);
  9240. _box.appendChild(_jie);
  9241. _formdiv = new U.UF.UI.form(
  9242. "协同文档",
  9243. _box, {
  9244. "id": "docs" + cid + stage + task + tool,
  9245. "style": {
  9246. "width": "90%",
  9247. "height": "90%",
  9248. "overflow": 'hidden'
  9249. },
  9250. "onresize": function () { }
  9251. }, {
  9252. closecallback: function () { }
  9253. }, {
  9254. "style": {
  9255. "height": "36px"
  9256. }
  9257. }).form; //创建窗体
  9258. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9259. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9260. })
  9261. _taskbar = {
  9262. "id": str + _formdiv.id,
  9263. "style": {
  9264. "backgroundImage": "url(/img/icon/doc.png)"
  9265. },
  9266. "name": "协同文档",
  9267. "forms": _formdiv,
  9268. "click": function () {
  9269. U.MD.D.I.openApplication(str, obj, info);
  9270. }
  9271. }
  9272. break;
  9273. }
  9274. const script1 = document.createElement("script");
  9275. script1.type = "text/javascript";
  9276. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9277. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9278. const script2 = document.createElement("script");
  9279. script2.type = "text/javascript";
  9280. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9281. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9282. const script3 = document.createElement("script");
  9283. script3.type = "text/javascript";
  9284. script3.charset = "UTF-8";
  9285. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9286. const script4 = document.createElement("script");
  9287. script4.type = "text/javascript";
  9288. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9289. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9290. if (_iframe) {
  9291. if (str == 'doc') {
  9292. _iframe = _formdiv.querySelector('iframe')
  9293. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9294. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9295. _iframe.contentWindow.document.body.appendChild(script1);
  9296. _iframe.contentWindow.document.body.appendChild(script2);
  9297. // _iframe.contentWindow.document.body.appendChild(script3);
  9298. _iframe.contentWindow.document.body.appendChild(script4);
  9299. })
  9300. if (onloadListener) {
  9301. _iframe.contentDocument.location.reload()
  9302. } else {
  9303. _iframe.contentDocument.location.reload()
  9304. }
  9305. } else if (str == 'mind') {
  9306. _iframe = _formdiv.querySelector('iframe')
  9307. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9308. _iframe.contentWindow.document.body.appendChild(script1);
  9309. _iframe.contentWindow.document.body.appendChild(script2);
  9310. _iframe.contentWindow.document.body.appendChild(script4);
  9311. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9312. })
  9313. if (onloadListener) {
  9314. _iframe.contentDocument.location.reload()
  9315. } else {
  9316. _iframe.contentDocument.location.reload()
  9317. }
  9318. } else {
  9319. _iframe.onload = () => {
  9320. _iframe.contentWindow.document.body.appendChild(script1);
  9321. _iframe.contentWindow.document.body.appendChild(script2);
  9322. // _iframe.contentWindow.document.body.appendChild(script3);
  9323. _iframe.contentWindow.document.body.appendChild(script4);
  9324. };
  9325. }
  9326. _jie.onclick = async () => {
  9327. let text = ''
  9328. if (aTool == 6) {
  9329. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9330. } else if (aTool == 3) {
  9331. text = await U.MD.D.I.getEditorContent(_iframe);
  9332. }
  9333. _loading.style.display = 'flex'
  9334. console.log(_loading);
  9335. var _ajs = _iframe.contentWindow.document.createElement("script");
  9336. _ajs.type = "text/javascript";
  9337. _ajs.innerHTML =
  9338. // 'console.log(' + _loading + ');\n' +
  9339. 'var _js = document.createElement("script");\n' +
  9340. '_js.type="text/javascript";\n' +
  9341. '_js.charset="UTF-8";\n' +
  9342. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9343. "_js.onload = function(){\n" +
  9344. ' var a = document.getElementsByTagName("img")\n' +
  9345. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9346. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9347. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9348. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9349. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9350. "beforeUpload_shishi(file," +
  9351. "'" +
  9352. _userid +
  9353. "'" +
  9354. ", " +
  9355. "'" +
  9356. _cid +
  9357. "'" +
  9358. ", " +
  9359. "'" +
  9360. _stage +
  9361. "'" +
  9362. ", " +
  9363. "'" +
  9364. _task +
  9365. "'" +
  9366. ", " +
  9367. "'" +
  9368. _tool +
  9369. "'" +
  9370. ", " +
  9371. "'" +
  9372. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9373. "'" +
  9374. ", " +
  9375. "'" +
  9376. aTool +
  9377. "'" +
  9378. ", " +
  9379. "`" +
  9380. text +
  9381. "`" +
  9382. ")\n" +
  9383. " });\n" +
  9384. "}\n" +
  9385. "document.head.appendChild(_js);\n";
  9386. _iframe.contentWindow.document.head.appendChild(_ajs);
  9387. }
  9388. }
  9389. //U.MD.D.I.openClick(str);
  9390. //如果有任务栏信息
  9391. // if (_taskbar) {
  9392. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9393. // }
  9394. }
  9395. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9396. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9397. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9398. _userinfo = US.userInfo, //登录用户信息
  9399. _userid = US.userInfo.userid //登录用户id
  9400. let _iframe;
  9401. let _cid = cid,
  9402. _stage = stage,
  9403. _task = task,
  9404. _tool = tool;
  9405. var _jie = $$("div", {
  9406. "style": {
  9407. "position": "absolute",
  9408. "bottom": "50px",
  9409. "right": "50px",
  9410. "zIndex": "9999",
  9411. "backgroundColor": "#2268bc",
  9412. "color": "#fff",
  9413. "padding": "12px 20px",
  9414. "cursor": "pointer",
  9415. "borderRadius": "4px",
  9416. },
  9417. "innerHTML": "确认并提交"
  9418. })
  9419. let aTool = ''
  9420. let _loading = document.createElement('div')
  9421. _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;"
  9422. // _loading.id = "";
  9423. let _lchild = document.createElement('div')
  9424. let _limg = document.createElement('img')
  9425. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9426. _limg.style = "width: 26px;margin-right: 10px;"
  9427. _lchild.appendChild(_limg)
  9428. let _lspan = document.createElement('span')
  9429. _lspan.innerHTML = "上传中..."
  9430. _lchild.appendChild(_lspan)
  9431. _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%);"
  9432. _loading.appendChild(_lchild)
  9433. var _box = $$('div', {
  9434. "style": {
  9435. "position": "relative",
  9436. "width": "100%",
  9437. "height": "100%",
  9438. },
  9439. })
  9440. _box.appendChild(_loading)
  9441. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9442. switch (str) {
  9443. case "whiteboard":
  9444. aTool = 1;
  9445. _iframe = $$("iframe", {
  9446. "frameborder": "no",
  9447. "border": "0",
  9448. "scrolling ": "no",
  9449. "style": {
  9450. "cssText": "border:0;width:100%;height:100%"
  9451. },
  9452. "src": "https://beta.iwb.cocorobo.cn/"
  9453. })
  9454. _box.appendChild(_iframe);
  9455. _box.appendChild(_jie);
  9456. _formdiv = new U.UF.UI.form(
  9457. "电子白板",
  9458. _box, {
  9459. "id": "whiteboards" + cid + stage + task + tool,
  9460. "style": {
  9461. "width": "90%",
  9462. "height": "90%",
  9463. "overflow": 'hidden'
  9464. },
  9465. "onresize": function () { }
  9466. }, {
  9467. closecallback: function () { }
  9468. }, {
  9469. "style": {
  9470. "height": "36px"
  9471. }
  9472. }).form; //创建窗体
  9473. _taskbar = {
  9474. "id": str + _formdiv.id,
  9475. "style": {
  9476. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9477. },
  9478. "name": "电子白板",
  9479. "forms": _formdiv,
  9480. "click": function () {
  9481. U.MD.D.I.openApplication(str, obj, info);
  9482. }
  9483. }
  9484. break;
  9485. case "mind":
  9486. aTool = 3;
  9487. _iframe = $$("iframe", {
  9488. "frameborder": "no",
  9489. "border": "0",
  9490. "scrolling ": "no",
  9491. "style": {
  9492. "cssText": "border:0;width:100%;height:100%"
  9493. },
  9494. "src": "/kityminder-editor/dist/index.html"
  9495. });
  9496. _box.appendChild(_iframe);
  9497. _box.appendChild(_jie);
  9498. _formdiv = new U.UF.UI.form(
  9499. "思维导图",
  9500. _box, { //"/jsmind/example/demo.html"
  9501. "id": "minds" + cid + stage + task + tool,
  9502. "style": {
  9503. "width": "90%",
  9504. "height": "90%",
  9505. "overflow": 'hidden'
  9506. },
  9507. "onresize": function () { }
  9508. }, {
  9509. closecallback: function () { }
  9510. }, {
  9511. "style": {
  9512. "height": "36px"
  9513. }
  9514. }).form; //创建窗体
  9515. _taskbar = {
  9516. "id": str + _formdiv.id,
  9517. "style": {
  9518. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9519. },
  9520. "name": "思维导图",
  9521. "forms": _formdiv,
  9522. "click": function () {
  9523. U.MD.D.I.openApplication(str, obj, info);
  9524. }
  9525. }
  9526. break;
  9527. case "doc":
  9528. aTool = 6;
  9529. _iframe = $$("iframe", {
  9530. "frameborder": "no",
  9531. "border": "0",
  9532. "scrolling ": "no",
  9533. "style": {
  9534. "cssText": "border:0;width:100%;height:100%"
  9535. },
  9536. "src": "/Office/Word/WordEditArea.htm"
  9537. })
  9538. _box.appendChild(_iframe);
  9539. _box.appendChild(_jie);
  9540. _formdiv = new U.UF.UI.form(
  9541. "协同文档",
  9542. _box, {
  9543. "id": "docs" + cid + stage + task + tool,
  9544. "style": {
  9545. "width": "90%",
  9546. "height": "90%",
  9547. "overflow": 'hidden'
  9548. },
  9549. "onresize": function () { }
  9550. }, {
  9551. closecallback: function () { }
  9552. }, {
  9553. "style": {
  9554. "height": "36px"
  9555. }
  9556. }).form; //创建窗体
  9557. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9558. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9559. })
  9560. _taskbar = {
  9561. "id": str + _formdiv.id,
  9562. "style": {
  9563. "backgroundImage": "url(/img/icon/doc.png)"
  9564. },
  9565. "name": "协同文档",
  9566. "forms": _formdiv,
  9567. "click": function () {
  9568. U.MD.D.I.openApplication(str, obj, info);
  9569. }
  9570. }
  9571. break;
  9572. }
  9573. const script1 = document.createElement("script");
  9574. script1.type = "text/javascript";
  9575. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9576. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9577. const script2 = document.createElement("script");
  9578. script2.type = "text/javascript";
  9579. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9580. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9581. const script3 = document.createElement("script");
  9582. script3.type = "text/javascript";
  9583. script3.charset = "UTF-8";
  9584. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9585. const script4 = document.createElement("script");
  9586. script4.type = "text/javascript";
  9587. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9588. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9589. if (_iframe) {
  9590. if (str == 'doc') {
  9591. _iframe = _formdiv.querySelector('iframe')
  9592. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9593. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9594. _iframe.contentWindow.document.body.appendChild(script1);
  9595. _iframe.contentWindow.document.body.appendChild(script2);
  9596. // _iframe.contentWindow.document.body.appendChild(script3);
  9597. _iframe.contentWindow.document.body.appendChild(script4);
  9598. })
  9599. if (onloadListener) {
  9600. _iframe.contentDocument.location.reload()
  9601. } else {
  9602. _iframe.contentDocument.location.reload()
  9603. }
  9604. } else if (str == 'mind') {
  9605. _iframe = _formdiv.querySelector('iframe')
  9606. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9607. _iframe.contentWindow.document.body.appendChild(script1);
  9608. _iframe.contentWindow.document.body.appendChild(script2);
  9609. _iframe.contentWindow.document.body.appendChild(script4);
  9610. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9611. })
  9612. if (onloadListener) {
  9613. _iframe.contentDocument.location.reload()
  9614. } else {
  9615. _iframe.contentDocument.location.reload()
  9616. }
  9617. } else {
  9618. _iframe.onload = () => {
  9619. _iframe.contentWindow.document.body.appendChild(script1);
  9620. _iframe.contentWindow.document.body.appendChild(script2);
  9621. // _iframe.contentWindow.document.body.appendChild(script3);
  9622. _iframe.contentWindow.document.body.appendChild(script4);
  9623. };
  9624. }
  9625. _jie.onclick = async () => {
  9626. let text = ''
  9627. if (aTool == 6) {
  9628. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9629. } else if (aTool == 3) {
  9630. text = await U.MD.D.I.getEditorContent(_iframe);
  9631. }
  9632. _loading.style.display = 'flex'
  9633. console.log(_loading);
  9634. var _ajs = _iframe.contentWindow.document.createElement("script");
  9635. _ajs.type = "text/javascript";
  9636. _ajs.innerHTML =
  9637. // 'console.log(' + _loading + ');\n' +
  9638. 'var _js = document.createElement("script");\n' +
  9639. '_js.type="text/javascript";\n' +
  9640. '_js.charset="UTF-8";\n' +
  9641. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9642. "_js.onload = function(){\n" +
  9643. ' var a = document.getElementsByTagName("img")\n' +
  9644. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9645. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9646. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9647. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9648. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9649. "beforeUpload_shishi(file," +
  9650. "'" +
  9651. _userid +
  9652. "'" +
  9653. ", " +
  9654. "'" +
  9655. _cid +
  9656. "'" +
  9657. ", " +
  9658. "'" +
  9659. _stage +
  9660. "'" +
  9661. ", " +
  9662. "'" +
  9663. _task +
  9664. "'" +
  9665. ", " +
  9666. "'" +
  9667. _tool +
  9668. "'" +
  9669. ", " +
  9670. "'" +
  9671. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9672. "'" +
  9673. ", " +
  9674. "'" +
  9675. aTool +
  9676. "'" +
  9677. ", " +
  9678. "`" +
  9679. text +
  9680. "`" +
  9681. ")\n" +
  9682. " });\n" +
  9683. "}\n" +
  9684. "document.head.appendChild(_js);\n";
  9685. _iframe.contentWindow.document.head.appendChild(_ajs);
  9686. }
  9687. }
  9688. //U.MD.D.I.openClick(str);
  9689. //如果有任务栏信息
  9690. // if (_taskbar) {
  9691. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9692. // }
  9693. }
  9694. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9695. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9696. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9697. _userinfo = US.userInfo, //登录用户信息
  9698. _userid = US.userInfo.userid //登录用户id
  9699. let _iframe;
  9700. let _cid = cid,
  9701. _stage = stage,
  9702. _task = task,
  9703. _tool = tool;
  9704. var _jie = $$("div", {
  9705. "style": {
  9706. "position": "absolute",
  9707. "bottom": "50px",
  9708. "right": "50px",
  9709. "zIndex": "9999",
  9710. "backgroundColor": "#2268bc",
  9711. "color": "#fff",
  9712. "padding": "12px 20px",
  9713. "cursor": "pointer",
  9714. "borderRadius": "4px",
  9715. },
  9716. "innerHTML": "上传模板"
  9717. })
  9718. let aTool = ''
  9719. let _loading = document.createElement('div')
  9720. _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;"
  9721. // _loading.id = "";
  9722. let _lchild = document.createElement('div')
  9723. let _limg = document.createElement('img')
  9724. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9725. _limg.style = "width: 26px;margin-right: 10px;"
  9726. _lchild.appendChild(_limg)
  9727. let _lspan = document.createElement('span')
  9728. _lspan.innerHTML = "上传中..."
  9729. _lchild.appendChild(_lspan)
  9730. _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%);"
  9731. _loading.appendChild(_lchild)
  9732. var _box = $$('div', {
  9733. "style": {
  9734. "position": "relative",
  9735. "width": "100%",
  9736. "height": "100%",
  9737. },
  9738. })
  9739. _box.appendChild(_loading)
  9740. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9741. switch (str) {
  9742. case "whiteboard":
  9743. aTool = 1;
  9744. _iframe = $$("iframe", {
  9745. "frameborder": "no",
  9746. "border": "0",
  9747. "scrolling ": "no",
  9748. "style": {
  9749. "cssText": "border:0;width:100%;height:100%"
  9750. },
  9751. "src": "https://beta.iwb.cocorobo.cn/"
  9752. })
  9753. _box.appendChild(_iframe);
  9754. _box.appendChild(_jie);
  9755. _formdiv = new U.UF.UI.form(
  9756. "电子白板",
  9757. _box, {
  9758. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9759. "style": {
  9760. "width": "90%",
  9761. "height": "90%",
  9762. "overflow": 'hidden'
  9763. },
  9764. "onresize": function () { }
  9765. }, {
  9766. closecallback: function () { }
  9767. }, {
  9768. "style": {
  9769. "height": "36px"
  9770. }
  9771. }).form; //创建窗体
  9772. _taskbar = {
  9773. "id": str + _formdiv.id,
  9774. "style": {
  9775. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9776. },
  9777. "name": "电子白板",
  9778. "forms": _formdiv,
  9779. "click": function () {
  9780. U.MD.D.I.openApplication(str, obj, info);
  9781. }
  9782. }
  9783. break;
  9784. case "mind":
  9785. aTool = 3;
  9786. _iframe = $$("iframe", {
  9787. "frameborder": "no",
  9788. "border": "0",
  9789. "scrolling ": "no",
  9790. "style": {
  9791. "cssText": "border:0;width:100%;height:100%"
  9792. },
  9793. "src": "/kityminder-editor/dist/index.html"
  9794. });
  9795. _box.appendChild(_iframe);
  9796. _box.appendChild(_jie);
  9797. _formdiv = new U.UF.UI.form(
  9798. "思维导图",
  9799. _box, { //"/jsmind/example/demo.html"
  9800. "id": "minds_Yu" + cid + stage + task + tool,
  9801. "style": {
  9802. "width": "90%",
  9803. "height": "90%",
  9804. "overflow": 'hidden'
  9805. },
  9806. "onresize": function () { }
  9807. }, {
  9808. closecallback: function () { }
  9809. }, {
  9810. "style": {
  9811. "height": "36px"
  9812. }
  9813. }).form; //创建窗体
  9814. _taskbar = {
  9815. "id": str + _formdiv.id,
  9816. "style": {
  9817. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9818. },
  9819. "name": "思维导图",
  9820. "forms": _formdiv,
  9821. "click": function () {
  9822. U.MD.D.I.openApplication(str, obj, info);
  9823. }
  9824. }
  9825. break;
  9826. case "doc":
  9827. aTool = 6;
  9828. _iframe = $$("iframe", {
  9829. "frameborder": "no",
  9830. "border": "0",
  9831. "scrolling ": "no",
  9832. "style": {
  9833. "cssText": "border:0;width:100%;height:100%"
  9834. },
  9835. "src": "/Office/Word/WordEditArea.htm"
  9836. })
  9837. _box.appendChild(_iframe);
  9838. _box.appendChild(_jie);
  9839. _formdiv = new U.UF.UI.form(
  9840. "协同文档",
  9841. _box, {
  9842. "id": "docs_Yu" + cid + stage + task + tool,
  9843. "style": {
  9844. "width": "90%",
  9845. "height": "90%",
  9846. "overflow": 'hidden'
  9847. },
  9848. "onresize": function () { }
  9849. }, {
  9850. closecallback: function () { }
  9851. }, {
  9852. "style": {
  9853. "height": "36px"
  9854. }
  9855. }).form; //创建窗体
  9856. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9857. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9858. })
  9859. _taskbar = {
  9860. "id": str + _formdiv.id,
  9861. "style": {
  9862. "backgroundImage": "url(/img/icon/doc.png)"
  9863. },
  9864. "name": "协同文档",
  9865. "forms": _formdiv,
  9866. "click": function () {
  9867. U.MD.D.I.openApplication(str, obj, info);
  9868. }
  9869. }
  9870. break;
  9871. case "CocoPi":
  9872. aTool = 57;
  9873. _iframe = $$("iframe", {
  9874. "allowpaymentrequest": "allowpaymentrequest",
  9875. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9876. "webkitallowfullscreen": "",
  9877. "mozallowfullscreen": "",
  9878. "frameborder": "no",
  9879. "border": "0",
  9880. "scrolling ": "no",
  9881. "style": {
  9882. "cssText": "border:0;width:100%;height:100%"
  9883. },
  9884. "src": "https://pi.cocorobo.cn/"
  9885. })
  9886. _box.appendChild(_iframe);
  9887. _box.appendChild(_jie);
  9888. _formdiv = new U.UF.UI.form(
  9889. "CocoPi",
  9890. _box, {
  9891. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9892. "style": {
  9893. "width": "90%",
  9894. "height": "90%",
  9895. "overflow": 'hidden'
  9896. },
  9897. "onresize": function () { }
  9898. }, {
  9899. closecallback: function () { }
  9900. }, {
  9901. "style": {
  9902. "height": "36px"
  9903. }
  9904. }).form; //创建窗体
  9905. _taskbar = {
  9906. "id": str + _formdiv.id,
  9907. "style": {
  9908. "backgroundImage": "url(/img/icon/cocopi.png)"
  9909. },
  9910. "name": "CocoPi",
  9911. "forms": _formdiv,
  9912. "click": function () {
  9913. U.MD.D.I.openApplication(str, obj, info);
  9914. }
  9915. }
  9916. break;
  9917. }
  9918. if (_iframe) {
  9919. if (str == 'doc') {
  9920. _iframe = _formdiv.querySelector('iframe')
  9921. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9922. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9923. })
  9924. if (onloadListener) {
  9925. _iframe.contentDocument.location.reload()
  9926. } else {
  9927. _iframe.contentDocument.location.reload()
  9928. }
  9929. } else if (str == 'mind') {
  9930. _iframe = _formdiv.querySelector('iframe')
  9931. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9932. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9933. })
  9934. if (onloadListener) {
  9935. _iframe.contentDocument.location.reload()
  9936. } else {
  9937. _iframe.contentDocument.location.reload()
  9938. }
  9939. } else if (str == 'whiteboard') {
  9940. _iframe = _formdiv.querySelector('iframe')
  9941. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9942. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9943. })
  9944. // if (onloadListener) {
  9945. // try {
  9946. // _iframe.src += "?cocorobo="+new Date().getTime()
  9947. // _iframe.contentWindow.document.location.reload()
  9948. // } catch (error) {
  9949. // }
  9950. // } else {
  9951. // _iframe.contentDocument.location.reload()
  9952. // }
  9953. } else if (str == 'CocoPi') {
  9954. _iframe = _formdiv.querySelector('iframe')
  9955. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9956. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9957. })
  9958. if (onloadListener) {
  9959. _iframe.contentDocument.location.reload()
  9960. } else {
  9961. _iframe.contentDocument.location.reload()
  9962. }
  9963. } else {
  9964. _iframe.onload = () => { };
  9965. }
  9966. _jie.onclick = async () => {
  9967. let text = ''
  9968. let type = '2'
  9969. if (aTool == 1) {
  9970. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9971. type = '3'
  9972. } else if (aTool == 6) {
  9973. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9974. type = '1'
  9975. } else if (aTool == 3) {
  9976. text = await U.MD.D.I.getEditorContent(_iframe);
  9977. type = '2'
  9978. } else if (aTool == 57) {
  9979. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9980. type = '4'
  9981. }
  9982. _loading.style.display = 'flex'
  9983. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9984. }
  9985. }
  9986. //U.MD.D.I.openClick(str);
  9987. //如果有任务栏信息
  9988. // if (_taskbar) {
  9989. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9990. // }
  9991. }
  9992. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9993. var xmlhttp;
  9994. var Mac, Sn, DeviceId
  9995. if (window.XMLHttpRequest) {
  9996. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9997. xmlhttp = new XMLHttpRequest();
  9998. } else {
  9999. // IE6, IE5 浏览器执行代码
  10000. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10001. }
  10002. xmlhttp.onreadystatechange = function () {
  10003. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10004. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10005. // resolve(res.value[0][0].text);
  10006. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10007. }
  10008. }
  10009. }
  10010. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10011. xmlhttp.send();
  10012. }
  10013. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10014. var xmlhttp;
  10015. var Mac, Sn, DeviceId
  10016. if (window.XMLHttpRequest) {
  10017. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10018. xmlhttp = new XMLHttpRequest();
  10019. } else {
  10020. // IE6, IE5 浏览器执行代码
  10021. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10022. }
  10023. xmlhttp.onreadystatechange = function () {
  10024. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10025. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10026. // resolve(res.value[0][0].text);
  10027. if (type == '2') {
  10028. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10029. } else if (type == '3') {
  10030. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10031. } else if (type == '4') {
  10032. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10033. }
  10034. } else {
  10035. if (type == '2') {
  10036. iframe.contentWindow.editor.minder.importData('json', '')
  10037. } else if (type == '3') {
  10038. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10039. } else if (type == '4') {
  10040. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10041. }
  10042. }
  10043. }
  10044. }
  10045. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10046. xmlhttp.send();
  10047. }
  10048. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10049. var xmlhttp;
  10050. var Mac, Sn, DeviceId
  10051. if (window.XMLHttpRequest) {
  10052. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10053. xmlhttp = new XMLHttpRequest();
  10054. } else {
  10055. // IE6, IE5 浏览器执行代码
  10056. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10057. }
  10058. xmlhttp.onreadystatechange = function () {
  10059. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10060. if (xmlhttp.response) {
  10061. // resolve(res.value[0][0].text);
  10062. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10063. // $(fileInput).val('');
  10064. // });
  10065. span.innerHTML = '上传成功'
  10066. setTimeout(() => {
  10067. loading.style.display = 'none'
  10068. }, 1000);
  10069. }
  10070. }
  10071. }
  10072. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10073. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10074. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10075. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10076. // 设置请求头,表示请求体的编码格式
  10077. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10078. // 设置请求体,使用url-encoded格式的数据
  10079. }
  10080. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10081. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10082. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10083. _userinfo = US.userInfo, //登录用户信息
  10084. _userid = US.userInfo.userid //登录用户id
  10085. let _iframe;
  10086. let _cid = cid,
  10087. _stage = stage,
  10088. _task = task,
  10089. _tool = tool;
  10090. var _jie = $$("div", {
  10091. "style": {
  10092. "position": "absolute",
  10093. "bottom": "50px",
  10094. "right": "50px",
  10095. "zIndex": "9999",
  10096. "backgroundColor": "#2268bc",
  10097. "color": "#fff",
  10098. "padding": "12px 20px",
  10099. "cursor": "pointer",
  10100. "borderRadius": "4px",
  10101. },
  10102. "innerHTML": "提交作业"
  10103. })
  10104. let aTool = ''
  10105. let _loading = document.createElement('div')
  10106. _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;"
  10107. // _loading.id = "";
  10108. let _lchild = document.createElement('div')
  10109. let _limg = document.createElement('img')
  10110. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10111. _limg.style = "width: 26px;margin-right: 10px;"
  10112. _lchild.appendChild(_limg)
  10113. let _lspan = document.createElement('span')
  10114. _lspan.innerHTML = "上传中..."
  10115. _lchild.appendChild(_lspan)
  10116. _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%);"
  10117. _loading.appendChild(_lchild)
  10118. var _box = $$('div', {
  10119. "style": {
  10120. "position": "relative",
  10121. "width": "100%",
  10122. "height": "100%",
  10123. },
  10124. })
  10125. _box.appendChild(_loading)
  10126. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10127. switch (str) {
  10128. case "CocoPi":
  10129. aTool = 57;
  10130. _iframe = $$("iframe", {
  10131. "allowpaymentrequest": "allowpaymentrequest",
  10132. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10133. "webkitallowfullscreen": "",
  10134. "mozallowfullscreen": "",
  10135. "frameborder": "no",
  10136. "border": "0",
  10137. "scrolling ": "no",
  10138. "style": {
  10139. "cssText": "border:0;width:100%;height:100%"
  10140. },
  10141. "src": "https://pi.cocorobo.cn/"
  10142. })
  10143. _box.appendChild(_iframe);
  10144. _box.appendChild(_jie);
  10145. _formdiv = new U.UF.UI.form(
  10146. "CocoPi",
  10147. _box, {
  10148. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10149. "style": {
  10150. "width": "90%",
  10151. "height": "90%",
  10152. "overflow": 'hidden'
  10153. },
  10154. "onresize": function () { }
  10155. }, {
  10156. closecallback: function () { }
  10157. }, {
  10158. "style": {
  10159. "height": "36px"
  10160. }
  10161. }).form; //创建窗体
  10162. _taskbar = {
  10163. "id": str + _formdiv.id,
  10164. "style": {
  10165. "backgroundImage": "url(/img/icon/cocopi.png)"
  10166. },
  10167. "name": "CocoPi",
  10168. "forms": _formdiv,
  10169. "click": function () {
  10170. U.MD.D.I.openApplication(str, obj, info);
  10171. }
  10172. }
  10173. break;
  10174. }
  10175. if (_iframe) {
  10176. if (str == 'CocoPi') {
  10177. _iframe = _formdiv.querySelector('iframe')
  10178. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10179. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10180. })
  10181. if (onloadListener) {
  10182. _iframe.contentDocument.location.reload()
  10183. } else {
  10184. _iframe.contentDocument.location.reload()
  10185. }
  10186. }
  10187. _jie.onclick = async () => {
  10188. let text = ''
  10189. if (aTool == 57) {
  10190. text = _iframe.contentWindow.getLoadXmlStr()
  10191. }
  10192. _loading.style.display = 'flex'
  10193. console.log(_loading);
  10194. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10195. _loading.style.display = 'none'
  10196. let _div = document.createElement('div')
  10197. _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;"
  10198. let _inner = document.createElement('div')
  10199. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10200. _inner.innerHTML = "上传成功"
  10201. _div.appendChild(_inner)
  10202. _iframe.contentWindow.window.document.body.appendChild(_div)
  10203. _div.onclick = () => {
  10204. _iframe.contentWindow.window.document.body.removeChild(_div)
  10205. }
  10206. setTimeout(() => {
  10207. _iframe.contentWindow.window.document.body.removeChild(_div)
  10208. }, 1000);
  10209. }, [], { "type": "POST", "withCredentials": true });
  10210. }
  10211. }
  10212. }
  10213. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10214. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10215. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10216. _userid = student.userid, //登录用户id
  10217. _username = student.student //用户名字
  10218. let _iframe;
  10219. let _cid = cid,
  10220. _stage = stage,
  10221. _task = task,
  10222. _tool = tool;
  10223. var _jie = $$("div", {
  10224. "style": {
  10225. "position": "absolute",
  10226. "bottom": "50px",
  10227. "right": "50px",
  10228. "zIndex": "9999",
  10229. "backgroundColor": "#2268bc",
  10230. "color": "#fff",
  10231. "padding": "12px 20px",
  10232. "cursor": "pointer",
  10233. "borderRadius": "4px",
  10234. },
  10235. "innerHTML": "提交作业"
  10236. })
  10237. let aTool = ''
  10238. let _loading = document.createElement('div')
  10239. _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;"
  10240. // _loading.id = "";
  10241. let _lchild = document.createElement('div')
  10242. let _limg = document.createElement('img')
  10243. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10244. _limg.style = "width: 26px;margin-right: 10px;"
  10245. _lchild.appendChild(_limg)
  10246. let _lspan = document.createElement('span')
  10247. _lspan.innerHTML = "上传中..."
  10248. _lchild.appendChild(_lspan)
  10249. _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%);"
  10250. _loading.appendChild(_lchild)
  10251. var _box = $$('div', {
  10252. "style": {
  10253. "position": "relative",
  10254. "width": "100%",
  10255. "height": "100%",
  10256. },
  10257. })
  10258. _box.appendChild(_loading)
  10259. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10260. switch (str) {
  10261. case "CocoPi":
  10262. aTool = 57;
  10263. _iframe = $$("iframe", {
  10264. "allowpaymentrequest": "allowpaymentrequest",
  10265. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10266. "webkitallowfullscreen": "",
  10267. "mozallowfullscreen": "",
  10268. "frameborder": "no",
  10269. "border": "0",
  10270. "scrolling ": "no",
  10271. "style": {
  10272. "cssText": "border:0;width:100%;height:100%"
  10273. },
  10274. "src": "https://pi.cocorobo.cn/"
  10275. })
  10276. _box.appendChild(_iframe);
  10277. _box.appendChild(_jie);
  10278. _formdiv = new U.UF.UI.form(
  10279. "CocoPi-" + _username,
  10280. _box, {
  10281. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10282. "style": {
  10283. "width": "90%",
  10284. "height": "90%",
  10285. "overflow": 'hidden'
  10286. },
  10287. "onresize": function () { }
  10288. }, {
  10289. closecallback: function () { }
  10290. }, {
  10291. "style": {
  10292. "height": "36px"
  10293. }
  10294. }).form; //创建窗体
  10295. _taskbar = {
  10296. "id": str + _formdiv.id,
  10297. "style": {
  10298. "backgroundImage": "url(/img/icon/cocopi.png)"
  10299. },
  10300. "name": "CocoPi",
  10301. "forms": _formdiv,
  10302. "click": function () {
  10303. U.MD.D.I.openApplication(str, obj, info);
  10304. }
  10305. }
  10306. break;
  10307. }
  10308. if (_iframe) {
  10309. if (str == 'CocoPi') {
  10310. _iframe = _formdiv.querySelector('iframe')
  10311. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10312. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10313. })
  10314. if (onloadListener) {
  10315. _iframe.contentDocument.location.reload()
  10316. } else {
  10317. _iframe.contentDocument.location.reload()
  10318. }
  10319. }
  10320. _jie.onclick = async () => {
  10321. let text = ''
  10322. if (aTool == 57) {
  10323. text = _iframe.contentWindow.getLoadXmlStr()
  10324. }
  10325. _loading.style.display = 'flex'
  10326. console.log(_loading);
  10327. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10328. _loading.style.display = 'none'
  10329. let _div = document.createElement('div')
  10330. _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;"
  10331. let _inner = document.createElement('div')
  10332. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10333. _inner.innerHTML = "上传成功"
  10334. _div.appendChild(_inner)
  10335. _iframe.contentWindow.window.document.body.appendChild(_div)
  10336. _div.onclick = () => {
  10337. _iframe.contentWindow.window.document.body.removeChild(_div)
  10338. }
  10339. setTimeout(() => {
  10340. _iframe.contentWindow.window.document.body.removeChild(_div)
  10341. }, 1000);
  10342. }, [], { "type": "POST", "withCredentials": true });
  10343. }
  10344. }
  10345. }
  10346. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10347. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10348. if (res.value[0].length > 0) {
  10349. if (atool == 57) {
  10350. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10351. }
  10352. } else {
  10353. if (atool == 57) {
  10354. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10355. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10356. }
  10357. }
  10358. }, [], { "type": "POST", "withCredentials": true });
  10359. }